summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorAndrew Maguire <andrewm4894@gmail.com>2020-11-30 13:57:58 +0000
committerGitHub <noreply@github.com>2020-11-30 13:57:58 +0000
commit95407a625c6a55f157cdf8b0e59096d178098d41 (patch)
treee65e3bb6bfc98ea64f7648d29b5da03c485f916e /web
parent3d86cf62cd716ba30ea6e1b0d6e23e3a41a7b06b (diff)
Alarms collector (#10042)
Adding a simple python based Alarms collector to read from active alarms via /api/v1/alarms and add any active warning alarms to the alarms chart as per a status_map that maps alarm states to integers.
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index 9d165e7dd8..7e17907218 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -570,6 +570,13 @@ netdataDashboard.menu = {
icon: '<i class="fas fa-comments"></i>',
info: 'Summary, namespaces and topics performance data for the <b><a href="http://pulsar.apache.org/">Apache Pulsar</a></b> pub-sub messaging system.'
},
+
+ 'alarms': {
+ title: 'Alarms',
+ icon: '<i class="fas fa-bell"></i>',
+ info: 'Charts showing alarm status over time. More details <a href="https://github.com/netdata/netdata/blob/master/collectors/python.d.plugin/alarms/README.md" target="_blank">here</a>.'
+ },
+
};