From a30a849b78fa4fe8552141b7b2802d1af1b18c09 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 13 Oct 2019 10:36:33 +0200 Subject: Adding upstream version 1.18.0. Signed-off-by: Daniel Baumann --- web/gui/dashboard_info.js | 103 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 102 insertions(+), 1 deletion(-) (limited to 'web/gui/dashboard_info.js') diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js index 130162be3..774577a04 100644 --- a/web/gui/dashboard_info.js +++ b/web/gui/dashboard_info.js @@ -213,6 +213,12 @@ netdataDashboard.menu = { info: 'Network latency statistics, via fping. fping is a program to send ICMP echo probes to network hosts, similar to ping, but much better performing when pinging multiple hosts. fping versions after 3.15 can be directly used as netdata plugins.' }, + 'gearman': { + title: 'Gearman', + icon: '', + info: 'Gearman is a job server that allows you to do work in parallel, to load balance processing, and to call functions between languages.' + }, + 'ioping': { title: 'ioping', icon: '', @@ -492,6 +498,24 @@ netdataDashboard.menu = { title: 'vSphere', icon: '', info: 'Performance statistics for ESXI hosts and virtual machines. Data collected from VMware vCenter Server using govmomi library.' + }, + + 'vcsa': { + title: 'VCSA', + icon: '', + info: 'vCenter Server Appliance health statistics. Data collected from Health API.' + }, + + 'zookeeper': { + title: 'Zookeeper', + icon: '', + info: 'Provides health statistics for Zookeeper server. Data collected through the command port using mntr command.' + }, + + 'hdfs': { + title: 'HDFS', + icon: '', + info: 'Provides Hadoop Distributed File System performance statistics. Module collects metrics over Java Management Extensions through the web interface of an HDFS daemon.' } }; @@ -1236,6 +1260,39 @@ netdataDashboard.context = { info: 'A deadlock happens when two or more transactions mutually hold and request for locks, creating a cycle of dependencies. For more information about how to minimize and handle deadlocks.' }, + 'mysql.galera_cluster_status': { + info: + '-1: unknown, ' + + '0: primary (primary group configuration, quorum present), ' + + '1: non-primary (non-primary group configuration, quorum lost), ' + + '2: disconnected(not connected to group, retrying).' + }, + + 'mysql.galera_cluster_state': { + info: + '0: undefined, ' + + '1: joining, ' + + '2: donor/desynced, ' + + '3: joined, ' + + '4: synced.' + }, + + 'mysql.galera_cluster_weight': { + info: 'The value is counted as a sum of pc.weight of the nodes in the current Primary Component.' + }, + + 'mysql.galera_connected': { + info: '0 means that the node has not yet connected to any of the cluster components. ' + + 'This may be due to misconfiguration.' + }, + + 'mysql.open_transactions': { + info: 'The number of locally running transactions which have been registered inside the wsrep provider. ' + + 'This means transactions which have made operations which have caused write set population to happen. ' + + 'Transactions which are read only are not counted.' + }, + + // ------------------------------------------------------------------------ // POSTGRESQL @@ -2581,5 +2638,49 @@ netdataDashboard.context = { 'vsphere.overall_status': { info: '0 is unknown, 1 is OK, 2 is might have a problem, 3 is definitely has a problem.' - } + }, + + // ------------------------------------------------------------------------ + // VCSA + 'vcsa.system_health': { + info: + '-1: unknown; ' + + '0: all components are healthy; ' + + '1: one or more components might become overloaded soon; ' + + '2: one or more components in the appliance might be degraded; ' + + '3: one or more components might be in an unusable status and the appliance might become unresponsive soon; ' + + '4: no health data is available.' + }, + + 'vcsa.components_health': { + info: + '-1: unknown; ' + + '0: healthy; ' + + '1: healthy, but may have some problems; ' + + '2: degraded, and may have serious problems; ' + + '3: unavailable, or will stop functioning soon; ' + + '4: no health data is available.' + }, + + 'vcsa.software_updates_health': { + info: + 'softwarepackages represents information on available software updates available in the remote vSphere Update Manager repository.
' + + '-1: unknown; ' + + '0: no updates available; ' + + '2: non-security updates are available; ' + + '3: security updates are available; ' + + '4: an error retrieving information on software updates.' + }, + + // ------------------------------------------------------------------------ + // Zookeeper + + 'zookeeper.server_state': { + info: + '0: unknown, ' + + '1: leader, ' + + '2: follower, ' + + '3: observer, ' + + '4: standalone.' + } }; -- cgit v1.2.3