Prometheus Formatter
Makes plain Prometheus/OpenMetrics endpoints easier to read.
Prometheus Formatter क्या है?
Prometheus Formatter Frederic Hemberger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes plain Prometheus/OpenMetrics endpoints easier to read."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Prometheus Formatter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is a simple syntax highlighter for Prometheus and OpenMetrics formats. Metric endpoints must use either HTTP Content-Type `application/openmetrics-text` or `text/plain`, according to spec. For plain-text metrics, parsing is limited by default on URL paths matching '/metrics', '/federate', '/probe', '/prometheus' and '/actuator/prometheus'. By clicking on the extension's icon, you can define your own paths (Regular Expressions are supported), which will override the default list. Source code is available on GitHub under MIT license.
एक्सटेंशन की मूल जानकारी
नाम | Prometheus Formatter |
ID | jhfbpphccndhifmpfbnpobpclhedckbb |
आधिकारिक URL | https://chromewebstore.google.com/detail/prometheus-formatter/jhfbpphccndhifmpfbnpobpclhedckbb |
विवरण | Makes plain Prometheus/OpenMetrics endpoints easier to read. |
फ़ाइल का आकार | 11.21 KB |
स्थापना संख्या | 3,147 |
वर्तमान संस्करण | 3.1.0 |
अंतिम अपडेट | 2023-09-11 |
प्रकाशन तिथि | 2020-07-04 |
रेटिंग | 4.67/5 कुल 12 रेटिंग्स |
डेवलपर | Frederic Hemberger |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/fhemberger/prometheus-formatter |
सहायता पृष्ठ URL | https://github.com/fhemberger/prometheus-formatter/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Prometheus Formatter", "version": "3.1.0", "manifest_version": 3, "description": "Makes plain Prometheus\/OpenMetrics endpoints easier to read.", "homepage_url": "https:\/\/github.com\/fhemberger\/prometheus-formatter", "minimum_chrome_version": "88", "icons": { "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_start" } ], "action": { "default_popup": "html\/popup.html", "default_icon": { "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" } }, "permissions": [ "storage" ] } |