Description
Broken out from here
Currently, the config has a default of "startPattern": "Initializing cgroup subsys cpuset",
This pattern is meant to detect a node's boot process. Prior to the 4.5 kernel, this message was typically printed during boot of a node. After 4.5 however, due to this change, it is quite unlikely for that message to appear.
Furthermore, there's rarely a reason to detect whether a message is for the current boot in such a fragile way.
With the kern.log
reader, every message is for the current boot because kern.log is usually handled where each kern.log
file corresponds to one boot (e.g. kern.log
is this boot, kern.log.1
is the boot before, kern.log.2.gz
the one before, etc). (EDIT: I'm wrong about this for gci at least)
With journald, the boot id is annotated in messages, and so it can accurately be correlated with the current boot id (see the "_BOOT_ID" record in journald messages).
With a kmsg reader, all messages will only be the current boot because kmsg is not persistent.
In none of those cases is startPattern
useful. Each kernel log parsing plugin should be responsible for doing the right thing itself I think.