Add support for different .rtreport format (#7705)
Lucas Rolff committed
Jan 10, 2020 at 15:57 UTC
ca084013f914e589e2f424b1d87e2115168cf25f
1 file changed
+1
-1
collectors/python.d.plugin/litespeed/litespeed.chart.py
+1
-1
@@ -178,7 +178,7 @@ class Service(SimpleService):
178
179
def parse_file(data, lines):
180
for line in lines:
181
- if not line.startswith(('BPS_IN:', 'MAXCONN:', 'REQ_RATE []:')):
181
+ if not line.startswith(('BPS_IN:', 'MAXCONN:', 'PLAINCONN:', 'REQ_RATE []:')):
182
continue
183
m = dict(RE.findall(line))
184
for v in T: