Sortable, readable and standard time format for logs

前端 未结 2 634
Happy的楠姐
Happy的楠姐 2021-01-17 21:32

Timestamp format in logs

Most log lines contain a timestamp and event description:

[When] [What]

e.g.:

[23/Jul/20         


        
2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-17 22:23

    The unix date command has such an option. Use

    date -Iseconds
    

    or

    date -Ins
    

    The manpage says:

       -I[FMT], --iso-8601[=FMT]
              output  date/time  in  ISO  8601  format.   FMT='date' for date only (the default),
              'hours', 'minutes', 'seconds', or 'ns' for date and time to  the  indicated  preci‐
              sion.  Example: 2006-08-14T02:34:56-0600
    

提交回复
热议问题