summaryrefslogtreecommitdiffstats
path: root/collectors
diff options
context:
space:
mode:
authorLucas Rolff <lucas@slcoding.com>2020-01-10 15:57:42 +0100
committerIlya Mashchenko <ilya@netdata.cloud>2020-01-10 16:57:42 +0200
commitca084013f914e589e2f424b1d87e2115168cf25f (patch)
treed0fc2b2b7880fbb1ed89895918418980b839948d /collectors
parentb833a8879d3c2fb02e001138a782ef84873c8131 (diff)
Add support for different .rtreport format (#7705)
Diffstat (limited to 'collectors')
-rw-r--r--collectors/python.d.plugin/litespeed/litespeed.chart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/python.d.plugin/litespeed/litespeed.chart.py b/collectors/python.d.plugin/litespeed/litespeed.chart.py
index 4b67ffb8a5..2d166cce7f 100644
--- a/collectors/python.d.plugin/litespeed/litespeed.chart.py
+++ b/collectors/python.d.plugin/litespeed/litespeed.chart.py
@@ -178,7 +178,7 @@ class Service(SimpleService):
def parse_file(data, lines):
for line in lines:
- if not line.startswith(('BPS_IN:', 'MAXCONN:', 'REQ_RATE []:')):
+ if not line.startswith(('BPS_IN:', 'MAXCONN:', 'PLAINCONN:', 'REQ_RATE []:')):
continue
m = dict(RE.findall(line))
for v in T: