Replies: 1 comment
-
Log analysis in lnav is mostly done using the SQLite interface. You can write a SQL query that operates on the columns defined in a given log format. For instance, if your format defines the Putting it all together, the query might look something like this: ;SELECT timeslice(log_time_msecs, '5m') AS slice, process, logger, count(1) AS c FROM myapp_log GROUP BY slice, prc, fi ORDER BY slice, process, c DESC This will query the messages that match |
Beta Was this translation helpful? Give feedback.
-
Can i get a list of "top loggers" by process in a timeframe?
Beta Was this translation helpful? Give feedback.
All reactions