You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
otel_collector_processors:
memory_limiter:
# 75% of maximum memory up to 1Glimit_mib: "{{ (ansible_facts['memtotal_mb'] * 0.75) | round | int }}"# 25% of limit up to 1Gspike_limit_mib: "{{ (ansible_facts['memtotal_mb'] * 0.25) | round | int }}"check_interval: 5s
In config.yaml, we have values with single quotes, which leads to an error at the start.
In ansible role:
In config.yaml, we have values with single quotes, which leads to an error at the start.
I have changed in
otel_collector.service.j2
to
May someone have a better solutions?
The text was updated successfully, but these errors were encountered: