Sometimes, you need to parse a nagios.log, and even more so, need to be able to read the date and time of a logged event. Here’s a simple command-line to do that:
1 | cat /usr/local/nagios/var/nagios .log | perl -pe 's/(\d+)/localtime($1)/e' |
Sometimes, you need to parse a nagios.log, and even more so, need to be able to read the date and time of a logged event. Here’s a simple command-line to do that:
1 | cat /usr/local/nagios/var/nagios .log | perl -pe 's/(\d+)/localtime($1)/e' |