Hi,
I have the need of adding time to squid log. The commad tail -f /var/log/squid/access.log does not provide the time when a user acesses the internet.
I want to enable this feature.
How to enable ?
- Thank you Indunil Jayasooriya
Indunil Jayasooriya wrote:
Hi,
I have the need of adding time to squid log. The commad tail -f /var/log/squid/access.log does not provide the time when a user acesses the internet.
I want to enable this feature.
How to enable ?
The first number in the log is time in seconds since Jan 1, 1970 plus 3 digits of milliseconds. Feed it to 'date -r number' to get a more readable format. Perl and most other languages have routines to handle timestamps in this format if you need to convert.