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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}