summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/portcheck/portcheck.chart.py
diff options
context:
space:
mode:
Diffstat (limited to 'collectors/python.d.plugin/portcheck/portcheck.chart.py')
-rw-r--r--collectors/python.d.plugin/portcheck/portcheck.chart.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/collectors/python.d.plugin/portcheck/portcheck.chart.py b/collectors/python.d.plugin/portcheck/portcheck.chart.py
index 0ac383a532..4f698aa395 100644
--- a/collectors/python.d.plugin/portcheck/portcheck.chart.py
+++ b/collectors/python.d.plugin/portcheck/portcheck.chart.py
@@ -12,8 +12,6 @@ except ImportError:
from bases.FrameworkServices.SimpleService import SimpleService
-# default module values (can be overridden per job in `config`)
-priority = 60000
PORT_LATENCY = 'connect'
@@ -25,7 +23,7 @@ ORDER = ['latency', 'status']
CHARTS = {
'latency': {
- 'options': [None, 'TCP connect latency', 'ms', 'latency', 'portcheck.latency', 'line'],
+ 'options': [None, 'TCP connect latency', 'milliseconds', 'latency', 'portcheck.latency', 'line'],
'lines': [
[PORT_LATENCY, 'connect', 'absolute', 100, 1000]
]