verifyfirst

preflight · 5 checks

I read the logs and saw no errors

Log output, journal or stdout was inspected for errors.

Before you call it done

  1. Confirm the level you filtered on is the level the app writes.journalctl -u UNIT -o json | jq -r .PRIORITY | sort | uniq -cguards against NS-067 NS-029
  2. Confirm logging was configured before the first record.logging.basicConfig is a no-op once a handler exists; pass force=Trueguards against NS-033 NS-034
  3. Check nothing was dropped by rate limiting or rotation.Look for suppression notices; check the daemon is not writing to a deleted inode.guards against NS-032 NS-028
  4. Check output was flushed rather than lost with the process.A killed process discards unflushed stdout; run with unbuffered output.guards against NS-031 NS-035
  5. Check the journal survives a reboot before relying on it.journalctl --list-boots; /var/log/journal must exist for persistenceguards against NS-068

Plain text: /recipes.txt · all tasks