Personal tools
Skip to content. | Skip to navigation
See for documentation.
Prometheus Flask exporter[![PyPI]( [![PyPI]( [![PyPI - Downloads]( [![Coverage Status]( [![Code Climate](
Django middlewares to monitor your application with Prometheus.io. Python 3 version.
Python client for Prometheus.
BastionLinux/Grafana manual page
Prometheus is a systems and service monitoring system. It collects metrics from configured targets at given intervals, evaluates rule expressions, displays the results, and can trigger alerts if some condition is observed to be true.
The Alertmanager handles alerts sent by client applications such as the Prometheus server. It takes care of deduplicating, grouping, and routing them to the correct receiver integration such as email, PagerDuty, or OpsGenie. It also takes care of silencing and inhibition of alerts.
Usage: prometheus-cli [flags] query <expression> prometheus-cli [flags] query_range <expression> <end_timestamp> <range_seconds> [<step_seconds>] prometheus-cli [flags] metrics Flags: -csv=true: Whether to format output as CSV -csvDelimiter=";": Single-character delimiter to use in CSV output -server="": URL of the Prometheus server to query -timeout=1m0s: Timeout to use when querying the Prometheus server
promu is the utility tool for Prometheus projects Usage: promu [flags] promu [command] Available Commands: build Build a Go project crossbuild Crossbuild a Go project using Golang builder Docker images info Print info about current project and exit release Upload tarballs to the Github release tarball Create a tarball from the builded Go project version Print the version and exit Flags: --config string Config file (default is ./.promu.yml) -v, --verbose Verbose output --viper Use Viper for configuration (default true) Use "promu [command] --help" for more information about a command.
The Prometheus Pushgateway exists to allow ephemeral and batch jobs to expose their metrics to Prometheus. Since these kinds of jobs may not exist long enough to be scraped, they can instead push their metrics to a Pushgateway. The Pushgateway then exposes these metrics to Prometheus. The Pushgateway is explicitly not an aggregator, but rather a metrics cache. It does not have a statsd-like semantics. The metrics pushed are exactly the same as you would present for scraping in a permanently running program. For machine-level metrics, the textfile collector of the Node exporter is usually more appropriate. The Pushgateway is best used for service-level metrics.