Prometheus Formatter

Makes plain Prometheus/OpenMetrics endpoints easier to read.

Cos'è Prometheus Formatter?

Prometheus Formatter è un'estensione di Chrome sviluppata da Frederic Hemberger, e la sua funzione principale è "Makes plain Prometheus/OpenMetrics endpoints easier to read.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Prometheus Formatter

Scarica i file di estensione Prometheus Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Prometheus Formatter Prometheus Formatter
ID jhfbpphccndhifmpfbnpobpclhedckbb
URL Ufficiale https://chromewebstore.google.com/detail/prometheus-formatter/jhfbpphccndhifmpfbnpobpclhedckbb
Descrizione Makes plain Prometheus/OpenMetrics endpoints easier to read.
Dimensione del File 11.21 KB
Conteggio Installazioni 3,147
Versione Corrente 3.1.0
Ultimo Aggiornamento 2023-09-11
Data di Pubblicazione 2020-07-04
Valutazione 4.67/5 Totale 12 Valutazioni
Sviluppatore Frederic Hemberger
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/fhemberger/prometheus-formatter
URL della Pagina di Aiuto https://github.com/fhemberger/prometheus-formatter/issues
Lingue Supportate 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"
    ]
}