X-Git-Url: https://arthur.barton.de/gitweb/?p=netdata.git;a=blobdiff_plain;f=python.d%2Fovpn_status_log.chart.py;fp=python.d%2Fovpn_status_log.chart.py;h=b3cc6723fff2878251468db596d25871837a1e24;hp=49ce54518c0d068095d99a8596db9ebffa69a347;hb=74af65d19c10816ff3741f26518789261ee791e9;hpb=ed84bb8a762f62a4e20065038b23d043c6213ea3;ds=sidebyside diff --git a/python.d/ovpn_status_log.chart.py b/python.d/ovpn_status_log.chart.py index 49ce5451..b3cc6723 100644 --- a/python.d/ovpn_status_log.chart.py +++ b/python.d/ovpn_status_log.chart.py @@ -11,12 +11,12 @@ update_every = 10 ORDER = ['users', 'traffic'] CHARTS = { 'users': { - 'options': [None, 'OpenVPN Active Users', 'active users', 'Users', 'openvpn_status.users', 'line'], + 'options': [None, 'OpenVPN Active Users', 'active users', 'users', 'openvpn_status.users', 'line'], 'lines': [ ["users", None, "absolute"], ]}, 'traffic': { - 'options': [None, 'OpenVPN Traffic', 'Kb/s', 'Traffic', 'openvpn_status.traffic', 'area'], + 'options': [None, 'OpenVPN Traffic', 'Kb/s', 'traffic', 'openvpn_status.traffic', 'area'], 'lines': [ ["in", None, "incremental", 8, 1000], ["out", None, "incremental", 8, -1000] ]},