Skip to content

seanly/prom-metric-viewer

 
 

Repository files navigation

prom-metric-viewer

A simple CLI tool to view prometheus metrics of exporters with style. It also includes a fancy Web UI to be even quicker viewing, sorting and searching metrics.

screenrecording.gif

Install

Binaries

Find a binary for your OS on the releases page and download it. Make it executable (e.g. chmod +x prom-metric-viewer) and run it!

From Source

Dependencies: Go 1.8+ (with $GOPATH setup), Node.js (best with yarn).

go get -u -v github.com/metalmatze/prom-metric-viewer
cd $GOPATH/src/github.com/metalmatze/prom-metric-viewer
make deps ui packr install

You are now able to run prom-metric-viewer from anywhere on your system.

Usage

Examples:

# Gets the metrics and prints them on your terminal
prom-metric-viewer https://localhost:9100/metrics 
# Gets the metrics and starts a web UI on localhost:8080
prom-metric-viewer --web https://localhost:9100/metrics 

# Reads the metrics from a file and prints them on your terminal
prom-metric-viewer -f examples/node-exporter 
# Reads the metrics from a file and starts a web UI on localhost:8080
prom-metric-viewer --web -f examples/node-exporter 

# Sort by name, type or help
prom-metric-viewer --sort name -f examples/node-exporter 

About

Browse Prometheus metrics of apps and exporters more quickly.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 43.9%
  • Vue 35.7%
  • JavaScript 8.2%
  • Makefile 7.1%
  • Standard ML 4.0%
  • HTML 1.1%