sudo journalctl -u myapp --since today -p warning

Category: VPS Management

sudo journalctl -u myapp --since today -p warning

Show today's app warnings and errors

Combines two filters: --since today limits the window to the current day, and -p warning keeps only entries at warning priority or higher, hiding routine info chatter. The result is a short list of things that actually need attention after a deploy. Raise to -p err for errors only.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.