Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[grafana] values.yaml: update alerting examples and ref #3450

Merged
merged 3 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/grafana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: grafana
version: 8.6.2
version: 8.6.3
appVersion: 11.3.1
kubeVersion: "^1.8.0-0"
description: The leading tool for querying and visualizing time series and metrics.
Expand Down
29 changes: 28 additions & 1 deletion charts/grafana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -673,9 +673,15 @@ datasources: {}
# - name: Prometheus

## Configure grafana alerting (can be templated)
## ref: http://docs.grafana.org/administration/provisioning/#alerting
## ref: https://docs.grafana.com/alerting/set-up/provision-alerting-resources/file-provisioning/
##
alerting: {}
# policies.yaml:
# apiVersion: 1
# policies:
# - orgId: 1
# receiver: first_uid
#
# rules.yaml:
# apiVersion: 1
# groups:
Expand Down Expand Up @@ -720,6 +726,7 @@ alerting: {}
# some_key: some_value
# labels:
# team: sre_team_1
#
# contactpoints.yaml:
# secret:
# apiVersion: 1
Expand All @@ -737,6 +744,26 @@ alerting: {}
# group: app-stack
# summary: |
# {{ `{{ include "default.message" . }}` }}
#
# templates.yaml:
# apiVersion: 1
# templates:
# - orgId: 1
# name: my_first_template
# template: |
# {{ `
# {{ define "my_first_template" }}
# Custom notification message
# {{ end }}
# ` }}
#
# mutetimes.yaml
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

colon is missing here

# apiVersion: 1
# muteTimes:
# - orgId: 1
# name: mti_1
# # refer to https://prometheus.io/docs/alerting/latest/configuration/#time_interval-0
# time_intervals: {}

## Configure notifiers
## ref: http://docs.grafana.org/administration/provisioning/#alert-notification-channels
Expand Down
Loading