* [PATCH] log.dat: Fix an error with 'monit' logging too much data.
@ 2022-01-21 17:07 Matthias Fischer
2022-01-25 16:53 ` Peter Müller
2022-01-28 13:20 ` Bernhard Bitsch
0 siblings, 2 replies; 3+ messages in thread
From: Matthias Fischer @ 2022-01-21 17:07 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1047 bytes --]
Making the regex "non-greedy" fixes an error Jon found.
'monit' logged a whole line from '/var/log/messages' where it should only log the first part.
Reference:
https://www.ultraedit.com/support/tutorials-power-tips/ultraedit/non-greedy-perl-regex.html
Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
html/cgi-bin/logs.cgi/log.dat | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi-bin/logs.cgi/log.dat
index 0d6c6722a..3364b7bea 100644
--- a/html/cgi-bin/logs.cgi/log.dat
+++ b/html/cgi-bin/logs.cgi/log.dat
@@ -62,7 +62,7 @@ my %sections = (
'ipfire' => '(ipfire: )',
'ipsec' => '(ipsec_[\w_]+: |pluto\[.*\]: |charon: |vpnwatch: )',
'kernel' => '(kernel: (?!DROP_))',
- 'monit' => '(monit\[.*\]: )',
+ 'monit' => '(monit\[.*?\]: )',
'ntp' => '(ntpd(?:ate)?\[.*\]: )',
'oinkmaster' => '(oinkmaster\[.*\]: )',
'openvpn' => '(openvpnserver\[.*\]: |.*n2n\[.*\]: )',
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] log.dat: Fix an error with 'monit' logging too much data.
2022-01-21 17:07 [PATCH] log.dat: Fix an error with 'monit' logging too much data Matthias Fischer
@ 2022-01-25 16:53 ` Peter Müller
2022-01-28 13:20 ` Bernhard Bitsch
1 sibling, 0 replies; 3+ messages in thread
From: Peter Müller @ 2022-01-25 16:53 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1141 bytes --]
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> Making the regex "non-greedy" fixes an error Jon found.
>
> 'monit' logged a whole line from '/var/log/messages' where it should only log the first part.
>
> Reference:
> https://www.ultraedit.com/support/tutorials-power-tips/ultraedit/non-greedy-perl-regex.html
>
> Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
> ---
> html/cgi-bin/logs.cgi/log.dat | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi-bin/logs.cgi/log.dat
> index 0d6c6722a..3364b7bea 100644
> --- a/html/cgi-bin/logs.cgi/log.dat
> +++ b/html/cgi-bin/logs.cgi/log.dat
> @@ -62,7 +62,7 @@ my %sections = (
> 'ipfire' => '(ipfire: )',
> 'ipsec' => '(ipsec_[\w_]+: |pluto\[.*\]: |charon: |vpnwatch: )',
> 'kernel' => '(kernel: (?!DROP_))',
> - 'monit' => '(monit\[.*\]: )',
> + 'monit' => '(monit\[.*?\]: )',
> 'ntp' => '(ntpd(?:ate)?\[.*\]: )',
> 'oinkmaster' => '(oinkmaster\[.*\]: )',
> 'openvpn' => '(openvpnserver\[.*\]: |.*n2n\[.*\]: )',
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] log.dat: Fix an error with 'monit' logging too much data.
2022-01-21 17:07 [PATCH] log.dat: Fix an error with 'monit' logging too much data Matthias Fischer
2022-01-25 16:53 ` Peter Müller
@ 2022-01-28 13:20 ` Bernhard Bitsch
1 sibling, 0 replies; 3+ messages in thread
From: Bernhard Bitsch @ 2022-01-28 13:20 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1195 bytes --]
Reviewed-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
Am 21.01.2022 um 18:07 schrieb Matthias Fischer:
> Making the regex "non-greedy" fixes an error Jon found.
>
> 'monit' logged a whole line from '/var/log/messages' where it should only log the first part.
>
> Reference:
> https://www.ultraedit.com/support/tutorials-power-tips/ultraedit/non-greedy-perl-regex.html
>
> Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
> ---
> html/cgi-bin/logs.cgi/log.dat | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi-bin/logs.cgi/log.dat
> index 0d6c6722a..3364b7bea 100644
> --- a/html/cgi-bin/logs.cgi/log.dat
> +++ b/html/cgi-bin/logs.cgi/log.dat
> @@ -62,7 +62,7 @@ my %sections = (
> 'ipfire' => '(ipfire: )',
> 'ipsec' => '(ipsec_[\w_]+: |pluto\[.*\]: |charon: |vpnwatch: )',
> 'kernel' => '(kernel: (?!DROP_))',
> - 'monit' => '(monit\[.*\]: )',
> + 'monit' => '(monit\[.*?\]: )',
> 'ntp' => '(ntpd(?:ate)?\[.*\]: )',
> 'oinkmaster' => '(oinkmaster\[.*\]: )',
> 'openvpn' => '(openvpnserver\[.*\]: |.*n2n\[.*\]: )',
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-01-28 13:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-21 17:07 [PATCH] log.dat: Fix an error with 'monit' logging too much data Matthias Fischer
2022-01-25 16:53 ` Peter Müller
2022-01-28 13:20 ` Bernhard Bitsch
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox