Skip to content

Commit 8039d49

Browse files
authored
host-profiler: update the opentelemetry-ebpf-profiler to pull fixes (#45749)
### What does this PR do? update the version used of the opentelemetry-ebpf-profiler to pull fixes ### Motivation this should fix: - the reporter jitter should be 5% instead of 20% - the profile durations should align with wall clock time and report interval instead of the timestamps of the samples ### Describe how you validated your changes Tested locally everything works as expected. ### Additional Notes Co-authored-by: nayef.ghattas <nayef.ghattas@datadoghq.com>
1 parent b41c751 commit 8039d49

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

comp/host-profiler/collector/impl/receiver/config.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ func defaultConfig() component.Config {
9797
cfg.Tracers = getDefaultTracersString()
9898
// 60s batches more samples per report, improving compression and reducing upload bandwidth
9999
cfg.ReporterInterval = 60 * time.Second
100+
// Default jitter is 20%, which makes sense for 5s intervals (~1s variation).
101+
// With 60s intervals, 20% would mean ~12s variation, so we reduce to 5% (~3s).
102+
cfg.ReporterJitter = 0.05
100103

101104
return Config{
102105
EbpfCollectorConfig: cfg,

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ replace (
2525
// To update the Datadog/opentelemetry-ebpf-profiler dependency on latest commit on datadog branch, change the following line to:
2626
// replace go.opentelemetry.io/ebpf-profiler => github.com/DataDog/opentelemetry-ebpf-profiler datadog
2727
// and run `go mod tidy`
28-
go.opentelemetry.io/ebpf-profiler => github.com/DataDog/opentelemetry-ebpf-profiler v0.0.0-20251209111023-a403a55f78da
28+
go.opentelemetry.io/ebpf-profiler => github.com/DataDog/opentelemetry-ebpf-profiler v0.0.202602-0.20260130121113-9fabd54fb605
2929
)
3030

3131
require (

go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)