Prometheus Formatter

Makes plain Prometheus/OpenMetrics endpoints easier to read.

Prometheus Formatterคืออะไร?

Prometheus Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Frederic Hemberger และคุณลักษณะหลักของมันคือ "Makes plain Prometheus/OpenMetrics endpoints easier to read."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prometheus Formatter

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}