]> arthur.barton.de Git - netdata.git/blobdiff - python.d/squid.chart.py
minor squid fixes
[netdata.git] / python.d / squid.chart.py
index c34c5924c086859e9cd61885490fdb54c4bb800f..c298cd9609b76f639fc60be4a8c6d39bc686deec 100644 (file)
@@ -14,7 +14,7 @@ ORDER = ['clients_net', 'clients_requests', 'servers_net', 'servers_requests']
 
 CHARTS = {
     'clients_net': {
-        'options': [None, "Squid Client Bandwidth", "kilobits/s", "clients", "squid.clients.net" "area"],
+        'options': [None, "Squid Client Bandwidth", "kilobits/s", "clients", "squid.clients.net", "area"],
         'lines': [
             ["client_http_kbytes_in", "in", "incremental", 8, 1],
             ["client_http_kbytes_out", "out", "incremental", -8, 1],
@@ -23,12 +23,12 @@ CHARTS = {
     'clients_requests': {
         'options': [None, "Squid Client Requests", "requests/s", "clients", "squid.clients.requests", 'line'],
         'lines': [
-            ["client_http_requests", "requests"],
-            ["client_http_hits", "hits"],
+            ["client_http_requests", "requests", "incremental"],
+            ["client_http_hits", "hits", "incremental"],
             ["client_http_errors", "errors", "incremental", -1, 1]
         ]},
     'servers_net': {
-        'options': [None, "Squid Server Bandwidth", "kilobits/s", "servers", "squid.servers.net" "area"],
+        'options': [None, "Squid Server Bandwidth", "kilobits/s", "servers", "squid.servers.net", "area"],
         'lines': [
             ["server_all_kbytes_in", "in", "incremental", 8, 1],
             ["server_all_kbytes_out", "out", "incremental", -8, 1]