Prometheus: Difference between revisions

From wikinotes
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
A system monitoring tool.<br>
A system monitoring tool.<br>
Metrics are polled/persisted over REST,  
Metrics are polled/persisted over REST,


= Documentation =
= Overview =
<blockquote>
== Documentation ==
<blockquote>
<blockquote>
{| class="wikitable"
{| class="wikitable"
Line 11: Line 13:
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->


= Tutorials =
== Tutorials ==
<blockquote>
<blockquote>
{| class="wikitable"
{| class="wikitable"
Line 20: Line 22:
</blockquote><!-- Tutorials -->
</blockquote><!-- Tutorials -->


= Locations =
== Routes ==
<blockquote>
<blockquote>
{| class="wikitable"
{| class="wikitable"
|-
| <code>9090</code> || default web-ui
|-
|-
| <code>http://${IP_ADDR}:9090</code> || web-ui
| <code>http://${IP_ADDR}:9090</code> || web-ui
|-
|-
| <code>http://${IP_ADDR}:9090/targets</code> || web-gui (health of queried metrics)
| <code>http://${IP_ADDR}:9090/targets</code> || web-gui (health of queried metrics)
|-
| <code>${PREFIX}/etc/prometheus.yml</code> || main configuration
|-
|-
|}
|}
</blockquote><!-- Locations -->
</blockquote><!-- Routes -->


= Ports =
== Locations ==
<blockquote>
<blockquote>
{| class="wikitable"
{| class="wikitable"
|-
|-
| <code>9090</code> || default web-ui
| <code>${PREFIX}/etc/prometheus.yml</code> || main configuration
|-
| <code>/var/db/prometheus</code> || data dir
|-
|-
|}
|}
</blockquote><!-- Ports -->
</blockquote><!-- Locations -->
</blockquote><!-- Overview -->


= Quickstart =
= Quickstart =
Line 50: Line 55:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
xdg-open localhost:9090                          # prometheus-ui
xdg-open localhost:9090                          # prometheus-ui
promtool check rules /path/to/example.rules.yml  # syntax-check rules
promtool check rules /path/to/example.rules.yml  # validate rule
amtool check-config alertmanager.yml              # validate alertmanager config
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Quickstart -->
</blockquote><!-- Quickstart -->
Line 56: Line 62:
= Notes =
= Notes =
<blockquote>
<blockquote>
Setup
== Setup ==
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 67: Line 73:
|}
|}


Configuration
== Configuration ==
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 76: Line 82:
|}
|}


Usage
== Usage ==
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 82: Line 88:
|-
|-
| [[prometheus http api]]
| [[prometheus http api]]
|-
|}
== Syntax ==
{| class="wikitable"
|-
|-
| [[prometheus promql]]
| [[prometheus promql]]
|-
| [[prometheus metric syntax]]
|-
|-
|}
|}
</blockquote><!-- Notes -->


= Integrations =
<blockquote>
Dashboards
Dashboards
{| class="wikitable"
{| class="wikitable"
|-
|-
| [[prometheus grafana]]
| [[grafana]] || metric/graph dashboards
|-
|-
|}
|}
</blockquote><!-- Notes -->
</blockquote><!-- Integrations -->

Latest revision as of 16:34, 1 October 2022

A system monitoring tool.
Metrics are polled/persisted over REST,

Overview

Documentation

home https://prometheus.io/

Tutorials

overview https://sbcode.net/prometheus/

Routes

9090 default web-ui
http://${IP_ADDR}:9090 web-ui
http://${IP_ADDR}:9090/targets web-gui (health of queried metrics)

Locations

${PREFIX}/etc/prometheus.yml main configuration
/var/db/prometheus data dir

Quickstart

  • prometheus polls HTTP endpoints for collected metrics
  • these endpoints are called exporters, and they are generated/exposed using clients
  • you can configure rules to persist data, or emit alerts when a metric fails
xdg-open localhost:9090                          # prometheus-ui
promtool check rules /path/to/example.rules.yml  # validate rule
amtool check-config alertmanager.yml              # validate alertmanager config

Notes

Setup

prometheus install
prometheus exporters
prometheus alerters

Configuration

prometheus configuration
prometheus rules

Usage

prometheus web ui
prometheus http api

Syntax

prometheus promql
prometheus metric syntax

Integrations

Dashboards

grafana metric/graph dashboards