Skip to content

coord run-log (full) — 2026-04-28 14:59#50013

Draft
ellataira wants to merge 9 commits intoella/claude-coordinator-harnessfrom
claude/observer-full-20260428T1459
Draft

coord run-log (full) — 2026-04-28 14:59#50013
ellataira wants to merge 9 commits intoella/claude-coordinator-harnessfrom
claude/observer-full-20260428T1459

Conversation

@ellataira
Copy link
Copy Markdown
Contributor

@ellataira ellataira commented Apr 28, 2026

Coordinator harness run-log.

seeded filters

  • Mode: full
  • Scratch branch: claude/observer-full-20260428T1459
  • PR base: ella/claude-coordinator-harness (harness + observer; PR diff = ships only)
  • Upstream merge source: q-branch-observer
  • Started: 2026-04-28T14:59:27

This PR is the bidirectional control channel: status comments posted by the coordinator; steering comments by the operator. Each shipped candidate becomes one commit on this branch, making the run a self-contained eval-matrix entry diffable against ella/claude-coordinator-harness.

ellataira and others added 9 commits April 20, 2026 11:10
## Summary

Fixes `--seed` CLI flag in all four eval invoke tasks:
`q.eval-bayesian`, `q.eval-combinations`, `q.eval-pipeline`,
`q.eval-component`.

## Why

Invoke passes CLI args as strings when the default is `None`, regardless
of the `int` annotation. So `--seed 42` becomes the string `"42"` inside
the function.

Downstream behavior differs by library:

| Task | Downstream | Symptom |
|---|---|---|
| `eval_bayesian` | `optuna.TPESampler()` → numpy `RandomState.seed()` |
**Crashes** — `TypeError: Cannot cast scalar from dtype('<U2') to
dtype('int64')` |
| `eval_combinations`, `eval_pipeline`, `eval_component` | Python stdlib
`random.Random(seed)` | **Silent** — stdlib hashes the string, producing
a different RNG sequence than programmatic `seed=42` |

The silent cases are arguably worse: someone reproduces a run with
`--seed 42`, gets different results than before, and doesn't know why.

The docs at [Evals & fine
tuning](https://datadoghq.atlassian.net/wiki/spaces/agent/pages/6528369095/)
advertise `--seed 42` as a supported flag, so this is fixing documented
behavior that was never reliable from CLI.

## Change

Coerce `seed` to `int` at function entry in all 4 tasks:

```python
if seed is not None:
    seed = int(seed)
```

## Test plan
- [x] Verified `dda inv --dep=optuna q.eval-bayesian --only bocpd
--n-trials 50 --seed 42 --scenarios ...` succeeds (manual reproduction)
- [x] Passing no `--seed` still works (the `None` path is unchanged)
- [ ] `q.eval-combinations`, `q.eval-pipeline`, `q.eval-component` not
individually re-run, but the fix is a pure coercion added before
existing behavior

🤖 Generated with [Claude Code](https://claude.com/claude-code)
### What does this PR do?

This adds a new lookahead directory for custom gensim scenarios owned by
q branch like this
[one](DataDog/gensim-episodes#93).

### Motivation

### Describe how you validated your changes

### Additional Notes
## Summary

The testbench's `GetLogAnomalies()` only matched anomalies with
`AnomalyTypeLog`, so bocpd/scanmw/scanwelch detections on
`log_pattern_extractor` and `log_metrics_extractor` series never
appeared in `/api/log-anomalies` or `logAnomalyCount` — even though the
live observer's `notify.go` already treats them as log anomalies via
`isLogDerivedAnomaly()`.

Apply the same `|| isLogDerivedAnomaly(a)` pattern the live path uses,
keeping testbench and live observer classification logic in sync. No
changes to detectors or `AnomalyType` assignments.

## Changes

- `testbench.go`: extend log anomaly filter to include
`isLogDerivedAnomaly(a)` alongside `AnomalyTypeLog`

## Test plan

- [x] Builds clean (`go build ./comp/observer/...`)
- [x] Loaded 221_base_kubelet parquet in testbench — `logAnomalyCount`
went from 0 to 21, `/api/log-anomalies` returns bocpd detections on
`log_pattern_extractor` series
### What does this PR do?

Small utility because I'm lost sometimes...

### Motivation

### Describe how you validated your changes

### Additional Notes
…ics (#49903)

### What does this PR do?

Adds \`observer.ingest_metrics.enabled\` (default \`true\`) to drop
externally-ingested metrics at the handle factory while keeping logs and
log-derived virtual metrics flowing.

Wires the option into the gensim-eks runner via a
\`--disable-metrics-ingestion\` flag on \`inv aws.eks.gensim.submit\`,
setting both the env var and the Helm config field.

### Motivation

Enables log-only anomaly detection runs on gensim-eks without external
metrics.

### Describe how you validated your changes

461 observer unit tests pass. New tests cover drop behavior, virtual
metric passthrough, and template rendering for the new flag.

Manually tested on local build.

### Additional Notes

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
### What does this PR do?

This adds an option to disable metrics on eks task.
It also cleans the latest code for that.

### Motivation

### Describe how you validated your changes

### Additional Notes

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
… without logs agent (#49481)

## Summary

- New component at `comp/observer/logssource/` that pipes container logs
into the observer when `logs_enabled: false`, with no logs shipped to
the Datadog backend
- Discovers containers automatically via workloadmeta — no customer
annotations required
- Reuses the existing container launcher, processor, and auditor; adds a
drain-only pipeline (no network sender)

## Design

- **Gated**: no-ops when observer/workloadmeta are unavailable. No new
config flag.
- **Filtering**: skips pause containers (image name heuristic) and
agent-own containers to avoid feedback loops
- **Container ID idempotency**: tracks active sources by container ID to
prevent dual-tailer on repeated workloadmeta Set events
- **Ordered shutdown**: `cancel → sp.wait() → launchersMgr.Stop() →
proc.Stop() → close(outputChan) → <-drainDone` — prevents deadlock
between launcher writes and processor drain

## Test plan

- [x] Unit tests (`dda inv test
--targets=./comp/observer/logssource/...`)
  - Filter function coverage (pause, agent image detection)
- `handleSet`/`handleUnset` behavior (running filter, idempotency,
re-add after removal)
  - Goroutine lifecycle — `goleak` verifies clean exit after cancel+wait
- [x] Live EKS run: confirmed all relevant containers tailed on startup,
logs delivering to observer (40k+ logs/run in recorded parquets)
- [x] Kubelet journald logs flow into observer

---------

Co-authored-by: Célian Raimbault <161456554+CelianR@users.noreply.github.com>
Co-authored-by: Celian Raimbault <celian.raimbault@datadoghq.com>
@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 0 · bocpd-anomaly-rank-postfilter (family anomaly-rank-postfilter-sketch)

Evaluating against detectors: bocpd.

Watchdog's AnomalyRank pattern: a detector should suppress alerts whose magnitude is


Budget: Run total: 3,301,173 tokens (~$50.73) (0.7% of 500,000,000 ceiling). Model mix: Opus 100%, Sonnet 0%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T15:04:58

@agent-platform-auto-pr
Copy link
Copy Markdown
Contributor

agent-platform-auto-pr Bot commented Apr 28, 2026

Gitlab CI Configuration Changes

Updated: .gitlab-ci.yml

⚠️ Diff too large to display on Github.

Changes Summary

Removed Modified Added Renamed
0 361 0 0

Updated: .gitlab/distribution.yml

⚠️ Diff too large to display on Github.

Changes Summary

Removed Modified Added Renamed
0 0 2 0

ℹ️ Diff available in the job log.

@agent-platform-auto-pr
Copy link
Copy Markdown
Contributor

agent-platform-auto-pr Bot commented Apr 28, 2026

Go Package Import Differences

Baseline: e5b320d
Comparison: 38d769d

binaryosarchchange
agentlinuxamd64
+61, -23
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps
-github.com/DataDog/datadog-agent/comp/snmptraps/config/def
-github.com/DataDog/datadog-agent/comp/snmptraps/config/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/config/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder/forwarderimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/listener
-github.com/DataDog/datadog-agent/comp/snmptraps/listener/listenerimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/def
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/packet
-github.com/DataDog/datadog-agent/comp/snmptraps/server
-github.com/DataDog/datadog-agent/comp/snmptraps/server/serverimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/status/def
-github.com/DataDog/datadog-agent/comp/snmptraps/status/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/zeebo/xxh3
+golang.org/x/exp/mmap
agentlinuxarm64
+61, -23
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps
-github.com/DataDog/datadog-agent/comp/snmptraps/config/def
-github.com/DataDog/datadog-agent/comp/snmptraps/config/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/config/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder/forwarderimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/listener
-github.com/DataDog/datadog-agent/comp/snmptraps/listener/listenerimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/def
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/packet
-github.com/DataDog/datadog-agent/comp/snmptraps/server
-github.com/DataDog/datadog-agent/comp/snmptraps/server/serverimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/status/def
-github.com/DataDog/datadog-agent/comp/snmptraps/status/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/zeebo/xxh3
+golang.org/x/exp/mmap
agentwindowsamd64
+67, -9
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/def
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/trace/semantics
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/xerrors
+golang.org/x/xerrors/internal
-gopkg.in/ini.v1
+hash/maphash
agentdarwinamd64
+69, -8
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/def
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/ebpf
+github.com/DataDog/datadog-agent/pkg/ebpf/bytecode
+github.com/DataDog/datadog-agent/pkg/network/config
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/exp/mmap
+golang.org/x/xerrors
+golang.org/x/xerrors/internal
agentdarwinarm64
+69, -8
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/def
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/ebpf
+github.com/DataDog/datadog-agent/pkg/ebpf/bytecode
+github.com/DataDog/datadog-agent/pkg/network/config
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/exp/mmap
+golang.org/x/xerrors
+golang.org/x/xerrors/internal
iot-agentlinuxamd64
+73, -23
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps
-github.com/DataDog/datadog-agent/comp/snmptraps/config/def
-github.com/DataDog/datadog-agent/comp/snmptraps/config/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/config/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder/forwarderimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/listener
-github.com/DataDog/datadog-agent/comp/snmptraps/listener/listenerimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/def
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/packet
-github.com/DataDog/datadog-agent/comp/snmptraps/server
-github.com/DataDog/datadog-agent/comp/snmptraps/server/serverimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/status/def
-github.com/DataDog/datadog-agent/comp/snmptraps/status/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-api-client-go/v2
+github.com/DataDog/datadog-api-client-go/v2/api/datadog
+github.com/DataDog/datadog-api-client-go/v2/api/datadogV2
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/golang/snappy
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/pierrec/lz4/v4
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/exp/mmap
+golang.org/x/exp/slices
+golang.org/x/oauth2
+golang.org/x/oauth2/internal
+golang.org/x/xerrors
+golang.org/x/xerrors/internal
+google.golang.org/protobuf/types/descriptorpb
iot-agentlinuxarm64
+73, -23
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps
-github.com/DataDog/datadog-agent/comp/snmptraps/config/def
-github.com/DataDog/datadog-agent/comp/snmptraps/config/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/config/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder
-github.com/DataDog/datadog-agent/comp/snmptraps/forwarder/forwarderimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/listener
-github.com/DataDog/datadog-agent/comp/snmptraps/listener/listenerimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/def
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/fx
-github.com/DataDog/datadog-agent/comp/snmptraps/oidresolver/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/packet
-github.com/DataDog/datadog-agent/comp/snmptraps/server
-github.com/DataDog/datadog-agent/comp/snmptraps/server/serverimpl
-github.com/DataDog/datadog-agent/comp/snmptraps/status/def
-github.com/DataDog/datadog-agent/comp/snmptraps/status/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-api-client-go/v2
+github.com/DataDog/datadog-api-client-go/v2/api/datadog
+github.com/DataDog/datadog-api-client-go/v2/api/datadogV2
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/golang/snappy
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/pierrec/lz4/v4
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/exp/mmap
+golang.org/x/exp/slices
+golang.org/x/oauth2
+golang.org/x/oauth2/internal
+golang.org/x/xerrors
+golang.org/x/xerrors/internal
+google.golang.org/protobuf/types/descriptorpb
heroku-agentlinuxamd64
+70, -9
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/def
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/fx
+github.com/DataDog/datadog-agent/comp/anomalydetection/recorder/impl
+github.com/DataDog/datadog-agent/comp/healthplatform/impl/issues/rofspermissions
+github.com/DataDog/datadog-agent/comp/observer
+github.com/DataDog/datadog-agent/comp/observer/def
+github.com/DataDog/datadog-agent/comp/observer/fx
+github.com/DataDog/datadog-agent/comp/observer/impl
+github.com/DataDog/datadog-agent/comp/observer/impl/hfrunner
+github.com/DataDog/datadog-agent/comp/observer/impl/patterns
+github.com/DataDog/datadog-agent/comp/observer/logssource/def
+github.com/DataDog/datadog-agent/comp/observer/logssource/fx
+github.com/DataDog/datadog-agent/comp/observer/logssource/impl
+github.com/DataDog/datadog-agent/comp/privateactionrunner/def
+github.com/DataDog/datadog-agent/comp/privateactionrunner/status/statusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter
-github.com/DataDog/datadog-agent/comp/snmptraps/formatter/formatterimpl
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/def
+github.com/DataDog/datadog-agent/comp/snmptraps/formatter/impl
-github.com/DataDog/datadog-agent/comp/updater/localapiclient
-github.com/DataDog/datadog-agent/comp/updater/localapiclient/localapiclientimpl
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/def
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/fx
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/impl
+github.com/DataDog/datadog-agent/pkg/collector/corechecks/containers/kata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/andybalholm/brotli
+github.com/andybalholm/brotli/matchfinder
+github.com/apache/arrow-go/v18/arrow
+github.com/apache/arrow-go/v18/arrow/array
+github.com/apache/arrow-go/v18/arrow/arrio
+github.com/apache/arrow-go/v18/arrow/bitutil
+github.com/apache/arrow-go/v18/arrow/compute
+github.com/apache/arrow-go/v18/arrow/compute/exec
+github.com/apache/arrow-go/v18/arrow/decimal
+github.com/apache/arrow-go/v18/arrow/decimal128
+github.com/apache/arrow-go/v18/arrow/decimal256
+github.com/apache/arrow-go/v18/arrow/encoded
+github.com/apache/arrow-go/v18/arrow/endian
+github.com/apache/arrow-go/v18/arrow/extensions
+github.com/apache/arrow-go/v18/arrow/flight
+github.com/apache/arrow-go/v18/arrow/flight/gen/flight
+github.com/apache/arrow-go/v18/arrow/float16
+github.com/apache/arrow-go/v18/arrow/internal
+github.com/apache/arrow-go/v18/arrow/ipc
+github.com/apache/arrow-go/v18/arrow/memory
+github.com/apache/arrow-go/v18/arrow/scalar
+github.com/apache/arrow-go/v18/parquet
+github.com/apache/arrow-go/v18/parquet/compress
+github.com/apache/arrow-go/v18/parquet/file
+github.com/apache/arrow-go/v18/parquet/metadata
+github.com/apache/arrow-go/v18/parquet/pqarrow
+github.com/apache/arrow-go/v18/parquet/schema
+github.com/apache/arrow-go/v18/parquet/variant
+github.com/apache/thrift/lib/go/thrift
+github.com/goccy/go-json
+github.com/google/flatbuffers/go
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/cpuid/v2
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/exp/mmap
+golang.org/x/xerrors
+golang.org/x/xerrors/internal
+google.golang.org/protobuf/types/descriptorpb
cluster-agentlinuxamd64
+15, -11
+github.com/DataDog/datadog-agent/comp/observer/def
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-github.com/DataDog/datadog-agent/pkg/trace/sampler
-github.com/DataDog/datadog-agent/pkg/trace/transform
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
-go.opentelemetry.io/otel/semconv/v1.26.0
-gopkg.in/ini.v1
cluster-agentlinuxarm64
+15, -11
+github.com/DataDog/datadog-agent/comp/observer/def
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-github.com/DataDog/datadog-agent/pkg/trace/sampler
-github.com/DataDog/datadog-agent/pkg/trace/transform
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
-go.opentelemetry.io/otel/semconv/v1.26.0
-gopkg.in/ini.v1
cluster-agent-cloudfoundrylinuxamd64
+7, -6
+github.com/DataDog/datadog-agent/comp/observer/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-github.com/DataDog/datadog-agent/pkg/trace/sampler
-github.com/DataDog/datadog-agent/pkg/trace/transform
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
-go.opentelemetry.io/otel/semconv/v1.26.0
-gopkg.in/ini.v1
cluster-agent-cloudfoundrylinuxarm64
+7, -6
+github.com/DataDog/datadog-agent/comp/observer/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-github.com/DataDog/datadog-agent/pkg/trace/sampler
-github.com/DataDog/datadog-agent/pkg/trace/transform
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
-go.opentelemetry.io/otel/semconv/v1.26.0
-gopkg.in/ini.v1
dogstatsdlinuxamd64
+2, -1
+github.com/DataDog/datadog-agent/comp/observer/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
dogstatsdlinuxarm64
+2, -1
+github.com/DataDog/datadog-agent/comp/observer/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
process-agentlinuxamd64
+3, -1
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
process-agentlinuxarm64
+3, -1
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
process-agentwindowsamd64
+3, -2
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
process-agentdarwinamd64
+6, -2
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/ebpf
+github.com/DataDog/datadog-agent/pkg/ebpf/bytecode
+github.com/DataDog/datadog-agent/pkg/network/config
process-agentdarwinarm64
+6, -2
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/ebpf
+github.com/DataDog/datadog-agent/pkg/ebpf/bytecode
+github.com/DataDog/datadog-agent/pkg/network/config
heroku-process-agentlinuxamd64
+3, -1
-github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/rcstatusimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcstatus/impl
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
security-agentlinuxamd64
+1, -1
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
security-agentlinuxarm64
+1, -1
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
security-agentwindowsamd64
+1, -1
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
sbomgenlinuxamd64
+1, -5
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
-github.com/DataDog/datadog-agent/pkg/util/funcs
-github.com/DataDog/datadog-agent/pkg/util/kernel
-github.com/DataDog/datadog-agent/pkg/util/safeelf
-github.com/shirou/gopsutil/v4/host
sbomgenlinuxarm64
+1, -5
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
-github.com/DataDog/datadog-agent/pkg/util/funcs
-github.com/DataDog/datadog-agent/pkg/util/kernel
-github.com/DataDog/datadog-agent/pkg/util/safeelf
-github.com/shirou/gopsutil/v4/host
system-probelinuxamd64
+6, -0
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
system-probelinuxarm64
+6, -0
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
system-probewindowsamd64
+6, -1
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
system-probedarwinamd64
+65, -1
+debug/dwarf
+debug/elf
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/eventmonitor
+github.com/DataDog/datadog-agent/pkg/eventmonitor/config
+github.com/DataDog/datadog-agent/pkg/network/config
+github.com/DataDog/datadog-agent/pkg/network/encoding/marshal
+github.com/DataDog/datadog-agent/pkg/network/filter
+github.com/DataDog/datadog-agent/pkg/network/indexedset
+github.com/DataDog/datadog-agent/pkg/network/protocols/telemetry
+github.com/DataDog/datadog-agent/pkg/network/sender
+github.com/DataDog/datadog-agent/pkg/network/tracer
+github.com/DataDog/datadog-agent/pkg/network/tracer/connection
+github.com/DataDog/datadog-agent/pkg/network/tracer/connection/ebpfless
+github.com/DataDog/datadog-agent/pkg/process/procutil
+github.com/DataDog/datadog-agent/pkg/security/config
+github.com/DataDog/datadog-agent/pkg/security/events
+github.com/DataDog/datadog-agent/pkg/security/metrics
+github.com/DataDog/datadog-agent/pkg/security/probe
+github.com/DataDog/datadog-agent/pkg/security/probe/config
+github.com/DataDog/datadog-agent/pkg/security/probe/kfilters
+github.com/DataDog/datadog-agent/pkg/security/proto/api
+github.com/DataDog/datadog-agent/pkg/security/resolvers/tags
+github.com/DataDog/datadog-agent/pkg/security/secl/containerutils
+github.com/DataDog/datadog-agent/pkg/security/secl/log
+github.com/DataDog/datadog-agent/pkg/security/secl/model
+github.com/DataDog/datadog-agent/pkg/security/secl/model/sharedconsts
+github.com/DataDog/datadog-agent/pkg/security/secl/model/usersession
+github.com/DataDog/datadog-agent/pkg/security/secl/model/utils
+github.com/DataDog/datadog-agent/pkg/security/secl/rules
+github.com/DataDog/datadog-agent/pkg/security/secl/validators
+github.com/DataDog/datadog-agent/pkg/security/seclog
+github.com/DataDog/datadog-agent/pkg/security/utils
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/Masterminds/semver/v3
+github.com/cilium/ebpf
+github.com/cilium/ebpf/asm
+github.com/cilium/ebpf/btf
+github.com/cilium/ebpf/internal
+github.com/google/gopacket/pcap
+github.com/hashicorp/golang-lru/v2/expirable
+github.com/hashicorp/golang-lru/v2/internal
+github.com/hashicorp/golang-lru/v2/simplelru
+github.com/josharian/intern
+github.com/mailru/easyjson
+github.com/mailru/easyjson/buffer
+github.com/mailru/easyjson/jlexer
+github.com/mailru/easyjson/jwriter
+github.com/planetscale/vtprotobuf/protohelpers
+github.com/planetscale/vtprotobuf/types/known/timestamppb
+github.com/skydive-project/go-debouncer
+go/ast
+go/build/constraint
+go/doc/comment
+go/format
+go/parser
+go/printer
+go/scanner
+hash/maphash
+k8s.io/apimachinery/pkg/util/sets
+structs
system-probedarwinarm64
+65, -1
+debug/dwarf
+debug/elf
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/eventmonitor
+github.com/DataDog/datadog-agent/pkg/eventmonitor/config
+github.com/DataDog/datadog-agent/pkg/network/config
+github.com/DataDog/datadog-agent/pkg/network/encoding/marshal
+github.com/DataDog/datadog-agent/pkg/network/filter
+github.com/DataDog/datadog-agent/pkg/network/indexedset
+github.com/DataDog/datadog-agent/pkg/network/protocols/telemetry
+github.com/DataDog/datadog-agent/pkg/network/sender
+github.com/DataDog/datadog-agent/pkg/network/tracer
+github.com/DataDog/datadog-agent/pkg/network/tracer/connection
+github.com/DataDog/datadog-agent/pkg/network/tracer/connection/ebpfless
+github.com/DataDog/datadog-agent/pkg/process/procutil
+github.com/DataDog/datadog-agent/pkg/security/config
+github.com/DataDog/datadog-agent/pkg/security/events
+github.com/DataDog/datadog-agent/pkg/security/metrics
+github.com/DataDog/datadog-agent/pkg/security/probe
+github.com/DataDog/datadog-agent/pkg/security/probe/config
+github.com/DataDog/datadog-agent/pkg/security/probe/kfilters
+github.com/DataDog/datadog-agent/pkg/security/proto/api
+github.com/DataDog/datadog-agent/pkg/security/resolvers/tags
+github.com/DataDog/datadog-agent/pkg/security/secl/containerutils
+github.com/DataDog/datadog-agent/pkg/security/secl/log
+github.com/DataDog/datadog-agent/pkg/security/secl/model
+github.com/DataDog/datadog-agent/pkg/security/secl/model/sharedconsts
+github.com/DataDog/datadog-agent/pkg/security/secl/model/usersession
+github.com/DataDog/datadog-agent/pkg/security/secl/model/utils
+github.com/DataDog/datadog-agent/pkg/security/secl/rules
+github.com/DataDog/datadog-agent/pkg/security/secl/validators
+github.com/DataDog/datadog-agent/pkg/security/seclog
+github.com/DataDog/datadog-agent/pkg/security/utils
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/Masterminds/semver/v3
+github.com/cilium/ebpf
+github.com/cilium/ebpf/asm
+github.com/cilium/ebpf/btf
+github.com/cilium/ebpf/internal
+github.com/google/gopacket/pcap
+github.com/hashicorp/golang-lru/v2/expirable
+github.com/hashicorp/golang-lru/v2/internal
+github.com/hashicorp/golang-lru/v2/simplelru
+github.com/josharian/intern
+github.com/mailru/easyjson
+github.com/mailru/easyjson/buffer
+github.com/mailru/easyjson/jlexer
+github.com/mailru/easyjson/jwriter
+github.com/planetscale/vtprotobuf/protohelpers
+github.com/planetscale/vtprotobuf/types/known/timestamppb
+github.com/skydive-project/go-debouncer
+go/ast
+go/build/constraint
+go/doc/comment
+go/format
+go/parser
+go/printer
+go/scanner
+hash/maphash
+k8s.io/apimachinery/pkg/util/sets
+structs
trace-agentlinuxamd64
+3, -2
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-gopkg.in/ini.v1
trace-agentlinuxarm64
+3, -2
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-gopkg.in/ini.v1
trace-agentwindowsamd64
+3, -2
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-gopkg.in/ini.v1
trace-agentdarwinamd64
+3, -2
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-gopkg.in/ini.v1
trace-agentdarwinarm64
+3, -2
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-gopkg.in/ini.v1
heroku-trace-agentlinuxamd64
+3, -2
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
-gopkg.in/ini.v1
otel-agentlinuxamd64
+87, -2
+code.cloudfoundry.org/garden
+code.cloudfoundry.org/garden/client
+code.cloudfoundry.org/garden/client/connection
+code.cloudfoundry.org/garden/routes
+code.cloudfoundry.org/garden/transport
+code.cloudfoundry.org/lager
+github.com/DataDog/datadog-agent/comp/core/hostname
+github.com/DataDog/datadog-agent/comp/core/hostname/hostnameimpl
+github.com/DataDog/datadog-agent/comp/core/tagger/collectors
+github.com/DataDog/datadog-agent/comp/core/tagger/common
+github.com/DataDog/datadog-agent/comp/core/tagger/fx
+github.com/DataDog/datadog-agent/comp/core/tagger/impl
+github.com/DataDog/datadog-agent/comp/core/tagger/k8s_metadata
+github.com/DataDog/datadog-agent/comp/core/tagger/mock
+github.com/DataDog/datadog-agent/comp/core/tagger/proto
+github.com/DataDog/datadog-agent/comp/core/tagger/server
+github.com/DataDog/datadog-agent/comp/core/tagger/subscriber
+github.com/DataDog/datadog-agent/comp/core/tagger/taglist
+github.com/DataDog/datadog-agent/comp/core/tagger/tagstore
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/baseimpl
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/catalog
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/fx
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/impl
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/impl/parse
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/program
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/proto
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/telemetry
+github.com/DataDog/datadog-agent/comp/core/workloadmeta/collectors/catalog-otel
+github.com/DataDog/datadog-agent/comp/core/workloadmeta/collectors/util
+github.com/DataDog/datadog-agent/comp/dogstatsd/packets
+github.com/DataDog/datadog-agent/comp/metadata/host
+github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl
+github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl/hosttags
+github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl/utils
+github.com/DataDog/datadog-agent/comp/metadata/inventoryhost
+github.com/DataDog/datadog-agent/comp/metadata/inventoryhost/inventoryhostimpl
+github.com/DataDog/datadog-agent/comp/metadata/packagesigning/utils
+github.com/DataDog/datadog-agent/comp/metadata/resources
+github.com/DataDog/datadog-agent/comp/otelcol/dogtelextension/def
+github.com/DataDog/datadog-agent/comp/otelcol/dogtelextension/impl
+github.com/DataDog/datadog-agent/comp/otelcol/dogtelextension/impl/metrics
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
+github.com/DataDog/datadog-agent/pkg/collector/python
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/gohai
+github.com/DataDog/datadog-agent/pkg/gohai/cpu
+github.com/DataDog/datadog-agent/pkg/gohai/filesystem
+github.com/DataDog/datadog-agent/pkg/gohai/memory
+github.com/DataDog/datadog-agent/pkg/gohai/network
+github.com/DataDog/datadog-agent/pkg/gohai/platform
+github.com/DataDog/datadog-agent/pkg/gohai/processes
+github.com/DataDog/datadog-agent/pkg/gohai/processes/gops
+github.com/DataDog/datadog-agent/pkg/gohai/utils
+github.com/DataDog/datadog-agent/pkg/gpu/tags
+github.com/DataDog/datadog-agent/pkg/logs/status
+github.com/DataDog/datadog-agent/pkg/logs/tailers
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/alibaba
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/cloudfoundry
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/ibm
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/kubernetes
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/oracle
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/tencent
+github.com/DataDog/datadog-agent/pkg/util/containers/cri
+github.com/DataDog/datadog-agent/pkg/util/containers/metadata
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/containerd
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/cri
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/docker
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/ecsfargate
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/ecsmanagedinstances
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/kubelet
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/provider
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/system
+github.com/DataDog/datadog-agent/pkg/util/gpu
+github.com/DataDog/datadog-agent/pkg/util/kubernetes/cloudprovider
+github.com/DataDog/datadog-agent/pkg/util/kubernetes/clusterinfo
+github.com/DataDog/datadog-agent/pkg/util/net
+github.com/DataDog/datadog-agent/pkg/util/procfilestats
+github.com/DataDog/datadog-agent/pkg/util/size
+github.com/DataDog/datadog-agent/pkg/util/tags
+github.com/DataDog/datadog-agent/pkg/util/tmplvar
+github.com/DataDog/datadog-agent/pkg/util/trie
+github.com/bmizerany/pat
+github.com/tedsuo/rata
otel-agentlinuxarm64
+87, -2
+code.cloudfoundry.org/garden
+code.cloudfoundry.org/garden/client
+code.cloudfoundry.org/garden/client/connection
+code.cloudfoundry.org/garden/routes
+code.cloudfoundry.org/garden/transport
+code.cloudfoundry.org/lager
+github.com/DataDog/datadog-agent/comp/core/hostname
+github.com/DataDog/datadog-agent/comp/core/hostname/hostnameimpl
+github.com/DataDog/datadog-agent/comp/core/tagger/collectors
+github.com/DataDog/datadog-agent/comp/core/tagger/common
+github.com/DataDog/datadog-agent/comp/core/tagger/fx
+github.com/DataDog/datadog-agent/comp/core/tagger/impl
+github.com/DataDog/datadog-agent/comp/core/tagger/k8s_metadata
+github.com/DataDog/datadog-agent/comp/core/tagger/mock
+github.com/DataDog/datadog-agent/comp/core/tagger/proto
+github.com/DataDog/datadog-agent/comp/core/tagger/server
+github.com/DataDog/datadog-agent/comp/core/tagger/subscriber
+github.com/DataDog/datadog-agent/comp/core/tagger/taglist
+github.com/DataDog/datadog-agent/comp/core/tagger/tagstore
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/baseimpl
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/catalog
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/fx
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/impl
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/impl/parse
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/program
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/proto
+github.com/DataDog/datadog-agent/comp/core/workloadfilter/telemetry
+github.com/DataDog/datadog-agent/comp/core/workloadmeta/collectors/catalog-otel
+github.com/DataDog/datadog-agent/comp/core/workloadmeta/collectors/util
+github.com/DataDog/datadog-agent/comp/dogstatsd/packets
+github.com/DataDog/datadog-agent/comp/metadata/host
+github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl
+github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl/hosttags
+github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl/utils
+github.com/DataDog/datadog-agent/comp/metadata/inventoryhost
+github.com/DataDog/datadog-agent/comp/metadata/inventoryhost/inventoryhostimpl
+github.com/DataDog/datadog-agent/comp/metadata/packagesigning/utils
+github.com/DataDog/datadog-agent/comp/metadata/resources
+github.com/DataDog/datadog-agent/comp/otelcol/dogtelextension/def
+github.com/DataDog/datadog-agent/comp/otelcol/dogtelextension/impl
+github.com/DataDog/datadog-agent/comp/otelcol/dogtelextension/impl/metrics
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
+github.com/DataDog/datadog-agent/pkg/collector/python
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/gohai
+github.com/DataDog/datadog-agent/pkg/gohai/cpu
+github.com/DataDog/datadog-agent/pkg/gohai/filesystem
+github.com/DataDog/datadog-agent/pkg/gohai/memory
+github.com/DataDog/datadog-agent/pkg/gohai/network
+github.com/DataDog/datadog-agent/pkg/gohai/platform
+github.com/DataDog/datadog-agent/pkg/gohai/processes
+github.com/DataDog/datadog-agent/pkg/gohai/processes/gops
+github.com/DataDog/datadog-agent/pkg/gohai/utils
+github.com/DataDog/datadog-agent/pkg/gpu/tags
+github.com/DataDog/datadog-agent/pkg/logs/status
+github.com/DataDog/datadog-agent/pkg/logs/tailers
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/alibaba
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/cloudfoundry
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/ibm
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/kubernetes
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/oracle
+github.com/DataDog/datadog-agent/pkg/util/cloudproviders/tencent
+github.com/DataDog/datadog-agent/pkg/util/containers/cri
+github.com/DataDog/datadog-agent/pkg/util/containers/metadata
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/containerd
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/cri
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/docker
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/ecsfargate
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/ecsmanagedinstances
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/kubelet
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/provider
+github.com/DataDog/datadog-agent/pkg/util/containers/metrics/system
+github.com/DataDog/datadog-agent/pkg/util/gpu
+github.com/DataDog/datadog-agent/pkg/util/kubernetes/cloudprovider
+github.com/DataDog/datadog-agent/pkg/util/kubernetes/clusterinfo
+github.com/DataDog/datadog-agent/pkg/util/net
+github.com/DataDog/datadog-agent/pkg/util/procfilestats
+github.com/DataDog/datadog-agent/pkg/util/size
+github.com/DataDog/datadog-agent/pkg/util/tags
+github.com/DataDog/datadog-agent/pkg/util/tmplvar
+github.com/DataDog/datadog-agent/pkg/util/trie
+github.com/bmizerany/pat
+github.com/tedsuo/rata
host-profilerlinuxamd64
+265, -1
+github.com/Azure/azure-sdk-for-go/sdk/azcore
+github.com/Azure/azure-sdk-for-go/sdk/azcore/arm
+github.com/Azure/azure-sdk-for-go/sdk/azcore/arm/policy
+github.com/Azure/azure-sdk-for-go/sdk/azcore/arm/runtime
+github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud
+github.com/Azure/azure-sdk-for-go/sdk/azcore/log
+github.com/Azure/azure-sdk-for-go/sdk/azcore/policy
+github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime
+github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming
+github.com/Azure/azure-sdk-for-go/sdk/azcore/to
+github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing
+github.com/Azure/azure-sdk-for-go/sdk/azidentity
+github.com/Azure/azure-sdk-for-go/sdk/azidentity/internal
+github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5
+github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/cache
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/confidential
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/errors
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/managedidentity
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/public
+github.com/Code-Hex/go-generics-cache
+github.com/Code-Hex/go-generics-cache/policy/clock
+github.com/Code-Hex/go-generics-cache/policy/fifo
+github.com/Code-Hex/go-generics-cache/policy/lfu
+github.com/Code-Hex/go-generics-cache/policy/lru
+github.com/Code-Hex/go-generics-cache/policy/mru
+github.com/Code-Hex/go-generics-cache/policy/simple
+github.com/DataDog/datadog-agent/comp/host-profiler/collector/impl/params
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
+github.com/alecthomas/units
+github.com/aws/aws-sdk-go-v2/service/ecs
+github.com/aws/aws-sdk-go-v2/service/ecs/document
+github.com/aws/aws-sdk-go-v2/service/ecs/types
+github.com/aws/aws-sdk-go-v2/service/lightsail
+github.com/aws/aws-sdk-go-v2/service/lightsail/types
+github.com/aws/smithy-go/document/json
+github.com/bboreham/go-loser
+github.com/cncf/xds/go/udpa/annotations
+github.com/cncf/xds/go/xds/annotations/v3
+github.com/cncf/xds/go/xds/core/v3
+github.com/coreos/go-systemd/v22/activation
+github.com/dennwc/varint
+github.com/digitalocean/godo
+github.com/digitalocean/godo/metrics
+github.com/edsrzf/mmap-go
+github.com/envoyproxy/go-control-plane/envoy/annotations
+github.com/envoyproxy/go-control-plane/envoy/config/core/v3
+github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3
+github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3
+github.com/envoyproxy/go-control-plane/envoy/type/v3
+github.com/envoyproxy/protoc-gen-validate/validate
+github.com/facette/natsort
+github.com/go-kit/log
+github.com/go-kit/log/level
+github.com/go-logfmt/logfmt
+github.com/go-openapi/analysis
+github.com/go-openapi/errors
+github.com/go-openapi/loads
+github.com/go-openapi/spec
+github.com/go-openapi/strfmt
+github.com/go-openapi/validate
+github.com/go-zookeeper/zk
+github.com/goccy/go-yaml
+github.com/goccy/go-yaml/ast
+github.com/goccy/go-yaml/lexer
+github.com/goccy/go-yaml/parser
+github.com/goccy/go-yaml/printer
+github.com/goccy/go-yaml/scanner
+github.com/goccy/go-yaml/token
+github.com/gogo/protobuf/gogoproto
+github.com/gogo/protobuf/protoc-gen-gogo/descriptor
+github.com/gogo/protobuf/types
+github.com/golang-jwt/jwt/v5
+github.com/google/go-cmp/cmp
+github.com/google/go-querystring/query
+github.com/gophercloud/gophercloud/v2
+github.com/gophercloud/gophercloud/v2/openstack
+github.com/gophercloud/gophercloud/v2/openstack/compute/v2/hypervisors
+github.com/gophercloud/gophercloud/v2/openstack/compute/v2/servers
+github.com/gophercloud/gophercloud/v2/openstack/identity/v2/tenants
+github.com/gophercloud/gophercloud/v2/openstack/identity/v2/tokens
+github.com/gophercloud/gophercloud/v2/openstack/identity/v3/ec2tokens
+github.com/gophercloud/gophercloud/v2/openstack/identity/v3/oauth1
+github.com/gophercloud/gophercloud/v2/openstack/identity/v3/tokens
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/l7policies
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/listeners
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/loadbalancers
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/monitors
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/pools
+github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/layer3/floatingips
+github.com/gophercloud/gophercloud/v2/openstack/networking/v2/ports
+github.com/gophercloud/gophercloud/v2/openstack/utils
+github.com/gophercloud/gophercloud/v2/pagination
+github.com/gorilla/websocket
+github.com/grafana/regexp
+github.com/grafana/regexp/syntax
+github.com/hashicorp/cronexpr
+github.com/hashicorp/go-retryablehttp
+github.com/hashicorp/nomad/api
+github.com/hashicorp/nomad/api/contexts
+github.com/hetznercloud/hcloud-go/v2/hcloud
+github.com/hetznercloud/hcloud-go/v2/hcloud/schema
+github.com/ionos-cloud/sdk-go/v6
+github.com/jpillora/backoff
+github.com/julienschmidt/httprouter
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/compress/s2
+github.com/klauspost/compress/snappy
+github.com/klauspost/compress/zlib
+github.com/kolo/xmlrpc
+github.com/kylelemons/godebug/diff
+github.com/kylelemons/godebug/pretty
+github.com/linode/linodego
+github.com/miekg/dns
+github.com/mwitkow/go-conntrack
+github.com/oklog/ulid
+github.com/oklog/ulid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus
+github.com/open-telemetry/opentelemetry-collector-contrib/processor/deltatocumulativeprocessor
+github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor
+github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver
+github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/internal
+github.com/ovh/go-ovh/ovh
+github.com/pkg/browser
+github.com/prometheus/alertmanager/api/v2/models
+github.com/prometheus/client_golang/exp/api/remote
+github.com/prometheus/client_golang/prometheus/promauto
+github.com/prometheus/client_golang/prometheus/testutil
+github.com/prometheus/client_golang/prometheus/testutil/promlint
+github.com/prometheus/client_golang/prometheus/testutil/promlint/validations
+github.com/prometheus/common/config
+github.com/prometheus/common/helpers/templates
+github.com/prometheus/common/promslog
+github.com/prometheus/common/route
+github.com/prometheus/common/server
+github.com/prometheus/common/version
+github.com/prometheus/exporter-toolkit/web
+github.com/prometheus/prometheus/config
+github.com/prometheus/prometheus/discovery
+github.com/prometheus/prometheus/discovery/aws
+github.com/prometheus/prometheus/discovery/azure
+github.com/prometheus/prometheus/discovery/consul
+github.com/prometheus/prometheus/discovery/digitalocean
+github.com/prometheus/prometheus/discovery/dns
+github.com/prometheus/prometheus/discovery/eureka
+github.com/prometheus/prometheus/discovery/file
+github.com/prometheus/prometheus/discovery/gce
+github.com/prometheus/prometheus/discovery/hetzner
+github.com/prometheus/prometheus/discovery/http
+github.com/prometheus/prometheus/discovery/ionos
+github.com/prometheus/prometheus/discovery/kubernetes
+github.com/prometheus/prometheus/discovery/linode
+github.com/prometheus/prometheus/discovery/marathon
+github.com/prometheus/prometheus/discovery/moby
+github.com/prometheus/prometheus/discovery/nomad
+github.com/prometheus/prometheus/discovery/openstack
+github.com/prometheus/prometheus/discovery/ovhcloud
+github.com/prometheus/prometheus/discovery/puppetdb
+github.com/prometheus/prometheus/discovery/refresh
+github.com/prometheus/prometheus/discovery/scaleway
+github.com/prometheus/prometheus/discovery/stackit
+github.com/prometheus/prometheus/discovery/targetgroup
+github.com/prometheus/prometheus/discovery/triton
+github.com/prometheus/prometheus/discovery/uyuni
+github.com/prometheus/prometheus/discovery/vultr
+github.com/prometheus/prometheus/discovery/xds
+github.com/prometheus/prometheus/discovery/zookeeper
+github.com/prometheus/prometheus/model/exemplar
+github.com/prometheus/prometheus/model/histogram
+github.com/prometheus/prometheus/model/labels
+github.com/prometheus/prometheus/model/metadata
+github.com/prometheus/prometheus/model/relabel
+github.com/prometheus/prometheus/model/rulefmt
+github.com/prometheus/prometheus/model/textparse
+github.com/prometheus/prometheus/model/timestamp
+github.com/prometheus/prometheus/model/value
+github.com/prometheus/prometheus/notifier
+github.com/prometheus/prometheus/plugins
+github.com/prometheus/prometheus/prompb
+github.com/prometheus/prometheus/prompb/io/prometheus/client
+github.com/prometheus/prometheus/prompb/io/prometheus/write/v2
+github.com/prometheus/prometheus/promql
+github.com/prometheus/prometheus/promql/parser
+github.com/prometheus/prometheus/promql/parser/posrange
+github.com/prometheus/prometheus/rules
+github.com/prometheus/prometheus/schema
+github.com/prometheus/prometheus/scrape
+github.com/prometheus/prometheus/storage
+github.com/prometheus/prometheus/storage/remote
+github.com/prometheus/prometheus/storage/remote/azuread
+github.com/prometheus/prometheus/storage/remote/googleiam
+github.com/prometheus/prometheus/storage/remote/otlptranslator/prometheusremotewrite
+github.com/prometheus/prometheus/template
+github.com/prometheus/prometheus/tsdb
+github.com/prometheus/prometheus/tsdb/chunkenc
+github.com/prometheus/prometheus/tsdb/chunks
+github.com/prometheus/prometheus/tsdb/encoding
+github.com/prometheus/prometheus/tsdb/errors
+github.com/prometheus/prometheus/tsdb/fileutil
+github.com/prometheus/prometheus/tsdb/goversion
+github.com/prometheus/prometheus/tsdb/index
+github.com/prometheus/prometheus/tsdb/record
+github.com/prometheus/prometheus/tsdb/tombstones
+github.com/prometheus/prometheus/tsdb/tsdbutil
+github.com/prometheus/prometheus/tsdb/wlog
+github.com/prometheus/prometheus/util/almost
+github.com/prometheus/prometheus/util/annotations
+github.com/prometheus/prometheus/util/compression
+github.com/prometheus/prometheus/util/convertnhcb
+github.com/prometheus/prometheus/util/features
+github.com/prometheus/prometheus/util/gate
+github.com/prometheus/prometheus/util/httputil
+github.com/prometheus/prometheus/util/jsonutil
+github.com/prometheus/prometheus/util/logging
+github.com/prometheus/prometheus/util/namevalidationutil
+github.com/prometheus/prometheus/util/netconnlimit
+github.com/prometheus/prometheus/util/notifications
+github.com/prometheus/prometheus/util/osutil
+github.com/prometheus/prometheus/util/pool
+github.com/prometheus/prometheus/util/stats
+github.com/prometheus/prometheus/util/strutil
+github.com/prometheus/prometheus/util/testutil
+github.com/prometheus/prometheus/util/treecache
+github.com/prometheus/prometheus/util/zeropool
+github.com/prometheus/prometheus/web
+github.com/prometheus/prometheus/web/api/v1
+github.com/prometheus/prometheus/web/ui
+github.com/prometheus/sigv4
+github.com/puzpuzpuz/xsync/v4
+github.com/scaleway/scaleway-sdk-go/api/baremetal/v1
+github.com/shurcooL/httpfs/filter
+github.com/shurcooL/httpfs/union
+github.com/stackitcloud/stackit-sdk-go/core/auth
+github.com/stackitcloud/stackit-sdk-go/core/clients
+github.com/stackitcloud/stackit-sdk-go/core/config
+github.com/stackitcloud/stackit-sdk-go/core/oapierror
+github.com/vultr/govultr/v2
+go.mongodb.org/mongo-driver/bson
+go.mongodb.org/mongo-driver/bson/bsoncodec
+go.mongodb.org/mongo-driver/bson/bsonoptions
+go.mongodb.org/mongo-driver/bson/bsonrw
+go.mongodb.org/mongo-driver/bson/bsontype
+go.mongodb.org/mongo-driver/bson/primitive
+go.mongodb.org/mongo-driver/x/bsonx/bsoncore
+go.opentelemetry.io/collector/semconv/v1.6.1
+go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
+go.opentelemetry.io/otel/semconv/v1.37.0/httpconv
+go.uber.org/goleak
+golang.org/x/crypto/bcrypt
+golang.org/x/crypto/blowfish
+golang.org/x/crypto/pkcs12
+golang.org/x/net/ipv4
+golang.org/x/net/ipv6
+golang.org/x/net/netutil
+golang.org/x/net/proxy
+golang.org/x/net/trace
+golang.org/x/oauth2/clientcredentials
+golang.org/x/text/cases
+golang.org/x/text/internal
+google.golang.org/api/compute/v1
+k8s.io/client-go/plugin/pkg/client/auth/gcp
+net/mail
host-profilerlinuxarm64
+265, -1
+github.com/Azure/azure-sdk-for-go/sdk/azcore
+github.com/Azure/azure-sdk-for-go/sdk/azcore/arm
+github.com/Azure/azure-sdk-for-go/sdk/azcore/arm/policy
+github.com/Azure/azure-sdk-for-go/sdk/azcore/arm/runtime
+github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud
+github.com/Azure/azure-sdk-for-go/sdk/azcore/log
+github.com/Azure/azure-sdk-for-go/sdk/azcore/policy
+github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime
+github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming
+github.com/Azure/azure-sdk-for-go/sdk/azcore/to
+github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing
+github.com/Azure/azure-sdk-for-go/sdk/azidentity
+github.com/Azure/azure-sdk-for-go/sdk/azidentity/internal
+github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5
+github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/cache
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/confidential
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/errors
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/managedidentity
+github.com/AzureAD/microsoft-authentication-library-for-go/apps/public
+github.com/Code-Hex/go-generics-cache
+github.com/Code-Hex/go-generics-cache/policy/clock
+github.com/Code-Hex/go-generics-cache/policy/fifo
+github.com/Code-Hex/go-generics-cache/policy/lfu
+github.com/Code-Hex/go-generics-cache/policy/lru
+github.com/Code-Hex/go-generics-cache/policy/mru
+github.com/Code-Hex/go-generics-cache/policy/simple
+github.com/DataDog/datadog-agent/comp/host-profiler/collector/impl/params
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/def
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/fx
+github.com/DataDog/datadog-agent/comp/trace/observerbuffer/impl
-github.com/DataDog/datadog-agent/pkg/trace/otel/traceutil
+github.com/alecthomas/units
+github.com/aws/aws-sdk-go-v2/service/ecs
+github.com/aws/aws-sdk-go-v2/service/ecs/document
+github.com/aws/aws-sdk-go-v2/service/ecs/types
+github.com/aws/aws-sdk-go-v2/service/lightsail
+github.com/aws/aws-sdk-go-v2/service/lightsail/types
+github.com/aws/smithy-go/document/json
+github.com/bboreham/go-loser
+github.com/cncf/xds/go/udpa/annotations
+github.com/cncf/xds/go/xds/annotations/v3
+github.com/cncf/xds/go/xds/core/v3
+github.com/coreos/go-systemd/v22/activation
+github.com/dennwc/varint
+github.com/digitalocean/godo
+github.com/digitalocean/godo/metrics
+github.com/edsrzf/mmap-go
+github.com/envoyproxy/go-control-plane/envoy/annotations
+github.com/envoyproxy/go-control-plane/envoy/config/core/v3
+github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3
+github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3
+github.com/envoyproxy/go-control-plane/envoy/type/v3
+github.com/envoyproxy/protoc-gen-validate/validate
+github.com/facette/natsort
+github.com/go-kit/log
+github.com/go-kit/log/level
+github.com/go-logfmt/logfmt
+github.com/go-openapi/analysis
+github.com/go-openapi/errors
+github.com/go-openapi/loads
+github.com/go-openapi/spec
+github.com/go-openapi/strfmt
+github.com/go-openapi/validate
+github.com/go-zookeeper/zk
+github.com/goccy/go-yaml
+github.com/goccy/go-yaml/ast
+github.com/goccy/go-yaml/lexer
+github.com/goccy/go-yaml/parser
+github.com/goccy/go-yaml/printer
+github.com/goccy/go-yaml/scanner
+github.com/goccy/go-yaml/token
+github.com/gogo/protobuf/gogoproto
+github.com/gogo/protobuf/protoc-gen-gogo/descriptor
+github.com/gogo/protobuf/types
+github.com/golang-jwt/jwt/v5
+github.com/google/go-cmp/cmp
+github.com/google/go-querystring/query
+github.com/gophercloud/gophercloud/v2
+github.com/gophercloud/gophercloud/v2/openstack
+github.com/gophercloud/gophercloud/v2/openstack/compute/v2/hypervisors
+github.com/gophercloud/gophercloud/v2/openstack/compute/v2/servers
+github.com/gophercloud/gophercloud/v2/openstack/identity/v2/tenants
+github.com/gophercloud/gophercloud/v2/openstack/identity/v2/tokens
+github.com/gophercloud/gophercloud/v2/openstack/identity/v3/ec2tokens
+github.com/gophercloud/gophercloud/v2/openstack/identity/v3/oauth1
+github.com/gophercloud/gophercloud/v2/openstack/identity/v3/tokens
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/l7policies
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/listeners
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/loadbalancers
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/monitors
+github.com/gophercloud/gophercloud/v2/openstack/loadbalancer/v2/pools
+github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/layer3/floatingips
+github.com/gophercloud/gophercloud/v2/openstack/networking/v2/ports
+github.com/gophercloud/gophercloud/v2/openstack/utils
+github.com/gophercloud/gophercloud/v2/pagination
+github.com/gorilla/websocket
+github.com/grafana/regexp
+github.com/grafana/regexp/syntax
+github.com/hashicorp/cronexpr
+github.com/hashicorp/go-retryablehttp
+github.com/hashicorp/nomad/api
+github.com/hashicorp/nomad/api/contexts
+github.com/hetznercloud/hcloud-go/v2/hcloud
+github.com/hetznercloud/hcloud-go/v2/hcloud/schema
+github.com/ionos-cloud/sdk-go/v6
+github.com/jpillora/backoff
+github.com/julienschmidt/httprouter
+github.com/klauspost/compress/flate
+github.com/klauspost/compress/gzip
+github.com/klauspost/compress/s2
+github.com/klauspost/compress/snappy
+github.com/klauspost/compress/zlib
+github.com/kolo/xmlrpc
+github.com/kylelemons/godebug/diff
+github.com/kylelemons/godebug/pretty
+github.com/linode/linodego
+github.com/miekg/dns
+github.com/mwitkow/go-conntrack
+github.com/oklog/ulid
+github.com/oklog/ulid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus
+github.com/open-telemetry/opentelemetry-collector-contrib/processor/deltatocumulativeprocessor
+github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor
+github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver
+github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/internal
+github.com/ovh/go-ovh/ovh
+github.com/pkg/browser
+github.com/prometheus/alertmanager/api/v2/models
+github.com/prometheus/client_golang/exp/api/remote
+github.com/prometheus/client_golang/prometheus/promauto
+github.com/prometheus/client_golang/prometheus/testutil
+github.com/prometheus/client_golang/prometheus/testutil/promlint
+github.com/prometheus/client_golang/prometheus/testutil/promlint/validations
+github.com/prometheus/common/config
+github.com/prometheus/common/helpers/templates
+github.com/prometheus/common/promslog
+github.com/prometheus/common/route
+github.com/prometheus/common/server
+github.com/prometheus/common/version
+github.com/prometheus/exporter-toolkit/web
+github.com/prometheus/prometheus/config
+github.com/prometheus/prometheus/discovery
+github.com/prometheus/prometheus/discovery/aws
+github.com/prometheus/prometheus/discovery/azure
+github.com/prometheus/prometheus/discovery/consul
+github.com/prometheus/prometheus/discovery/digitalocean
+github.com/prometheus/prometheus/discovery/dns
+github.com/prometheus/prometheus/discovery/eureka
+github.com/prometheus/prometheus/discovery/file
+github.com/prometheus/prometheus/discovery/gce
+github.com/prometheus/prometheus/discovery/hetzner
+github.com/prometheus/prometheus/discovery/http
+github.com/prometheus/prometheus/discovery/ionos
+github.com/prometheus/prometheus/discovery/kubernetes
+github.com/prometheus/prometheus/discovery/linode
+github.com/prometheus/prometheus/discovery/marathon
+github.com/prometheus/prometheus/discovery/moby
+github.com/prometheus/prometheus/discovery/nomad
+github.com/prometheus/prometheus/discovery/openstack
+github.com/prometheus/prometheus/discovery/ovhcloud
+github.com/prometheus/prometheus/discovery/puppetdb
+github.com/prometheus/prometheus/discovery/refresh
+github.com/prometheus/prometheus/discovery/scaleway
+github.com/prometheus/prometheus/discovery/stackit
+github.com/prometheus/prometheus/discovery/targetgroup
+github.com/prometheus/prometheus/discovery/triton
+github.com/prometheus/prometheus/discovery/uyuni
+github.com/prometheus/prometheus/discovery/vultr
+github.com/prometheus/prometheus/discovery/xds
+github.com/prometheus/prometheus/discovery/zookeeper
+github.com/prometheus/prometheus/model/exemplar
+github.com/prometheus/prometheus/model/histogram
+github.com/prometheus/prometheus/model/labels
+github.com/prometheus/prometheus/model/metadata
+github.com/prometheus/prometheus/model/relabel
+github.com/prometheus/prometheus/model/rulefmt
+github.com/prometheus/prometheus/model/textparse
+github.com/prometheus/prometheus/model/timestamp
+github.com/prometheus/prometheus/model/value
+github.com/prometheus/prometheus/notifier
+github.com/prometheus/prometheus/plugins
+github.com/prometheus/prometheus/prompb
+github.com/prometheus/prometheus/prompb/io/prometheus/client
+github.com/prometheus/prometheus/prompb/io/prometheus/write/v2
+github.com/prometheus/prometheus/promql
+github.com/prometheus/prometheus/promql/parser
+github.com/prometheus/prometheus/promql/parser/posrange
+github.com/prometheus/prometheus/rules
+github.com/prometheus/prometheus/schema
+github.com/prometheus/prometheus/scrape
+github.com/prometheus/prometheus/storage
+github.com/prometheus/prometheus/storage/remote
+github.com/prometheus/prometheus/storage/remote/azuread
+github.com/prometheus/prometheus/storage/remote/googleiam
+github.com/prometheus/prometheus/storage/remote/otlptranslator/prometheusremotewrite
+github.com/prometheus/prometheus/template
+github.com/prometheus/prometheus/tsdb
+github.com/prometheus/prometheus/tsdb/chunkenc
+github.com/prometheus/prometheus/tsdb/chunks
+github.com/prometheus/prometheus/tsdb/encoding
+github.com/prometheus/prometheus/tsdb/errors
+github.com/prometheus/prometheus/tsdb/fileutil
+github.com/prometheus/prometheus/tsdb/goversion
+github.com/prometheus/prometheus/tsdb/index
+github.com/prometheus/prometheus/tsdb/record
+github.com/prometheus/prometheus/tsdb/tombstones
+github.com/prometheus/prometheus/tsdb/tsdbutil
+github.com/prometheus/prometheus/tsdb/wlog
+github.com/prometheus/prometheus/util/almost
+github.com/prometheus/prometheus/util/annotations
+github.com/prometheus/prometheus/util/compression
+github.com/prometheus/prometheus/util/convertnhcb
+github.com/prometheus/prometheus/util/features
+github.com/prometheus/prometheus/util/gate
+github.com/prometheus/prometheus/util/httputil
+github.com/prometheus/prometheus/util/jsonutil
+github.com/prometheus/prometheus/util/logging
+github.com/prometheus/prometheus/util/namevalidationutil
+github.com/prometheus/prometheus/util/netconnlimit
+github.com/prometheus/prometheus/util/notifications
+github.com/prometheus/prometheus/util/osutil
+github.com/prometheus/prometheus/util/pool
+github.com/prometheus/prometheus/util/stats
+github.com/prometheus/prometheus/util/strutil
+github.com/prometheus/prometheus/util/testutil
+github.com/prometheus/prometheus/util/treecache
+github.com/prometheus/prometheus/util/zeropool
+github.com/prometheus/prometheus/web
+github.com/prometheus/prometheus/web/api/v1
+github.com/prometheus/prometheus/web/ui
+github.com/prometheus/sigv4
+github.com/puzpuzpuz/xsync/v4
+github.com/scaleway/scaleway-sdk-go/api/baremetal/v1
+github.com/shurcooL/httpfs/filter
+github.com/shurcooL/httpfs/union
+github.com/stackitcloud/stackit-sdk-go/core/auth
+github.com/stackitcloud/stackit-sdk-go/core/clients
+github.com/stackitcloud/stackit-sdk-go/core/config
+github.com/stackitcloud/stackit-sdk-go/core/oapierror
+github.com/vultr/govultr/v2
+go.mongodb.org/mongo-driver/bson
+go.mongodb.org/mongo-driver/bson/bsoncodec
+go.mongodb.org/mongo-driver/bson/bsonoptions
+go.mongodb.org/mongo-driver/bson/bsonrw
+go.mongodb.org/mongo-driver/bson/bsontype
+go.mongodb.org/mongo-driver/bson/primitive
+go.mongodb.org/mongo-driver/x/bsonx/bsoncore
+go.opentelemetry.io/collector/semconv/v1.6.1
+go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
+go.opentelemetry.io/otel/semconv/v1.37.0/httpconv
+go.uber.org/goleak
+golang.org/x/crypto/bcrypt
+golang.org/x/crypto/blowfish
+golang.org/x/crypto/pkcs12
+golang.org/x/net/ipv4
+golang.org/x/net/ipv6
+golang.org/x/net/netutil
+golang.org/x/net/proxy
+golang.org/x/net/trace
+golang.org/x/oauth2/clientcredentials
+golang.org/x/text/cases
+golang.org/x/text/internal
+google.golang.org/api/compute/v1
+k8s.io/client-go/plugin/pkg/client/auth/gcp
+net/mail
installerlinuxamd64
+9, -6
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/updater/localapiclient
-github.com/DataDog/datadog-agent/comp/updater/localapiclient/localapiclientimpl
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/def
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/fx
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/impl
installerlinuxarm64
+9, -6
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/updater/localapiclient
-github.com/DataDog/datadog-agent/comp/updater/localapiclient/localapiclientimpl
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/def
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/fx
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/impl
installerwindowsamd64
+9, -6
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/rctelemetryreporterimpl
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/impl
-github.com/DataDog/datadog-agent/comp/updater/localapiclient
-github.com/DataDog/datadog-agent/comp/updater/localapiclient/localapiclientimpl
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/def
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/fx
+github.com/DataDog/datadog-agent/comp/updater/localapiclient/impl
privateactionrunnerlinuxamd64
+11, -4
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/DataDog/rshell/builtins/uname
privateactionrunnerlinuxarm64
+11, -4
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/DataDog/rshell/builtins/uname
privateactionrunnerwindowsamd64
+11, -4
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/DataDog/rshell/builtins/uname
privateactionrunnerdarwinamd64
+11, -4
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/DataDog/rshell/builtins/uname
privateactionrunnerdarwinarm64
+11, -4
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice
-github.com/DataDog/datadog-agent/comp/remote-config/rcservice/rcserviceimpl
-github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/def
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/fx
+github.com/DataDog/datadog-agent/comp/remote-config/rcservice/impl
+github.com/DataDog/datadog-agent/comp/remote-config/rctelemetryreporter/def
-github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata
+github.com/DataDog/datadog-agent/pkg/discovery/tracermetadata/model
+github.com/DataDog/datadog-agent/pkg/util/ecs/common
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v1
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v2
+github.com/DataDog/datadog-agent/pkg/util/ecs/metadata/v3or4
+github.com/DataDog/rshell/builtins/uname

@ellataira
Copy link
Copy Markdown
Contributor Author

⚠️ eval_env_drift [requires ack]

iter 0 · bocpd-anomaly-rank-postfilter — eval pipeline sanity check FAILED before implementation.

Detail: sentinel_eval_crashed rc=-1 stderr=timeout after 600s

This usually means workspace deps are broken (dda / invoke / go toolchain). Run dda inv q.coord-status on the workspace and verify; once fixed, rm .coordinator/pause to resume.

Iteration aborted; no SDK tokens spent.


Budget: Run total: 3,301,173 tokens (~$50.73) (0.7% of 500,000,000 ceiling). Model mix: Opus 100%, Sonnet 0%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T15:15:00

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 1 · bocpd-anomaly-rank-postfilter (family anomaly-rank-postfilter-sketch)

Evaluating against detectors: bocpd.

Watchdog's AnomalyRank pattern: a detector should suppress alerts whose magnitude is


Budget: Run total: 3,471,224 tokens (~$51.25) (0.7% of 500,000,000 ceiling). Model mix: Opus 95%, Sonnet 5%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T15:48:50

@agent-platform-auto-pr
Copy link
Copy Markdown
Contributor

agent-platform-auto-pr Bot commented Apr 28, 2026

Static quality checks

❌ Please find below the results from static quality gates
Comparison made with ancestor e5b320d
📊 Static Quality Gates Dashboard
🔗 SQG Job
SOME SIZE DELTAS ARE N/A (ANCESTOR METRICS NOT YET AVAILABLE). RETRY JOB

Error

Quality gate Change Size (prev → curr → max)
agent_deb_amd64 (on disk) N/A N/A → 773.447 → 753.380
agent_deb_amd64_fips (on disk) N/A N/A → 730.375 → 713.900
agent_heroku_amd64 (on disk) N/A N/A → 333.888 → 320.580
agent_rpm_amd64 (on disk) N/A N/A → 773.431 → 753.350
agent_rpm_amd64_fips (on disk) N/A N/A → 730.358 → 713.880
agent_rpm_arm64 (on disk) N/A N/A → 747.972 → 735.290
agent_rpm_arm64_fips (on disk) N/A N/A → 707.936 → 696.840
agent_suse_amd64 (on disk) N/A N/A → 773.431 → 753.350
agent_suse_amd64_fips (on disk) N/A N/A → 730.358 → 713.880
agent_suse_arm64 (on disk) N/A N/A → 747.972 → 735.290
agent_suse_arm64_fips (on disk) N/A N/A → 707.936 → 696.840
docker_agent_amd64 (on wire) N/A N/A → 272.967 → 272.480
docker_agent_amd64 (on disk) N/A N/A → 833.714 → 815.700
docker_agent_arm64 (on disk) N/A N/A → 833.049 → 821.970
docker_agent_jmx_amd64 (on wire) N/A N/A → 341.616 → 341.100
docker_agent_jmx_amd64 (on disk) N/A N/A → 1024.630 → 1006.580
docker_agent_jmx_arm64 (on disk) N/A N/A → 1012.743 → 1001.570
iot_agent_deb_amd64 (on wire) N/A N/A → 14.584 → 13.040
iot_agent_deb_amd64 (on disk) N/A N/A → 63.550 → 44.290
iot_agent_deb_arm64 (on wire) N/A N/A → 12.204 → 11.450
iot_agent_deb_arm64 (on disk) N/A N/A → 56.765 → 41.920
iot_agent_deb_armhf (on wire) N/A N/A → 12.549 → 11.620
iot_agent_deb_armhf (on disk) N/A N/A → 58.029 → 42.100
iot_agent_rpm_amd64 (on wire) N/A N/A → 14.603 → 13.060
iot_agent_rpm_amd64 (on disk) N/A N/A → 63.551 → 44.290
iot_agent_suse_amd64 (on wire) N/A N/A → 14.603 → 13.060
iot_agent_suse_amd64 (on disk) N/A N/A → 63.551 → 44.290
Gate failure full details
Quality gate Error type Error message
agent_deb_amd64 StaticQualityGateFailed static_quality_gate_agent_deb_amd64 failed!
Disk size 773.4 MB exceeds limit of 753.4 MB by 20.1 MB
agent_deb_amd64_fips StaticQualityGateFailed static_quality_gate_agent_deb_amd64_fips failed!
Disk size 730.4 MB exceeds limit of 713.9 MB by 16.5 MB
agent_heroku_amd64 StaticQualityGateFailed static_quality_gate_agent_heroku_amd64 failed!
Disk size 333.9 MB exceeds limit of 320.6 MB by 13.3 MB
agent_rpm_amd64 StaticQualityGateFailed static_quality_gate_agent_rpm_amd64 failed!
Disk size 773.4 MB exceeds limit of 753.3 MB by 20.1 MB
agent_rpm_amd64_fips StaticQualityGateFailed static_quality_gate_agent_rpm_amd64_fips failed!
Disk size 730.4 MB exceeds limit of 713.9 MB by 16.5 MB
agent_rpm_arm64 StaticQualityGateFailed static_quality_gate_agent_rpm_arm64 failed!
Disk size 748.0 MB exceeds limit of 735.3 MB by 12.7 MB
agent_rpm_arm64_fips StaticQualityGateFailed static_quality_gate_agent_rpm_arm64_fips failed!
Disk size 707.9 MB exceeds limit of 696.8 MB by 11.1 MB
agent_suse_amd64 StaticQualityGateFailed static_quality_gate_agent_suse_amd64 failed!
Disk size 773.4 MB exceeds limit of 753.3 MB by 20.1 MB
agent_suse_amd64_fips StaticQualityGateFailed static_quality_gate_agent_suse_amd64_fips failed!
Disk size 730.4 MB exceeds limit of 713.9 MB by 16.5 MB
agent_suse_arm64 StaticQualityGateFailed static_quality_gate_agent_suse_arm64 failed!
Disk size 748.0 MB exceeds limit of 735.3 MB by 12.7 MB
agent_suse_arm64_fips StaticQualityGateFailed static_quality_gate_agent_suse_arm64_fips failed!
Disk size 707.9 MB exceeds limit of 696.8 MB by 11.1 MB
docker_agent_amd64 StaticQualityGateFailed static_quality_gate_docker_agent_amd64 failed!
Wire size 273.0 MB exceeds limit of 272.5 MB by 498.4 KB
Disk size 833.7 MB exceeds limit of 815.7 MB by 18.0 MB
docker_agent_arm64 StaticQualityGateFailed static_quality_gate_docker_agent_arm64 failed!
Disk size 833.0 MB exceeds limit of 822.0 MB by 11.1 MB
docker_agent_jmx_amd64 StaticQualityGateFailed static_quality_gate_docker_agent_jmx_amd64 failed!
Wire size 341.6 MB exceeds limit of 341.1 MB by 528.7 KB
Disk size 1024.6 MB exceeds limit of 1006.6 MB by 18.1 MB
docker_agent_jmx_arm64 StaticQualityGateFailed static_quality_gate_docker_agent_jmx_arm64 failed!
Disk size 1012.7 MB exceeds limit of 1001.6 MB by 11.2 MB
iot_agent_deb_amd64 StaticQualityGateFailed static_quality_gate_iot_agent_deb_amd64 failed!
Wire size 14.6 MB exceeds limit of 13.0 MB by 1.5 MB
Disk size 63.6 MB exceeds limit of 44.3 MB by 19.3 MB
iot_agent_deb_arm64 StaticQualityGateFailed static_quality_gate_iot_agent_deb_arm64 failed!
Wire size 12.2 MB exceeds limit of 11.4 MB by 772.5 KB
Disk size 56.8 MB exceeds limit of 41.9 MB by 14.8 MB
iot_agent_deb_armhf StaticQualityGateFailed static_quality_gate_iot_agent_deb_armhf failed!
Wire size 12.5 MB exceeds limit of 11.6 MB by 951.2 KB
Disk size 58.0 MB exceeds limit of 42.1 MB by 15.9 MB
iot_agent_rpm_amd64 StaticQualityGateFailed static_quality_gate_iot_agent_rpm_amd64 failed!
Wire size 14.6 MB exceeds limit of 13.1 MB by 1.5 MB
Disk size 63.6 MB exceeds limit of 44.3 MB by 19.3 MB
iot_agent_suse_amd64 StaticQualityGateFailed static_quality_gate_iot_agent_suse_amd64 failed!
Wire size 14.6 MB exceeds limit of 13.1 MB by 1.5 MB
Disk size 63.6 MB exceeds limit of 44.3 MB by 19.3 MB

Static quality gates prevent the PR to merge!
You can check the static quality gates confluence page for guidance. We also have a toolbox page available to list tools useful to debug the size increase.
Please either fix the size violation or request an exception.

Successful checks

Info

Quality gate Change Size (prev → curr → max)
agent_msi N/A N/A → 628.108 → 651.440
docker_cluster_agent_amd64 N/A N/A → 203.961 → 206.270
docker_cluster_agent_arm64 N/A N/A → 218.420 → 220.000
docker_cws_instrumentation_amd64 N/A N/A → 7.142 → 7.180
docker_cws_instrumentation_arm64 N/A N/A → 6.689 → 6.920
docker_dogstatsd_amd64 N/A N/A → 39.257 → 39.380
docker_dogstatsd_arm64 N/A N/A → 37.499 → 37.940
dogstatsd_deb_amd64 N/A N/A → 29.917 → 30.610
dogstatsd_deb_arm64 N/A N/A → 28.066 → 29.110
dogstatsd_rpm_amd64 N/A N/A → 29.917 → 30.610
dogstatsd_suse_amd64 N/A N/A → 29.917 → 30.610
On-wire sizes (compressed)
Quality gate Change Size (prev → curr → max)
agent_deb_amd64 N/A N/A → 178.274 → 178.360
agent_deb_amd64_fips N/A N/A → 168.714 → 172.790
agent_heroku_amd64 N/A N/A → 78.400 → 79.970
agent_rpm_amd64 N/A N/A → 180.823 → 181.830
agent_rpm_amd64_fips N/A N/A → 171.264 → 173.370
agent_rpm_arm64 N/A N/A → 161.747 → 163.060
agent_rpm_arm64_fips N/A N/A → 154.278 → 156.170
agent_suse_amd64 N/A N/A → 180.823 → 181.830
agent_suse_amd64_fips N/A N/A → 171.264 → 173.370
agent_suse_arm64 N/A N/A → 161.747 → 163.060
agent_suse_arm64_fips N/A N/A → 154.278 → 156.170
docker_agent_amd64 N/A N/A → 272.967 → 272.480
docker_agent_arm64 N/A N/A → 259.238 → 261.060
docker_agent_jmx_amd64 N/A N/A → 341.616 → 341.100
docker_agent_jmx_arm64 N/A N/A → 323.867 → 325.620
iot_agent_deb_amd64 N/A N/A → 14.584 → 13.040
iot_agent_deb_arm64 N/A N/A → 12.204 → 11.450
iot_agent_deb_armhf N/A N/A → 12.549 → 11.620
iot_agent_rpm_amd64 N/A N/A → 14.603 → 13.060
iot_agent_suse_amd64 N/A N/A → 14.603 → 13.060
agent_msi N/A N/A → 142.266 → 146.220
docker_cluster_agent_amd64 N/A N/A → 71.371 → 72.920
docker_cluster_agent_arm64 N/A N/A → 67.002 → 68.220
docker_cws_instrumentation_amd64 N/A N/A → 2.999 → 3.330
docker_cws_instrumentation_arm64 N/A N/A → 2.729 → 3.090
docker_dogstatsd_amd64 N/A N/A → 15.175 → 15.820
docker_dogstatsd_arm64 N/A N/A → 14.495 → 14.830
dogstatsd_deb_amd64 N/A N/A → 7.896 → 8.790
dogstatsd_deb_arm64 N/A N/A → 6.784 → 7.710
dogstatsd_rpm_amd64 N/A N/A → 7.908 → 8.800
dogstatsd_suse_amd64 N/A N/A → 7.908 → 8.800

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 1 · persistence-filter (family persistence-filter)

Evaluating against detectors: persistence-filter-correlator.

Persistence-based FP filter. An anomaly must hold for N consecutive


Budget: Run total: 3,621,773 tokens (~$51.70) (0.7% of 500,000,000 ceiling). Model mix: Opus 91%, Sonnet 9%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T15:55:04

@ellataira
Copy link
Copy Markdown
Contributor Author

​❌ iter_rejected

iter 1 · persistence-filter — auto-rejected before eval: detector(s) ['persistence-filter-correlator'] were not registered in component_catalog.go. Likely the implementer hit max_turns before finishing the catalog step.

Implementer summary: - Promoting on tick N (rather than retroactively promoting the first N-1 buffered anomalies) is intended: the description says "filtered" / "not emitted," and the cost language ("zero warm-up") implies no buffering of pre-threshold anomalies. Subsequent in-streak ticks continue to pass through, so a

Working tree reverted; moving on. The proposer will see this as a rejection reason on the next iter.


Budget: This iter: 4,706,998 in / 21,957 out ($71.21). Run total: 8,263,744 tokens ($122.65) (1.7% of 500,000,000 ceiling). Model mix: Opus 96%, Sonnet 4%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:02:02

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 2 · robust-zscore-filter (family robust-zscore-filter)

Evaluating against detectors: robust-zscore-filter-correlator.

Robust z-score outlier filter. Per (stream, detector), maintain a


Budget: Run total: 8,263,744 tokens (~$122.65) (1.7% of 500,000,000 ceiling). Model mix: Opus 96%, Sonnet 4%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:02:22

@ellataira
Copy link
Copy Markdown
Contributor Author

​❌ iter_rejected

iter 2 · robust-zscore-filter — auto-rejected before eval: detector(s) ['robust-zscore-filter-correlator'] were not registered in component_catalog.go. Likely the implementer hit max_turns before finishing the catalog step.

Implementer summary: - Score == nilandNaN admit the anomaly without polluting the buffer (filter has no comparison data and degenerate values would poison the ring).

Working tree reverted; moving on. The proposer will see this as a rejection reason on the next iter.


Budget: This iter: 3,795,875 in / 16,101 out ($58.15). Run total: 12,075,720 tokens ($180.79) (2.4% of 500,000,000 ceiling). Model mix: Opus 97%, Sonnet 3%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:08:46

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 3 · magnitude-bounded-cooldown (family magnitude-bounded-cooldown)

Evaluating against detectors: magnitude-bounded-cooldown-correlator.

Magnitude-bounded cooldown filter. After emitting an anomaly on


Budget: Run total: 12,075,720 tokens (~$180.79) (2.4% of 500,000,000 ceiling). Model mix: Opus 97%, Sonnet 3%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:24:43

@ellataira
Copy link
Copy Markdown
Contributor Author

​❌ iter_rejected

iter 3 · magnitude-bounded-cooldown — auto-rejected before eval: detector(s) ['magnitude-bounded-cooldown-correlator'] were not registered in component_catalog.go. Likely the implementer hit max_turns before finishing the catalog step.

Implementer summary: - go build ./comp/observer/..., go vet ./comp/observer/impl/ ./comp/observer/def/, and go test ./comp/observer/impl/ -count=1 all pass.

Working tree reverted; moving on. The proposer will see this as a rejection reason on the next iter.


Budget: This iter: 3,167,050 in / 17,072 out ($48.79). Run total: 15,259,842 tokens ($229.58) (3.1% of 500,000,000 ceiling). Model mix: Opus 98%, Sonnet 2%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:29:52

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 4 · bocpd-anomaly-rank-postfilter (family anomaly-rank-postfilter-sketch)

Evaluating against detectors: bocpd.

Watchdog's AnomalyRank pattern: a detector should suppress alerts whose magnitude is


Budget: Run total: 15,259,842 tokens (~$229.58) (3.1% of 500,000,000 ceiling). Model mix: Opus 98%, Sonnet 2%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:30:10

@ellataira
Copy link
Copy Markdown
Contributor Author

​❌ iter_rejected

iter 4 · bocpd-anomaly-rank-postfilter — rejected by review (passed deterministic gates, failed unanimity).

Mean F1 0.1160 → 0.1160 (Δ+0.0000).

Reviewer verdicts:

  • leakage_auditor (approve): The diff adds a purely statistical rank-based post-filter on normalized residuals, with generic config defaults (95th pct, 512 window, 128 min samples) and zero scenario/metric-name awareness. No leakage patterns are present. (Side note unrelated to leakage: the experiment shows Δ+0 across all metrics, suggesting the gate may not be activating in evaluation, but that is a correctness/efficacy conc
  • hack_detector (reject): The change is well-implemented and faithful to the plan's algorithm, but produces literally zero behavioral change across all 12 scenarios (ΔF1=0.0000, ΔFP=0), failing the proposer's own ≥20% FP-reduction success criterion. Adding 4 config fields, a per-series ring buffer, and a sort-on-trigger code path for no measurable gain is disproportionate complexity. Reject and either tune defaults so the
  • algorithm_expert (approve): All seven house-style checks pass: interface, factory, catalog, state-key pattern, license, naming, tests, helper non-duplication, and per-tick budget are all compliant with comp/observer/ conventions. The change is a minimal, additive gate that preserves every existing contract and is properly guarded behind PostfilterEnabled. The fact that the evaluation shows zero FP reduction (53→53, well shor

Working tree reverted; no commit.


Budget: This iter: 2,510,530 in / 47,630 out ($21.02). Run total: 17,818,002 tokens ($250.60) (3.6% of 500,000,000 ceiling). Model mix: Opus 90%, Sonnet 10%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:50:38

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 5 · scanmw-spectral-residual (family spectral-residual-replacement)

Evaluating against detectors: scanmw.

Replace ScanMW's Mann-Whitney rank-scan internals with a Spectral Residual (SR) saliency


Budget: Run total: 17,818,002 tokens (~$250.60) (3.6% of 500,000,000 ceiling). Model mix: Opus 90%, Sonnet 10%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T16:50:56

@ellataira
Copy link
Copy Markdown
Contributor Author

​🚨 strict_regression

iter 5 · scanmw-spectral-residual — auto-rejected on catastrophe filter.

Gate failures: strict_regressions=['scanmw/213_pagerduty'] recall_violations=['scanmw/093_cloudflare', 'scanmw/213_pagerduty', 'scanmw/546_cloudflare', 'scanmw/casino_postgresql', 'scanmw/ehr_pgbouncer', 'scanmw/food_delivery_redis']

Top 5 |ΔF1| scenarios:

  • 063_twilio: F1 0.201 → 0.929 (Δ+0.727), recall Δ-0.029
  • 059_fortnite: F1 0.000 → 0.707 (Δ+0.707), recall Δ+0.547
  • 213_pagerduty: F1 0.655 → 0.000 (Δ-0.655), recall Δ-0.974
  • 221_base: F1 0.000 → 0.655 (Δ+0.655), recall Δ+0.974
  • 703_shopify: F1 0.061 → 0.392 (Δ+0.331), recall Δ+0.000

Observed mean F1 0.2684 vs baseline 0.1035 (Δ+0.1648). Total FPs 406 → 27 (Δ-379).

Working tree reverted; no commit.


Budget: This iter: 6,291,795 in / 63,163 out ($19.82). Run total: 24,172,960 tokens ($270.43) (4.8% of 500,000,000 ceiling). Model mix: Opus 66%, Sonnet 34%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T17:18:01

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 6 · scanwelch-tail-confirm-postfilter (family tail-confirmation-postfilter)

Evaluating against detectors: scanwelch.

ScanWelch currently has the highest mean F1 (0.126) but also the highest FP count (528). A


Budget: Run total: 24,172,960 tokens (~$270.43) (4.8% of 500,000,000 ceiling). Model mix: Opus 66%, Sonnet 34%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T17:18:28

@ellataira
Copy link
Copy Markdown
Contributor Author

​❌ iter_rejected

iter 6 · scanwelch-tail-confirm-postfilter — rejected by review (passed deterministic gates, failed unanimity).

Mean F1 0.1259 → 0.1217 (Δ-0.0042).

Reviewer verdicts:

  • leakage_auditor (approve): The patch is a generic statistical post-filter (tail of post-segment must still deviate by ≥0.7×MinDeviationMAD from pre-median) applied uniformly to every series. Constants are round and structural rather than snapped to baseline FP counts, and grep confirms zero scenario-name or metric-name literals introduced. Observed Δ on the visible scenarios (1 extra FP on food_delivery_redis, all others un
  • hack_detector (reject): The change executes its plan faithfully and uses a defensible non-gaming mechanism, but it fails its own success criteria: FPs increased by 1 instead of dropping ≥15%, and F1 regressed by 0.0042. The only scenario with any movement (food_delivery_redis) regressed in both F1 (-0.050) and FPs (+1) — surprising for a pure-suppression filter, suggesting suppressing the best changepoint shifted detecti
  • algorithm_expert (approve): The diff is a minimal, additive post-filter inside the existing scanWelch() pipeline: one extra median over a K=10 tail slice gated behind the already-passing MinDeviationMAD check. Interface, factory, catalog, state layout, and helper conventions are all preserved; tests lock in both the new rejection contract and the prior sustained-step behavior. Observed F1 Δ-0.0042 is within the stated -0.005

Working tree reverted; no commit.


Budget: This iter: 1,957,099 in / 19,793 out ($16.53). Run total: 26,149,852 tokens ($286.96) (5.2% of 500,000,000 ceiling). Model mix: Opus 64%, Sonnet 36%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T17:30:22

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 7 · bocpd-hampel-robust-likelihood (family bocpd-hampel-robust-likelihood)

Evaluating against detectors: bocpd.

Replace BOCPD's fragile Gaussian likelihood gate with a Hampel identifier pre-filter that keeps the Bayesian recurrence intact but treats single-point spikes as missing observations rather than change


Budget: Run total: 28,173,996 tokens (~$318.42) (5.6% of 500,000,000 ceiling). Model mix: Opus 67%, Sonnet 33%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T17:35:25

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 7 · bocpd-hampel-robust-likelihood (family bocpd-hampel-robust-likelihood)

Evaluating against detectors: bocpd.

Replace BOCPD's fragile Gaussian likelihood gate with a Hampel identifier pre-filter that keeps the Bayesian recurrence intact but treats single-point spikes as missing observations rather than change


Budget: Run total: 30,597,968 tokens (~$326.01) (6.1% of 500,000,000 ceiling). Model mix: Opus 62%, Sonnet 38%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T17:49:06

@ellataira
Copy link
Copy Markdown
Contributor Author

​🚨 strict_regression

iter 7 · bocpd-hampel-robust-likelihood — auto-rejected on catastrophe filter.

Gate failures: strict_regressions=['bocpd/casino_postgresql'] recall_violations=['bocpd/353_postmark', 'bocpd/casino_postgresql', 'bocpd/ehr_pgbouncer']

Top 5 |ΔF1| scenarios:

  • casino_postgresql: F1 0.366 → 0.070 (Δ-0.296), recall Δ-0.824
  • 703_shopify: F1 0.655 → 0.479 (Δ-0.176), recall Δ-0.028
  • 059_fortnite: F1 0.136 → 0.252 (Δ+0.117), recall Δ-0.079
  • ehr_pgbouncer: F1 0.166 → 0.206 (Δ+0.039), recall Δ-0.128
  • 353_postmark: F1 0.035 → 0.010 (Δ-0.025), recall Δ-0.128

Observed mean F1 0.0889 vs baseline 0.1160 (Δ-0.0272). Total FPs 53 → 30 (Δ-23).

Working tree reverted; no commit.


Budget: This iter: 4,712,040 in / 42,081 out ($14.77). Run total: 32,928,117 tokens ($333.19) (6.6% of 500,000,000 ceiling). Model mix: Opus 57%, Sonnet 43%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T18:02:36

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 8 · scanmw-signal-shape-router (family signal-shape-router)

Evaluating against detectors: scanmw.

Per-series cheap pre-gate that classifies each stream as "smooth/periodic" vs "noisy/jumpy" using rolling lag-1 autocorrelation, and routes ONLY to one decision algorithm at detection time: smooth str


Budget: Run total: 32,928,117 tokens (~$333.19) (6.6% of 500,000,000 ceiling). Model mix: Opus 57%, Sonnet 43%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T18:03:04

@ellataira
Copy link
Copy Markdown
Contributor Author

​🚨 strict_regression

iter 8 · scanmw-signal-shape-router — auto-rejected on catastrophe filter.

Gate failures: strict_regressions=[] recall_violations=['scanmw/546_cloudflare']

Top 5 |ΔF1| scenarios:

  • 211_doordash: F1 0.000 → 0.169 (Δ+0.168), recall Δ+0.920
  • 353_postmark: F1 0.000 → 0.025 (Δ+0.025), recall Δ+0.974
  • 703_shopify: F1 0.061 → 0.069 (Δ+0.008), recall Δ+0.026
  • 059_fortnite: F1 0.000 → 0.005 (Δ+0.005), recall Δ+0.017
  • ehr_pgbouncer: F1 0.023 → 0.026 (Δ+0.003), recall Δ+0.000

Observed mean F1 0.1213 vs baseline 0.1035 (Δ+0.0177). Total FPs 406 → 432 (Δ+26).

Working tree reverted; no commit.


Budget: This iter: 5,452,521 in / 154,398 out ($18.67). Run total: 38,535,036 tokens ($351.86) (7.7% of 500,000,000 ceiling). Model mix: Opus 49%, Sonnet 51%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T18:48:35

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 9 · scanwelch-conformal-martingale-postfilter (family conformal-martingale-postfilter)

Evaluating against detectors: scanwelch.

Replace scanwelch's MAD-deviation post-check with a Shafer-Vovk conformal martingale built over the post-changepoint segment, using ranks of post-segment values within the pre-segment as conformity sc


Budget: Run total: 38,535,036 tokens (~$351.86) (7.7% of 500,000,000 ceiling). Model mix: Opus 49%, Sonnet 51%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T18:49:04

@ellataira
Copy link
Copy Markdown
Contributor Author

​❌ iter_rejected

iter 9 · scanwelch-conformal-martingale-postfilter — rejected by review (passed deterministic gates, failed unanimity).

Mean F1 0.1259 → 0.1259 (Δ+0.0000).

Reviewer verdicts:

  • leakage_auditor (approve): All four leakage checks pass: no scenario or metric literals appear in the diff, the new numeric constants are principled (martingale convention + documented bet-math derivation, not snapped to observed FP counts), the conformity score is computed from local series values only, and there are no train-set-keyed special cases. The Δ+0 experimental result is a separate efficacy concern but is not evi
  • hack_detector (reject): Observed Δ is exactly zero on every scenario and every metric, while the diff adds ~120 LOC of new structure, a sentinel-default hack, and a martingale helper. The proposer's own success criteria (F1≥0.135, FPs≤350) are unmet. The conformal filter is correctly implemented but is downstream of scanwelch's extremely strict t/p/effect/MAD gates, so it never rejects in practice — pure dead code on thi
  • algorithm_expert (approve): Diff is a clean additive post-filter that preserves the Detector interface, the (ref,agg)→state map convention, the Apache header, and all existing tests. The conformal helper is gated to fire only after all prior scanwelch gates pass, so per-tick cost is zero in the common case and ~1000 fp ops at fire time — well under the 1.5× budget. Only orthogonal observation (out of my mandate but worth fla

Working tree reverted; no commit.


Budget: This iter: 5,538,684 in / 97,716 out ($44.76). Run total: 44,171,436 tokens ($396.63) (8.8% of 500,000,000 ceiling). Model mix: Opus 47%, Sonnet 53%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T19:20:03

@ellataira
Copy link
Copy Markdown
Contributor Author

​💸 cost_anomaly

iter 9 cost: $44.76 (5,636,400 tokens). Rolling mean (last 5): $18.16.

Triggers:

  • iter cost $44.76 > 2.0× rolling mean $18.16 (last 5)

Streak: 1 consecutive anomalous iter(s) (auto-pause at 3).

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T19:20:12

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 10 · scanwelch-seasonal-bucket-detrend (family seasonal-bucket-detrending)

Evaluating against detectors: scanwelch.

ScanWelch fires 528 FPs at F1=0.126 — by far the noisiest detector. The dominant


Budget: Run total: 46,549,035 tokens (~$433.98) (9.3% of 500,000,000 ceiling). Model mix: Opus 50%, Sonnet 50%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T19:27:27

@ellataira
Copy link
Copy Markdown
Contributor Author

​🚨 strict_regression

iter 10 · scanwelch-seasonal-bucket-detrend — auto-rejected on catastrophe filter.

Gate failures: strict_regressions=['scanwelch/063_twilio', 'scanwelch/211_doordash', 'scanwelch/213_pagerduty', 'scanwelch/221_base', 'scanwelch/food_delivery_redis'] recall_violations=['scanwelch/063_twilio', 'scanwelch/093_cloudflare', 'scanwelch/211_doordash', 'scanwelch/213_pagerduty', 'scanwelch/221_base', 'scanwelch/546_cloudflare', 'scanwelch/casino_postgresql', 'scanwelch/ehr_pgbouncer', 'scanwelch/food_delivery_redis']

Top 5 |ΔF1| scenarios:

  • 213_pagerduty: F1 0.642 → 0.000 (Δ-0.642), recall Δ-0.945
  • food_delivery_redis: F1 0.285 → 0.000 (Δ-0.285), recall Δ-0.666
  • 063_twilio: F1 0.151 → 0.000 (Δ-0.151), recall Δ-0.896
  • 211_doordash: F1 0.142 → 0.000 (Δ-0.142), recall Δ-0.765
  • 221_base: F1 0.122 → 0.000 (Δ-0.122), recall Δ-0.974

Observed mean F1 0.0225 vs baseline 0.1259 (Δ-0.1034). Total FPs 528 → 176 (Δ-352).

Working tree reverted; no commit.


Budget: This iter: 5,198,403 in / 86,611 out ($16.89). Run total: 51,834,049 tokens ($450.87) (10.4% of 500,000,000 ceiling). Model mix: Opus 45%, Sonnet 55%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T19:55:36

@ellataira
Copy link
Copy Markdown
Contributor Author

​🔔 phase_pivot

Phase 1 plateaued after 5 consecutive non-improving iterations. Best score so far: 0.2684. Pivot #1.

Banned (newly added): ['bocpd-hampel-robust-likelihood', 'conformal-martingale-postfilter', 'seasonal-bucket-detrending', 'signal-shape-router', 'tail-confirmation-postfilter']
Banned (cumulative): ['bocpd-hampel-robust-likelihood', 'conformal-martingale-postfilter', 'seasonal-bucket-detrending', 'signal-shape-router', 'tail-confirmation-postfilter']

Coordinator auto-pivoting: the proposer will generate new candidates with the banned families filtered out. (Write .coordinator/inbox.md to add a specific steer; optional — the loop continues autonomously either way.)

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T19:55:55

@ellataira
Copy link
Copy Markdown
Contributor Author

▶️ iter_start

iter 11 · bocpd-jensen-shannon-trigger (family histogram-divergence-trigger)

Evaluating against detectors: bocpd.

BOCPD's recall is gated by its Gaussian observation likelihood: when the true post-change distribution differs from baseline in shape (variance, multimodality, skew) more than in mean, the run-length


Budget: Run total: 54,472,862 tokens (~$492.26) (10.9% of 500,000,000 ceiling). Model mix: Opus 48%, Sonnet 52%.

— Claude (coordinator harness) · 38d769df8e · 2026-04-28T20:03:46

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants