Prometheus Formatter
Makes plain Prometheus/OpenMetrics endpoints easier to read.
Prometheus Formatterとは何ですか?
Prometheus FormatterはFrederic Hembergerによって開発されたChromeの拡張機能で、その主な機能は「Makes plain Prometheus/OpenMetrics endpoints easier to read.」です。
拡張機能のスクリーンショット
Prometheus Formatter拡張機能のCRXファイルをダウンロード
Prometheus Formatter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |