Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parsing of rsyslog precision timestamps #84

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
zmdailyreport: fix parsing of rsyslog precision timestamps
  • Loading branch information
jjakob committed Apr 7, 2021
commit 9a9fbd8fe50beaf673ec85cf0b017b3c0fdfc875
4 changes: 2 additions & 2 deletions src/libexec/zmdailyreport
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ if (fork()) {

while (<LOG>) {
my $line = $_;
if ($line =~ /$today/o) {
if ($line =~ /$today|$datestring/o) {
print PFOUT $line;
$found = 1;
} elsif ($found) {
Expand All @@ -96,7 +96,7 @@ if (fork()) {
$found = 0;
while (<LOG>) {
my $line = $_;
if ($line =~ /$today/o) {
if ($line =~ /$today|$datestring/o) {
print PFOUT $line;
$found = 1;
} elsif ($found) {
Expand Down