summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-01-31 18:51:59 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-01-31 18:51:59 +0200
commit361352621ffbf770c62ee6f25a143be9fd69057d (patch)
treef77302d8c6869433a3080230e9be48cea1e7eaac /web
parentc10b4e4f9a1ef62f597e2d986754d53071e806c4 (diff)
fixed typo
Diffstat (limited to 'web')
-rwxr-xr-xweb/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/index.html b/web/index.html
index 4db417f9df..0151b85fbb 100755
--- a/web/index.html
+++ b/web/index.html
@@ -729,7 +729,7 @@ function sparkline(chart, dimension, units) {
var messages = {
// categories / sections
- 'system': 'Overview of the key system metrices.',
+ 'system': 'Overview of the key system metrics.',
'tc': 'Netdata collects and visualizes tc class utilization using its <a href="https://github.com/firehol/netdata/blob/master/plugins.d/tc-qos-helper.sh" target="_blank">tc-helper plugin</a>. If you also use <a href="http://firehol.org/#fireqos" target="_blank">FireQOS</a> for setting up QoS, netdata automatically collects interface and class names. If your QoS configuration includes overheads calculation, the values shown here will include these overheads (the total bandwidth for the same interface as reported in the Network Interfaces section, will be lower than the total bandwidth reported here). Also, data collection may have a slight time difference compared to the interface (QoS data collection is implemented with a BASH script, so a shift in data collection of a few milliseconds should be justified).',
'net': 'Per network interface statistics collected from <code>/proc/net/dev</code>.',
'apps': 'Per application statistics are collected using netdata\'s <code>apps.plugin</code>. This plugin walks through the entire <code>/proc</code> filesystem and aggregates statistics for applications of interest, defined in <code>/etc/netdata/apps_groups.conf</code> (the default is <a href="https://github.com/firehol/netdata/blob/master/conf.d/apps_groups.conf" target="_blank">here</a>). The plugin internaly builds a process tree (much like <code>ps fax</code> does), and groups processes together (evaluating both child and parent processes) so that the result is always a chart with a predefined set of dimensions (of course, only application groups found running are reported).<br/><b>IMPORTANT</b>: The values shown here are not 100% accurate. They only include values for the processes running. If an application is spawning childs continiously, which are terminated in just a few milliseconds (like shell scripts do), the values reported will be inaccurate. Linux does report the values for the exited childs of a process. However, these values are reported to the parent process <b>only when the child exits</b>. If these values, of the exited child processes, were also aggregated in the charts below, the charts would have been full of spikes, presenting unrealisting utilization for each process group. So, we decided to ignore these values and present only the utilization of <b>the currently running processes</b>.',