I have a logfile with entries like:

...    
freeswitch.log:2011-09-08 12:21:07.282236 [ERR] ftdm_queue.c:136 Failed to enqueue obj 0x7f2cda3525c0 in queue 0x7f2ce8005990, no more room! windex == rindex == 58!
freeswitch.log:2011-08-08 13:21:07.514261 [ERR] ftdm_queue.c:136 Failed to enqueue obj 0x7f2cda354460 in queue 0x7f2ce8005990, no more room! windex == rindex == 58!
freeswitch.log:2011-06-04 16:21:08.998227 [ERR] ftdm_queue.c:136 Failed to enqueue obj 0x7f2cda356300 in queue 0x7f2ce8005990, no more room! windex == rindex == 58! 
freeswitch.log:2011-09-08 12:21:10.374238 [ERR] ftdm_queue.c:136 Failed to enqueue obj 0x7f2cda3581a0 in queue 0x7f2ce8005990, no more room! windex == rindex == 58!
...

How can I sort the file with linux command line tools by the timestamp in each row decending?

link|improve this question

Is the space are common delimiter? – ajreal Sep 8 '11 at 11:26
feedback

6 Answers

up vote 3 down vote accepted

Use sort's -k flag:

sort -k1 -r freeswitch.log

That will sort the file, in reverse, by the first key (i.e. freeswitch.log:2011-09-08 12:21:07.282236). If the filename is always the same (freeswitch.log), then it should sort by the date.

link|improve this answer
feedback

You can try using sort

sort -k1,2 file
link|improve this answer
feedback

You can reverse the sort with

sort -r
link|improve this answer
but how to tell to sort by the timestamp in the row. Note they are not ordered yet (I changes it in my question) – markus Sep 8 '11 at 11:49
If I understand your comment correctly, this answer is: grep ftdm_queue.c freeswitch.log | sort -r # this is a guess as you having provided your full command-line. – Patrick B. Sep 8 '11 at 12:01
feedback

The log file seems ascending, you can

tac yourlogfile

which would reversely show your log file.

link|improve this answer
The entries are not completly sorted by the timestamp yet – markus Sep 8 '11 at 11:14
feedback

I guess the log file appends new data at the end. If so, you may read the file in reverse. Try with tail -r or cat command.

link|improve this answer
no it's not appending data, I already grep the lines I want to analyze from the original logfile into a new file. – markus Sep 8 '11 at 11:43
feedback

Crude but effective technique: Prefix each line with a numeric representation of the date, sort numerically, then remove the extra info.

Oneliner:

while IFS=' ' read -r name_date trailing ; do date=$(cut -d: -f2 <<<"$name_date") ; printf '%s:%s\n' $(date -d "$date" +%s) "$name_date $trailing" ; done < freeswitch.log | sort -k1 -t: | cut -d: -f2-

Shell script:

#!/usr/bin/env bash

logfile="$1"

if [ -f "$logfile" ] ; then
    while IFS=' ' read -r name_date trailing ; do
            date=$(cut -d: -f2 <<<"$name_date")
        printf '%s:%s\n' $(date -d "$date" +%s) "$name_date $trailing"
    done < "$logfile" | sort -k1 -t: | cut -d: -f2-
fi

Note: Requires GNU date.

If the output at this point is the reverse of what you want it is simple to pipe through tac or to modify the script to also pass -r to sort.

EDIT: I missed the part where the filename was literally on each line. Updated version will now actually work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.