Live data from Hacker News

Ask HN: What do you use to view logs?

news.ycombinator.com

1–10 of 11 posts

Ask HN: What do you use to view logs?

#1
Looking for solutions out there, or recommendations for macOS. Specifically, static log files (structured JSON) that is easy to filter and has color coding (log levels).

What I am finding is that there are mainly "tail" type log viewers via the terminal, or cloud based. I'm looking for something local I can install.

Re: Ask HN: What do you use to view logs?

#2
I guess many people use Graylog, Splunk or similar web-based systems (which can be self-hosted if you like) and are content with that. Not sure if there are any readymade applications for using locally on your Mac.

Maybe you can hack something together with jq + Bash + awk etc?

These tools might also be useful:

https://kantord.github.io/emuto/

https://github.com/antonmedv/fx

Best of luck!

Re: Ask HN: What do you use to view logs?

#4
post #2

I guess many people use Graylog, Splunk or similar web-based systems (which can be self-hosted if you like) and are content with that. Not sure if there are any readymade applications for using locally on your Mac. Maybe you can hack something together with jq + Bash + awk etc? These tools might also be useful: https://kantord.github.io/emuto/ https://github.com/antonmedv/fx Best of luck!

appreciate the info.. will check these out

Re: Ask HN: What do you use to view logs?

#8
Lame but powerful option: `tail -f /logfile.log | grep -A10 -B10 `. (prints 10 lines before & after search lines). The most powerful feature I've had in log management is the ability to search for what was interesting, and no tool can provide you a "this is interesting" button. If you've got performance concerns ripgrep is a drop-in grep replacement that's very fast.

Re: Ask HN: What do you use to view logs?

#10
The Logfile Navigator (https://lnav.org) is a TUI for viewing log files that can be configured to process structured JSON files. It has quite a few features, like filtering and color coding.

The documentation for writing a format file is here -- https://docs.lnav.org/en/latest/formats.html

The format file tells lnav what common fields are in the log messages and how to format them into plaintext for display. Here's an example configuration for JSON logs -- https://github.com/tstack/fullsail_lnav_config/blob/master/f...

Post reply on HN