Skip to content

Ralph/alp log querying benchmark (OTTL + jq + VRL)#53809

Draft
rhy988 wants to merge 8 commits into
mainfrom
ralph/alp-log-querying-benchmark-combined
Draft

Ralph/alp log querying benchmark (OTTL + jq + VRL)#53809
rhy988 wants to merge 8 commits into
mainfrom
ralph/alp-log-querying-benchmark-combined

Conversation

@rhy988

@rhy988 rhy988 commented Jul 18, 2026

Copy link
Copy Markdown
Contributor

What does this PR do?

Adds 4 SMP experiment cases to benchmark the performance of different log filtering rule implementations against the standard Datadog log filtering baseline:

  • logs_filter_baseline — standard Datadog regex-based log processing rules (the baseline)
  • logs_filter_ottl — OTTL-based filtering via the OpenTelemetry Collector transform processor
  • logs_filter_jq — jq-based filtering via fastjq
  • logs_filter_vrl — VRL-based filtering via a curated cgo bridge (see below)

All implementations live on the same branch and are bundled into a single agent image. Each case applies the same filtering logic and is run against the same synthetic JSON log workload, with only the active filter method differing per case.

Update: VRL is now included. It was originally dropped (see #53105, now closed/superseded by this PR) after two blockers:

  • The VRL Rust crate was only compiled with the compiler feature, not stdlib — meaning none of VRL's standard library functions (parse_json, contains, etc.) were actually available, so it couldn't do JSON-field-aware filtering at all. Enabling stdlib/stdlib-base hits an unresolved Bazel/Cargo toolchain gap (native C build scripts in some of VRL's dependencies fail to compile under this repo's hermetic LLVM toolchain).
  • The original VRL implementation shipped with no test coverage, unlike OTTL and jq.

Both are now fixed: a custom curated function library (parse_json, redact) sidesteps the toolchain gap entirely (no stdlib dependency needed), and there's now full test coverage (pkg/logs/vrl/vrl_test.go, comp/logs/agent/config/processing_rules_vrl_test.go, plus VRL-specific cases in comp/logs-library/processor/processor_test.go).

Rule types added: exclude_at_vrl_match, include_at_vrl_match, mask_vrl (masking is not exercised by this benchmark — only the exclude-style filtering rule, matching what's tested for regex/OTTL/jq).

Also includes a benchmark-branch-only fix to tasks/build_tags.bzl: vrl was registered in the tag validation allow-list (ALL_TAGS) but not in AGENT_TAGS (the actual tag set used to build the "full" agent flavor), so the published image would have silently shipped the VRL stub instead of the real cgo-backed engine. Fixed by adding vrl to AGENT_TAGS.

Motivation

We are evaluating which log filtering implementation to adopt as a replacement or complement to the current regex-based processing rules. OTTL, jq, and VRL each offer different ergonomics/performance tradeoffs for structured/JSON logs vs regex.

Running all 4 cases in a single SMP job is a deliberate design choice: because they share the same job, they run on the same machine in the same time window, making their CPU and memory metrics directly comparable on the dashboard without any time series alignment.

Describe how you validated your changes

  • dda inv agent.build --build-include vrl succeeds and links the real VRL cgo implementation (confirmed via go version -m showing -tags=vrl and pkg/logs/vrl (devel), not the stub).
  • Full unit test suites pass: comp/logs/agent/config (234 tests), comp/logs-library/processor (77 tests, including VRL exclude/include/mask-ordering cases), pkg/logs/vrl (7 tests).
  • SMP regression benchmark (smp-playground#455) already validated regex/OTTL/jq at multiple loads; VRL is being added there as a 4th case using this branch's published image.

Additional Notes

rhy988 added 6 commits July 18, 2026 13:50
… rebased onto main)

Combines OTTL (exclude_at_match_ottl/include_at_match_ottl) and jq
(exclude_at_jq_match/include_at_jq_match via fastjq) log-filtering engines for
benchmarking against the regex baseline. Includes the SMP regression test cases
(logs_filter_baseline/ottl/jq).

Re-squashed and rebased onto current main (previous rebase had gone stale again
after a few days).
…for benchmarking

Combines all three log-filtering engine implementations for benchmarking against
the regex baseline: OTTL (exclude_at_match_ottl/include_at_match_ottl), jq
(exclude_at_jq_match/include_at_jq_match via fastjq), and VRL
(exclude_at_vrl_match/include_at_vrl_match/mask_vrl). Includes the SMP
regression test cases (logs_filter_baseline/ottl/jq) and the AGENT_TAGS fix so
the full agent build compiles the real VRL cgo engine instead of the stub.

Combined from two independently-rebased-onto-main branches
(ralph/alp-log-querying-benchmark-updated, ralph/alp-vrl-log-processing-updated),
each already current with main, so this merge only needed to reconcile the
actual OTTL/jq vs VRL code (processing_rules.go, processor.go, processor_test.go
— all additive, no real conflicts) plus mechanical go.mod/go.sum churn.
… error messages

Fixes perfsprint linter findings caught by the pre-push hook.
…lwin/go.mod

Caught by the update-go pre-push hook.
@github-actions

Copy link
Copy Markdown
Contributor

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 6611647a4e

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread tasks/build_tags.bzl
"systemd",
"systemprobechecks",
"trivy",
"vrl", # benchmark-branch-only: compiles the real VRL cgo engine instead of the stub, see ralph/alp-vrl-log-processing-updated

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep vrl out of default agent tags

With this tag in AGENT_TAGS, dda inv agent.build passes vrl by default (checked tasks/agent.py's build-tag path and tasks/libs/common/go.py's go build -tags invocation). That selects pkg/logs/vrl/vrl.go, whose cgo link flags require pkg/logs/vrl/rust/libvrl_filter.a, but this commit does not add that archive, so a fresh checkout or CI build that has not manually run //pkg/logs/vrl/rust:install_libs fails at link time. Keep this tag opt-in or make the Rust archive part of the normal build before enabling it by default.

Useful? React with 👍 / 👎.

Comment on lines +251 to +254
buf := make([]byte, 0, 4096)
return func(input []byte) (bool, error) {
matched := false
buf = buf[:0]

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Remove the shared jq buffer state

When logs_config.pipelines > 1 (the default is 4), provider.Start passes the same compiled ProcessingRule slice to every processor, so all pipeline goroutines share this one JQFilter closure. The captured buf slice header is mutated on every log line and is not protected, creating a data race under concurrent jq filtering; since the buffer is never used by RunFunc, remove it or make all state per-call.

Useful? React with 👍 / 👎.


var m map[string]any

err := json.Unmarshal(msg.GetContent(), &m)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Evaluate OTTL against the current rule content

If an OTTL rule follows a masking/VRL transform rule in the same ordered processing-rule list, this reparses msg.GetContent() even though earlier rules only update the local content variable and call msg.SetContent(content) after the loop. That makes OTTL conditions see the original unmasked log while regex/jq/VRL filters see prior rewrites, breaking rule ordering for configurations that combine transforms with OTTL filters; pass the current content into the OTTL evaluator instead.

Useful? React with 👍 / 👎.

# Rust library (rlib), used by rust_test.
rust_library(
name = "vrl_filter",
srcs = glob(["src/**/*.rs"]),

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3 Badge Replace the recursive Rust source glob

The Bazel review guideline in bazel/codereview_guideline.md says to flag any glob with a ** pattern because recursive globs skip subdirectories once they gain their own BUILD file and hurt incrementality. This new target uses glob(["src/**/*.rs"]) (and repeats it below for the static library), so add explicit sources or package-level BUILD files instead.

Useful? React with 👍 / 👎.

@rhy988 rhy988 changed the title [DRAFT] Log-filtering benchmark: OTTL + jq + VRL combined Ralph/alp log querying benchmark (OTTL + jq + VRL) Jul 18, 2026
@dd-octo-sts

dd-octo-sts Bot commented Jul 18, 2026

Copy link
Copy Markdown
Contributor

Go Package Import Differences

Baseline: 3114c9b
Comparison: c79d260

binaryosarchchange
agentlinuxamd64
+22, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/text/encoding/ianaindex
+text/scanner
agentlinuxarm64
+21, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/text/encoding/ianaindex
+text/scanner
agentwindowsamd64
+28, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+text/scanner
agentdarwinamd64
+29, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+text/scanner
agentdarwinarm64
+28, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+text/scanner
agentaixppc64
+30, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+text/scanner
iot-agentlinuxamd64
+52, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+net/http/httptest
+text/scanner
iot-agentlinuxarm64
+51, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+net/http/httptest
+text/scanner
heroku-agentlinuxamd64
+31, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+text/scanner
cluster-agentlinuxamd64
+36, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
cluster-agentlinuxarm64
+36, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
cluster-agent-cloudfoundrylinuxamd64
+46, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
cluster-agent-cloudfoundrylinuxarm64
+46, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
dogstatsdlinuxamd64
+51, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
dogstatsdlinuxarm64
+50, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
process-agentlinuxamd64
+58, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
process-agentlinuxarm64
+57, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
process-agentwindowsamd64
+57, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
process-agentdarwinamd64
+66, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
process-agentdarwinarm64
+65, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
heroku-process-agentlinuxamd64
+67, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
security-agentlinuxamd64
+48, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+net/http/httptest
security-agentlinuxarm64
+47, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+net/http/httptest
security-agentwindowsamd64
+57, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
system-probelinuxamd64
+44, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+net/http/httptest
system-probelinuxarm64
+43, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+net/http/httptest
system-probewindowsamd64
+66, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/gobwas/glob
+github.com/gobwas/glob/compiler
+github.com/gobwas/glob/match
+github.com/gobwas/glob/syntax
+github.com/gobwas/glob/syntax/ast
+github.com/gobwas/glob/syntax/lexer
+github.com/gobwas/glob/util/runes
+github.com/gobwas/glob/util/strings
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
system-probedarwinamd64
+49, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+net/http/httptest
system-probedarwinarm64
+48, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/davecgh/go-spew/spew
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+net/http/httptest
trace-agentlinuxamd64
+49, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
trace-agentlinuxarm64
+48, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
trace-agentwindowsamd64
+49, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
trace-agentdarwinamd64
+48, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
trace-agentdarwinarm64
+47, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
trace-agentaixppc64
+48, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
heroku-trace-agentlinuxamd64
+49, -0
+encoding/xml
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/pmezard/go-difflib/difflib
+github.com/stretchr/testify/assert
+github.com/stretchr/testify/assert/yaml
+github.com/stretchr/testify/require
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/otel/semconv/v1.40.0
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/language
+golang.org/x/text/runes
+gopkg.in/yaml.v3
+net/http/httptest
+text/scanner
otel-agentlinuxamd64
+2, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
otel-agentlinuxarm64
+2, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
privateactionrunnerlinuxamd64
+51, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+text/scanner
privateactionrunnerlinuxarm64
+50, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+text/scanner
privateactionrunnerwindowsamd64
+51, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+text/scanner
privateactionrunnerdarwinamd64
+51, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/klauspost/cpuid/v2
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+text/scanner
privateactionrunnerdarwinarm64
+50, -0
+github.com/DataDog/datadog-agent/pkg/logs/vrl
+github.com/DataDog/fastjq
+github.com/alecthomas/participle/v2
+github.com/alecthomas/participle/v2/lexer
+github.com/antchfx/xmlquery
+github.com/antchfx/xpath
+github.com/elastic/go-grok
+github.com/elastic/go-grok/patterns
+github.com/elastic/lunes
+github.com/goccy/go-json
+github.com/golang/groupcache/lru
+github.com/hashicorp/golang-lru
+github.com/hashicorp/golang-lru/simplelru
+github.com/iancoleman/strcase
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlspan
+github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs
+github.com/ua-parser/uap-go/uaparser
+github.com/zeebo/xxh3
+go.opentelemetry.io/collector/client
+go.opentelemetry.io/collector/component
+go.opentelemetry.io/collector/pdata/plog
+go.opentelemetry.io/collector/pdata/pmetric
+go.opentelemetry.io/collector/pdata/ptrace
+go.opentelemetry.io/otel/attribute
+go.opentelemetry.io/otel/attribute/internal
+go.opentelemetry.io/otel/codes
+go.opentelemetry.io/otel/metric
+go.opentelemetry.io/otel/metric/embedded
+go.opentelemetry.io/otel/semconv/v1.40.0
+go.opentelemetry.io/otel/semconv/v1.42.0
+go.opentelemetry.io/otel/trace
+go.opentelemetry.io/otel/trace/embedded
+golang.org/x/exp/constraints
+golang.org/x/net/html
+golang.org/x/net/html/atom
+golang.org/x/net/html/charset
+golang.org/x/text/encoding
+golang.org/x/text/encoding/charmap
+golang.org/x/text/encoding/htmlindex
+golang.org/x/text/encoding/ianaindex
+golang.org/x/text/encoding/internal
+golang.org/x/text/encoding/japanese
+golang.org/x/text/encoding/korean
+golang.org/x/text/encoding/simplifiedchinese
+golang.org/x/text/encoding/traditionalchinese
+golang.org/x/text/encoding/unicode
+golang.org/x/text/runes
+text/scanner

rhy988 added 2 commits July 18, 2026 15:01
- rust/LICENSE-3rdparty.csv: regenerated to include vrl and its new transitive
  deps (added by the cargo generate-lockfile runs during the VRL rebase)
- rust/deny.toml: allow CC0-1.0 (base16) and MIT-0 (borrow-or-share, via vrl's
  jsonschema dep) - both permissive licenses, not previously encountered
- .claude-plugins/datadog-agent-gopls/.claude-plugin/plugin.json: regenerated
  to include the vrl build tag (dda inv claude.set-buildtags)

Fixes CI: lint_rust_licenses, lint_gopls_plugin
comp/logs/agent/config unconditionally imports pkg/logs/vrl (build-tag
gating happens inside pkg/logs/vrl itself, not at the import site), and
several otel-labeled modules (datadogexporter, logsagentpipeline, etc.)
import comp/logs/agent/config transitively. This makes pkg/logs/vrl an
unavoidable transitive dependency of the OTel build's module graph, so it
needs the same used_by_otel label as its importers - a module-graph
consistency requirement, not a claim that OTel/OTTL functionally uses VRL.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant