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
Prometheus 3.0 scraper, introduced in the otel-collector 0.120.0, has the timestamp creation option set to true by default (see source).
Setting this option to true has performance implications in high-traffic environments. We observed some performance degradation in our high-traffic DaemonSet deployments due to this option. After analyzing CPU usage with a profiler, we found that timestamp creation is responsible for the performance drop. In our case, we don't need this option, so I created a PR to allow control of this option via a configuration flag.