-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OM153 - Node exporter dashboard (#93)
* OM153 - node exporter dashboard * OM153 - added node exporter alerts to docker-compose files added alert for secret-agent too
- Loading branch information
Showing
9 changed files
with
7,914 additions
and
2 deletions.
There are no files selected for viewing
7,291 changes: 7,291 additions & 0 deletions
7,291
config/grafana/dashboards/nodeexporter/hostview.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
groups: | ||
- name: secret_agent.rules | ||
rules: | ||
- alert: AerospikeSecretAgentDown | ||
expr: absent(aerospike_sa_connections_active{job="aerospike_secret_agent"}) == 1 | ||
for: 1m | ||
labels: | ||
severity: critical | ||
annotations: | ||
summary: "Aerospike Secret Agent instance {{ $labels.instance }} in cluster {{$labels.cluster_name}} has been down for more than 1m." | ||
description: "Aerospike Secret Agent instance {{ $labels.instance }} in cluster {{$labels.cluster_name}} has been down for more than 1m." | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
274 changes: 274 additions & 0 deletions
274
config/prometheus/templates/node_exporter_alerts_rules.template
Large diffs are not rendered by default.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
config/prometheus/templates/node_exporter_config_data.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"node_down_critical_duration": "1m", | ||
"node_warn_memory_pct": "70", | ||
"node_warn_outofmemory_duration": "1m", | ||
"node_warn_outOfDisk_duration": "1m", | ||
"node_warn_OutOfdisk_pct": "70", | ||
"node_warn_OutOfInodes_pct": "70", | ||
"node_warn_outOfInodes_duration": "1m", | ||
"node_warn_unusual_disklatency_time": "0.1", | ||
"node_warn_unusual_diskWrite_latency_duration": "1m", | ||
"node_warn_unusual_diskRead_latency_duration": "1m", | ||
"node_high_cpuload_threshold_duration": "30s", | ||
"node_warn_highCPU_pct": "70", | ||
"node_cpu_steal_threshold_duration": "30s", | ||
"node_warn_cpu_steal_pct": "3", | ||
"node_network_receiveError_duration": "1m", | ||
"node_warn_network_err": "3", | ||
"node_network_transmitError_duration": "1m", | ||
"node_warn_network_interface_saturation": "0.8", | ||
"node_network_interface_saturated_duration": "1m", | ||
"node_clock_notsync_duration": "2m", | ||
"node_warn_clock_duration": "16", | ||
"node_warn_swapPages_count": "5", | ||
"node_warn_swap_in_duration": "1m", | ||
"node_warn_swap_out_duration": "1m", | ||
|
||
"node_critical_memory_pct": "90", | ||
"node_critical_outofmemory_duration": "1m", | ||
"node_critical_outOfDisk_duration": "1m", | ||
"node_critical_OutOfdisk_pct": "90", | ||
"node_critical_OutOfInodes_pct": "90", | ||
"node_critical_outOfInodes_duration": "1m", | ||
"node_critical_unusual_disklatency_time": "0.5", | ||
"node_critical_unusual_diskWrite_latency_duration": "1m", | ||
"node_critical_unusual_diskRead_latency_duration": "1m", | ||
"node_critical_highCPU_pct": "90", | ||
"node_critical_cpu_steal_pct": "5", | ||
"node_critical_network_err": "5", | ||
"node_critical_network_interface_saturation": "0.9", | ||
"node_critical_swapPages_count": "10", | ||
"node_critical_swap_in_duration": "1m", | ||
"node_critical_swap_out_duration": "1m" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters