-
Problem report
-
Resolution: Won't fix
-
Major
-
None
-
6.0.4rc1, 6.2.0alpha2
-
None
-
Debian 11
-
Support backlog
Hi,
First issue, I don't really know how to contribute.
Steps to reproduce:
- Execute Apache: Get status item on host with mod_status enabled
Result:
- Get only "Apache" in ServerVersion field if there is a / in the server version (ex: Apache/2.4.53 (Debian) OpenSSL/1.1.1n)
Expected:
Solved by modifying preprocessing Javascript //Convert apache to JSON:
Line 12, change
var line = lines[i].match(/([A-z0-9 ]+): (.*)/);
by
var line = lines[i].match(/([A-z0-9 ]+): (.*$)/);
Thanks.