]> arthur.barton.de Git - netdata.git/commitdiff
fixed unit label
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Tue, 24 Feb 2015 13:41:29 +0000 (15:41 +0200)
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Tue, 24 Feb 2015 13:41:29 +0000 (15:41 +0200)
charts.d/squid.chart.sh

index 64ab4783b4f1a4fc311cd242f53f7f5539bdefef..cc2519f0a19994e770e2380715291399fe6b63d3 100755 (executable)
@@ -30,21 +30,21 @@ squid_check() {
 squid_create() {
        # create the charts
        cat <<EOF
-CHART squid.clients_net '' "Squid Client Bandwidth" "kilobits / $squid_update_every sec" squid '' area 20001 $squid_update_every
+CHART squid.clients_net '' "Squid Client Bandwidth" "kilobits / sec" squid '' area 20001 $squid_update_every
 DIMENSION client_http_kbytes_in in incremental 8 $((1 * squid_update_every))
 DIMENSION client_http_kbytes_out out incremental -8 $((1 * squid_update_every))
 DIMENSION client_http_hit_kbytes_out hits incremental -8 $((1 * squid_update_every))
 
-CHART squid.clients_requests '' "Squid Client Requests" "requests / $squid_update_every sec" squid '' line 20003 $squid_update_every
+CHART squid.clients_requests '' "Squid Client Requests" "requests / sec" squid '' line 20003 $squid_update_every
 DIMENSION client_http_requests requests incremental 1 $((1 * squid_update_every))
 DIMENSION client_http_hits hits incremental 1 $((1 * squid_update_every))
 DIMENSION client_http_errors errors incremental -1 $((1 * squid_update_every))
 
-CHART squid.servers_net '' "Squid Server Bandwidth" "kilobits / $squid_update_every sec" squid '' area 20002 $squid_update_every
+CHART squid.servers_net '' "Squid Server Bandwidth" "kilobits / sec" squid '' area 20002 $squid_update_every
 DIMENSION server_all_kbytes_in in incremental 8 $((1 * squid_update_every))
 DIMENSION server_all_kbytes_out out incremental -8 $((1 * squid_update_every))
 
-CHART squid.servers_requests '' "Squid Server Requests" "requests / $squid_update_every sec" squid '' line 20004 $squid_update_every
+CHART squid.servers_requests '' "Squid Server Requests" "requests / sec" squid '' line 20004 $squid_update_every
 DIMENSION server_all_requests requests incremental 1 $((1 * squid_update_every))
 DIMENSION server_all_errors errors incremental -1 $((1 * squid_update_every))
 EOF