]> arthur.barton.de Git - netdata.git/commitdiff
fixed typo
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Sun, 31 Jan 2016 16:51:59 +0000 (18:51 +0200)
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Sun, 31 Jan 2016 16:51:59 +0000 (18:51 +0200)
web/index.html

index 4db417f9dfafbc52274ecce3ae8be88994d3f2cb..0151b85fbb0e1b2c9b38d1bc9e8ff1655c598ccc 100755 (executable)
@@ -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>.',