web/gui: add supervisord to the dashboard_info.js (#10754)
Ilya Mashchenko committed
Mar 11, 2021 at 19:49 UTC
686765cdd70865b652874484d5a58798dd96e280
1 file changed
+18
-1
web/gui/dashboard_info.js
+18
-1
@@ -582,11 +582,19 @@ netdataDashboard.menu = {
582
icon: '<i class="fas fa-bell"></i>',
583
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>.'
584
},
585
+
586
'statsd': {
587
title: 'StatsD',
588
icon: '<i class="fas fa-chart-line"></i>',
589
info:'StatsD is an industry-standard technology stack for monitoring applications and instrumenting any piece of software to deliver custom metrics. Netdata allows the user to organize the metrics in different charts and visualize any application metric easily. Read more on <a href="https://learn.netdata.cloud/docs/agent/collectors/statsd.plugin">Netdata Learn</a>.'
589
- }
590
+ },
591
+
592
+ 'supervisord': {
593
+ title: 'Supervisord',
594
+ icon: '<i class="fas fa-tasks"></i>',
595
+ info: 'Detailed statistics for each group of processes controlled by <b><a href="http://supervisord.org/">Supervisor</a></b>. ' +
596
+ 'Netdata collects these metrics using <a href="http://supervisord.org/api.html#supervisor.rpcinterface.SupervisorNamespaceRPCInterface.getAllProcessInfo" target="_blank"><code>getAllProcessInfo</code></a> method.'
597
+ },
598
};
599
600
@@ -3807,4 +3815,13 @@ netdataDashboard.context = {
3815
}
3816
]
3817
},
3818
+
3819
+ // ------------------------------------------------------------------------
3820
+ // Supervisor
3821
+
3822
+ 'supervisord.process_state_code': {
3823
+ info: '<a href="http://supervisord.org/subprocess.html#process-states" target="_blank">Process states map</a>: ' +
3824
+ '<code>0</code> - stopped, <code>10</code> - starting, <code>20</code> - running, <code>30</code> - backoff,' +
3825
+ '<code>40</code> - stopping, <code>100</code> - exited, <code>200</code> - fatal, <code>1000</code> - unknown.'
3826
+ },
3827
};