Extract selected fields into tab-separated text.
Section: Logs and Reporting
Turn JSON logs into TSV
bash
bash
cat app.log | jq -r '[.timestamp, .level, .message] | @tsv'Explanation
Great for quick grep-friendly tabular output.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Logs and Reporting