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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |