Hi, Logstash (7.7.0) all time (every 5 sec) prints information about missing files (logstash is working, but has some memory leak - I'm not sure is that correlated):
[DEBUG][logstash.instrument.periodicpoller.cgroup.cpuresource] File /sys/fs/cgroup/cpu/cpu.cfs_period_us cannot be found, try providing an override 'ls.cgroup.cpu.path.override' in the Logstash JAVA_OPTS environment variable
[DEBUG][logstash.instrument.periodicpoller.cgroup.cpuresource] File /sys/fs/cgroup/cpu/cpu.cfs_quota_us cannot be found, try providing an override 'ls.cgroup.cpu.path.override' in the Logstash JAVA_OPTS environment variable
[DEBUG][logstash.instrument.periodicpoller.jvm] collector name {:name=>"ParNew"}
[DEBUG][logstash.instrument.periodicpoller.cgroup.cpuresource] File /sys/fs/cgroup/cpu/cpu.stat cannot be found, try providing an override 'ls.cgroup.cpu.path.override' in the Logstash JAVA_OPTS environment variable
[DEBUG][logstash.instrument.periodicpoller.jvm] collector name {:name=>"ConcurrentMarkSweep"}
I found information why that files are not in raspbian, kerner compilation must have CONFIG_CFS_BANDWIDTH, but default it's disabled.
So I wondering if it's a posibility to workaround it (eg. create that files with some values manualy and force logstash to using them). But I'm not sure what is a role of that files in Logstash, and what value should be there.
I want to avoid recompiling kerner with that flag.