Prometheus configuration: Difference between revisions

From wikinotes
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
This is just an overview of prometheus configuration.<br>
Details on syntax and exporter configs can be found in:
* [[prometheus exporters]]
* [[prometheus rules]]
= Documentation =
<blockquote>
{| class="wikitable"
|-
| configuration docs || https://prometheus.io/docs/prometheus/latest/configuration/configuration/
|-
| alerting docs || https://prometheus.io/docs/alerting/latest/configuration/
|-
|}
</blockquote><!-- Documentation -->
= Prometheus =
= Prometheus =
<blockquote>
<blockquote>
Line 23: Line 39:
</blockquote><!-- Exporters -->
</blockquote><!-- Exporters -->


== Alerts/Rules ==
== Rules ==
<blockquote>
<blockquote>
You can configure '''Alerts''' with '''rules'''.
You can configure '''Rules''' to either persist or '''Alerts'''.


<syntaxhighlight lang="yaml">
<syntaxhighlight lang="yaml">

Latest revision as of 03:32, 18 February 2022

This is just an overview of prometheus configuration.
Details on syntax and exporter configs can be found in:

Documentation

configuration docs https://prometheus.io/docs/prometheus/latest/configuration/configuration/
alerting docs https://prometheus.io/docs/alerting/latest/configuration/

Prometheus

Exporters

Configure jobs to poll prometheus metric exporter endpoints within scrape_configs.
For example, the following config polls metrics from http://localhost:9115/metrics every 5s.

# /usr/local/etc/prometheus.yml

global:
  scrape_interval: 5s

scrape_configs:
  - job_name:      my-server
    metrics_path:  /metrics   # (default) route to query metrics from
    scheme:        http       # (default) scheme to use for query
    static_configs:
      - targets:
        - localhost:9115      # query this ip-addr/port

Rules

You can configure Rules to either persist or Alerts.

global:
  evaluation_interval: 15s  # rules evaluated every 15s

alerting:
  alertmanagers:
    - static_configs:
      - targets:
        - alertmanager:9003

rule_files:
  - first_rules.yml