From 164a412d3aa382b234ae9b9ef8013c59d4832a1d Mon Sep 17 00:00:00 2001 From: annelaurefroment <49911675+annelaurefroment@users.noreply.github.com> Date: Mon, 6 Nov 2023 16:52:04 +0000 Subject: [PATCH] Update _index.md - adding new unified_alerting parameters (#77720) * Update _index.md Adding the new parameters in unified_alerting: - ha_redis_address - ha_redis_username - ha_redis_password - ha_redis_db - ha_redis_prefix - ha_redis_peer_name - ha_redis_max_conns - ha_label Information pulled from: https://github.com/grafana/grafana/blob/6df640d3aa9d21680e498538e8823e393892a9cb/conf/defaults.ini#L1045 * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-grafana/_index.md Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> --------- Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> --- .../setup-grafana/configure-grafana/_index.md | 34 ++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/docs/sources/setup-grafana/configure-grafana/_index.md b/docs/sources/setup-grafana/configure-grafana/_index.md index 7f50adfce3d..94663ddbb1e 100644 --- a/docs/sources/setup-grafana/configure-grafana/_index.md +++ b/docs/sources/setup-grafana/configure-grafana/_index.md @@ -1510,6 +1510,34 @@ Specify the frequency of polling for Alertmanager config changes. The default va The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m. +### ha_redis_address + +The Redis server address that should be connected to. + +### ha_redis_username + +The username that should be used to authenticate with the Redis server. + +### ha_redis_password + +The password that should be used to authenticate with the Redis server. + +### ha_redis_db + +The Redis database. The default value is `0`. + +### ha_redis_prefix + +A prefix that is used for every key or channel that is created on the Redis server as part of HA for alerting. + +### ha_redis_peer_name + +The name of the cluster peer that will be used as an identifier. If none is provided, a random one will be generated. + +### ha_redis_max_conns + +The maximum number of simultaneous Redis connections. + ### ha_listen_address Listen IP address and port to receive unified alerting messages for other Grafana instances. The port is used for both TCP and UDP. It is assumed other Grafana instances are also running on the same port. The default value is `0.0.0.0:9094`. @@ -1530,6 +1558,10 @@ each instance wait before sending the notification to take into account replicat The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m. +### ha_label + +The label is an optional string to include on each packet and stream. It uniquely identifies the cluster and prevents cross-communication issues when sending gossip messages in an environment with multiple clusters. + ### ha_gossip_interval The interval between sending gossip messages. By lowering this value (more frequent) gossip messages are propagated @@ -1550,7 +1582,7 @@ Enable or disable alerting rule execution. The default value is `true`. The aler ### evaluation_timeout -Sets the alert evaluation timeout when fetching data from the datasource. The default value is `30s`. This option has a [legacy version in the alerting section]({{< relref "#evaluation_timeout_seconds" >}}) that takes precedence. +Sets the alert evaluation timeout when fetching data from the data source. The default value is `30s`. This option has a [legacy version in the alerting section]({{< relref "#evaluation_timeout_seconds" >}}) that takes precedence. The timeout string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.