Prometheus Formatter

Makes plain Prometheus/OpenMetrics endpoints easier to read.

Prometheus Formatter là gì?

Prometheus Formatter là một tiện ích mở rộng Chrome được phát triển bởi Frederic Hemberger, và tính năng chính của nó là "Makes plain Prometheus/OpenMetrics endpoints easier to read.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Prometheus Formatter

Tải xuống các tệp mở rộng Prometheus Formatter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Prometheus Formatter Prometheus Formatter
ID jhfbpphccndhifmpfbnpobpclhedckbb
URL Chính Thức https://chromewebstore.google.com/detail/prometheus-formatter/jhfbpphccndhifmpfbnpobpclhedckbb
Mô tả Makes plain Prometheus/OpenMetrics endpoints easier to read.
Kích Thước Tệp 11.21 KB
Số Lần Cài Đặt 3,147
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2023-09-11
Ngày Phát Hành 2020-07-04
Đánh Giá 4.67/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Frederic Hemberger
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fhemberger/prometheus-formatter
URL Trang Trợ Giúp https://github.com/fhemberger/prometheus-formatter/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}