Prometheus rules: Difference between revisions

From wikinotes
No edit summary
Line 10: Line 10:
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->


= Recording Rules (custom metrics) =
= Syntax =
<blockquote>
== Recording Rules (custom metrics) =====
<blockquote>
<blockquote>
<syntaxhighlight lang="yaml">
<syntaxhighlight lang="yaml">
Line 36: Line 38:
</blockquote><!-- Custom Metric -->
</blockquote><!-- Custom Metric -->


= Alert Rules =
== Alert Rules ==
<blockquote>
<blockquote>
<syntaxhighlight lang="yaml">
<syntaxhighlight lang="yaml">
Line 54: Line 56:
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Alert Rules -->
</blockquote><!-- Alert Rules -->
</blockquote><!-- Syntax -->
= Best Practices =
<blockquote>
* rule-files can include multiple rules with increasing severity
* rule-files can use templating, so rules can be applied to multiple metrics at once.
* rule-files should pertain to a single type of test
</blockquote><!-- Best Practices -->

Revision as of 21:52, 19 February 2022

Rules can be used to create new metrics, or to trigger alerts.

Documentation

official docs https://prometheus.io/docs/prometheus/latest/configuration/recording_rules/

Syntax

Recording Rules (custom metrics) ===

# /usr/local/etc/memory_rules.yml

groups:
  - name: available_memory
    rules:
    - record: node_available_memory_percent                    # metric rule-result is exposed as
      expr:   node_memory_free_bytes / node_memory_size_bytes  # PromQL query rule performs
# /usr/local/etc/prometheus.yml

rule_files:
  - "alertmanager/rules/memory_rules.yml"  # relative-path from prometheus.yml
service prometheus restart

now node_available_memory_percent metric should be cached and queryable.

Alert Rules

# /usr/local/etc/memory_alerts.yml

groups:
  - name: available_memory
    rules:
    - alert: sustained_high_memory_usage
      expr:  (node_memory_free_bytes / node_memory_size_bytes) > 0.9
      for: 1h
      labels:
        severity: warning
      annotations:
        summary: "host {{ $labels.instance }} has sustained high memory usage"
        description: "{{ $labels.instance }} has had >=90% memory usage for at least an hour!"

Best Practices

  • rule-files can include multiple rules with increasing severity
  • rule-files can use templating, so rules can be applied to multiple metrics at once.
  • rule-files should pertain to a single type of test