Im logging a lot with iptables and to put my logs in a separate file I have put a couple rules in /etc/rsyslog.d/iptables.conf
:msg, startswith, "iptables: " -/var/log/iptables.log
& ~
:msg, regex, "^\[ *[0-9]*\.[0-9]*\] iptables: " -/var/log/iptables.log
& ~
This removes the logs from /var/log/{kern.log,daemon.log,messages} but when I issue journalctl -xe all the iptables logs show up there - so what file does journalctl read from and how can I remove the iptables logs from it?