Filebeat io.pressure no such file or directory issue

I have multiple Linux servers and Filebeat 7.16.3.
I get this log on all servers and it throws the log every 1-2 min.

2025-03-31T13:00:18.519+0200    ERROR   metrics/metrics.go:380  error getting cgroup stats: error fetching stats for controller io: error fetching IO stats: error fetching io.pressure for path /sys/fs/cgroup/system.slice/filebeat.service:: open /sys/fs/cgroup/system.slice/filebeat.service/io.pressure: no such file or directory

This is my filebeat.yml

# Filebeat version 7.16.3

# ============================== Filebeat Inputs ===============================
filebeat.inputs:
  - type: filestream
    paths:
      - /../logs/*.log
    fields:
      application: myApp
    include_lines: ['error', 'ERROR', 'FATAL', 'INFO', 'WARN']
    enabled: true

# ============================== Logstash Output ===============================

output.logstash:
  # Array of hosts to connect to.
  hosts: ["myDomain:5044"]
  loadbalance: true
  bulk_max_size: 1024

# ============================== Filebeat Logging ==============================
logging.level: info
logging.to_files: true
logging.files:
  # Max size limit of log file as default 10485760=10 MB
  rotateeverybytes: 10485760
  path: /../filebeat/logs
  name: filebeat.log
  keepfiles: 7
  permissions: 436
  registry_file: /../filebeat/data/registry

# ============================== General Settings ==============================
shipper: null
uid: xxx

# ============================== Error Fix ==============================
# glibc 
seccomp:
  default_action: allow
  syscalls:
    - action: allow
      names:
        - rseq