Computer Tips - journalctl: see entries by program name (not unit name)

Date: 2025jun21 OS: Linux Program: journalctl Keywords: systemd, syslog Q. journalctl: see entries by program name (not unit name) A. You can do this with:
journalctl _COMM=myprogram
(Replace myprogram with the program you are interested in.) It was probably the first parameter to an openlog("myprogram", ...) function call. (Its more common to list by unit name, eg: `journalctl -u crond`)