Prometheus Browser

Explore Prometheus endpoints

Prometheus Browser란 무엇입니까?

Prometheus Browser은(는) warmuuh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Explore Prometheus endpoints"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Prometheus Browser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Allows to easily explore text-based prometheus endpoints such as published by spring boot prometheus integration (https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-features.html#production-ready-metrics-export-prometheus)                    

확장 프로그램 기본 정보

이름 Prometheus Browser Prometheus Browser
ID gifkblaegggoeinnbcijmodmkmdjpiho
공식 URL https://chromewebstore.google.com/detail/prometheus-browser/gifkblaegggoeinnbcijmodmkmdjpiho
설명 Explore Prometheus endpoints
파일 크기 2.84 MB
설치 횟수 90
현재 버전 1.0
최근 업데이트 2021-01-27
출시 날짜 2021-01-26
평점 3.00/5 총 2 개의 평점
개발자 warmuuh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/warmuuh/prometheus-browser
도움말 페이지 URL https://github.com/warmuuh/prometheus-browser
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prometheus Browser",
    "version": "1.0",
    "description": "Explore Prometheus endpoints",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "export-shim.js",
            "node_modules\/underscore\/underscore.js",
            "node_modules\/uts\/uts.js",
            "node_modules\/jquery\/dist\/jquery.min.js",
            "parse-prometheus-text-format\/dist\/parse-prometheus-text-format.umd.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "options_page": "options.html",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "jstree\/dist\/themes\/default\/style.min.css"
            ],
            "js": [
                "node_modules\/moment\/min\/moment.min.js",
                "node_modules\/chartjs-adapter-moment\/dist\/chartjs-adapter-moment.min.js",
                "node_modules\/chart.js\/dist\/Chart.js",
                "node_modules\/jquery\/dist\/jquery.min.js",
                "jstree\/dist\/jstree.min.js",
                "node_modules\/jstreegrid\/jstreegrid.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}