8000 CEL Filter base [CONTP-809] by gabedos · Pull Request #36591 · DataDog/datadog-agent · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

8000 CEL Filter base [CONTP-809] #36591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open

CEL Filter base [CONTP-809] #36591

wants to merge 14 commits into from

Conversation

gabedos
Copy link
Contributor
@gabedos gabedos commented 8000 May 1, 2025

What does this PR do?

Creates a new component for storing filtering programs to be eventually used across various agent components.

Motivation

Centralize filtering logic. Improve filtering expressiveness through a rule engine (cel-go)

Describe how you validated your changes

Unit-tests

Possible Drawbacks / Trade-offs

Slight increase in static binary size to pull in additional cel-go packages. Although cel-go is already an indirect dependency in the Datadog Agent repo, it's completely removed from dead code elimination. The direct use of cel-go in this PR causes the binary size to increase.

Other rule engine options include Expr but that increases the static binary size by 35MB+ and causes SMP memory usage to increase by 7MB+ due to disabling dead code elimination completely as a result of the reflection methods used in expr.

Additional Notes

@github-actions github-actions bot added team/agent-runtimes long review PR is complex, plan time to review it labels May 1, 2025
Copy link
cit-pr-commenter bot commented May 1, 2025

Go Package Import Differences

Baseline: 277ce88
Comparison: ea730f9

binaryosarchchange
agentlinuxamd64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
agentlinuxarm64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
agentwindowsamd64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
agentdarwinamd64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
agentdarwinarm64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
iot-agentlinuxamd64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
iot-agentlinuxarm64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
heroku-agentlinuxamd64
+32, -0
+cel.dev/expr
+github.com/DataDog/datadog-agent/comp/core/filter/catalog
+github.com/DataDog/datadog-agent/comp/core/filter/def
+github.com/DataDog/datadog-agent/comp/core/filter/def/proto
+github.com/DataDog/datadog-agent/comp/core/filter/fx
+github.com/DataDog/datadog-agent/comp/core/filter/impl
+github.com/DataDog/datadog-agent/comp/core/filter/program
+github.com/antlr4-go/antlr/v4
+github.com/google/cel-go/cel
+github.com/google/cel-go/checker
+github.com/google/cel-go/checker/decls
+github.com/google/cel-go/common
+github.com/google/cel-go/common/ast
+github.com/google/cel-go/common/containers
+github.com/google/cel-go/common/debug
+github.com/google/cel-go/common/decls
+github.com/google/cel-go/common/env
+github.com/google/cel-go/common/functions
+github.com/google/cel-go/common/operators
+github.com/google/cel-go/common/overloads
+github.com/google/cel-go/common/runes
+github.com/google/cel-go/common/stdlib
+github.com/google/cel-go/common/types
+github.com/google/cel-go/common/types/pb
+github.com/google/cel-go/common/types/ref
+github.com/google/cel-go/common/types/traits
+github.com/google/cel-go/interpreter
+github.com/google/cel-go/parser
+github.com/google/cel-go/parser/gen
+github.com/stoewer/go-strcase
+google.golang.org/genproto/googleapis/api/expr/v1alpha1
+google.golang.org/protobuf/types/dynamicpb
cluster-agentlinuxamd64
+1, -0
+github.com/google/cel-go/common/env
cluster-agentlinuxarm64
+1, -0
+github.com/google/cel-go/common/env

@agent-platform-auto-pr

This comment was marked as outdated.

Copy link
cit-pr-commenter bot commented May 1, 2025

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: 502a5d9c-8165-4001-b402-51106360cf12

Baseline: 277ce88
Comparison: ea730f9
Diff

Optimization Goals: ✅ No significant changes detected

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_logs % cpu utilization +3.77 [+0.91, +6.62] 1 Logs bounds checks dashboard
uds_dogstatsd_to_api_cpu % cpu utilization +1.97 [+1.06, +2.88] 1 Logs
quality_gate_idle_all_features memory utilization +1.84 [+1.72, +1.96] 1 Logs bounds checks dashboard
docker_containers_cpu % cpu utilization +1.32 [-1.82, +4.47] 1 Logs
tcp_syslog_to_blackhole ingress throughput +1.28 [+1.22, +1.33] 1 Logs
otlp_ingest_logs memory utilization +0.88 [+0.76, +1.01] 1 Logs
ddot_logs memory utilization +0.81 [+0.72, +0.91] 1 Logs
quality_gate_idle memory utilization +0.74 [+0.68, +0.80] 1 Logs bounds checks dashboard
uds_dogstatsd_20mb_12k_contexts_20_senders memory utilization +0.71 [+0.66, +0.76] 1 Logs
docker_containers_memory memory utilization +0.51 [+0.43, +0.59] 1 Logs
otlp_ingest_metrics memory utilization +0.36 [+0.19, +0.52] 1 Logs
ddot_metrics memory utilization +0.35 [+0.23, +0.47] 1 Logs
file_to_blackhole_0ms_latency egress throughput +0.12 [-0.44, +0.67] 1 Logs
file_to_blackhole_500ms_latency egress throughput +0.09 [-0.49, +0.67] 1 Logs
file_to_blackhole_1000ms_latency egress throughput +0.07 [-0.54, +0.68] 1 Logs
file_to_blackhole_100ms_latency egress throughput +0.06 [-0.55, +0.67] 1 Logs
file_to_blackhole_0ms_latency_http2 egress throughput +0.02 [-0.53, +0.57] 1 Logs
file_to_blackhole_0ms_latency_http1 egress throughput -0.00 [-0.61, +0.61] 1 Logs
uds_dogstatsd_to_api ingress throughput -0.00 [-0.29, +0.29] 1 Logs
tcp_dd_logs_filter_exclude ingress throughput -0.00 [-0.01, +0.01] 1 Logs
file_to_blackhole_300ms_latency egress throughput -0.03 [-0.63, +0.57] 1 Logs
file_to_blackhole_1000ms_latency_linear_load egress throughput -0.05 [-0.28, +0.18] 1 Logs
file_tree memory utilization -1.33 [-1.53, -1.14] 1 Logs

Bounds Checks: ✅ Passed

perf experiment bounds_check_name replicates_passed links
docker_containers_cpu simple_check_run 10/10
docker_containers_memory memory_usage 10/10
docker_containers_memory simple_check_run 10/10
file_to_blackhole_0ms_latency lost_bytes 10/10
file_to_blackhole_0ms_latency memory_usage 10/10
file_to_blackhole_0ms_latency_http1 lost_bytes 10/10
file_to_blackhole_0ms_latency_http1 memory_usage 10/10
file_to_blackhole_0ms_latency_http2 lost_bytes 10/10
file_to_blackhole_0ms_latency_http2 memory_usage 10/10
file_to_blackhole_1000ms_latency memory_usage 10/10
file_to_blackhole_1000ms_latency_linear_load memory_usage 10/10
file_to_blackhole_100ms_latency lost_bytes 10/10
file_to_blackhole_100ms_latency memory_usage 10/10
file_to_blackhole_300ms_latency lost_bytes 10/10
file_to_blackhole_300ms_latency memory_usage 10/10
file_to_blackhole_500ms_latency lost_bytes 10/10
file_to_blackhole_500ms_latency memory_usage 10/10
quality_gate_idle intake_connections 10/10 bounds checks dashboard
quality_gate_idle memory_usage 10/10 bounds checks dashboard
quality_gate_idle_all_features intake_connections 10/10 bounds checks dashboard
quality_gate_idle_all_features memory_usage 10/10 bounds checks dashboard
quality_gate_logs intake_connections 10/10 bounds checks dashboard
quality_gate_logs lost_bytes 10/10 bounds checks dashboard
quality_gate_logs memory_usage 10/10 bounds checks dashboard

Explanation

Confidence level: 90.00%
Effect size tolerance: |Δ mean %| ≥ 5.00%

Performance changes are noted in the perf column of each table:

  • ✅ = significantly better comparison variant performance
  • ❌ = significantly worse comparison variant performance
  • ➖ = no significant change in performance

A regression test is an A/B test of target performance in a repeatable rig, where "performance" is measured as "comparison variant minus baseline variant" for an optimization goal (e.g., ingress throughput). Due to intrinsic variability in measuring that goal, we can only estimate its mean value for each experiment; we report uncertainty in that value as a 90.00% confidence interval denoted "Δ mean % CI".

For each experiment, we decide whether a change in performance is a "regression" -- a change worth investigating further -- if all of the following criteria are true:

  1. Its estimated |Δ mean %| ≥ 5.00%, indicating the change is big enough to merit a closer look.

  2. Its 90.00% confidence interval "Δ mean % CI" does not contain zero, indicating that if our statistical model is accurate, there is at least a 90.00% chance there is a difference in performance between baseline and comparison variants.

  3. Its configuration does not mark it "erratic".

CI Pass/Fail Decision

Passed. All Quality Gates passed.

  • quality_gate_idle, 8000 bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check lost_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.

@agent-platform-auto-pr
Copy link
Contributor
agent-platform-auto-pr bot commented May 1, 2025

Static quality checks

❌ Please find below the results from static quality gates
Comparison made with ancestor 277ce88

Error

Quality gate Delta On disk size (MiB) Delta On wire size (MiB)
agent_deb_amd64 $${+3.15}$$ $${700.19}$$ > $${697.37}$$ $${+0.57}$$ $${176.65}$$ < $${177.03}$$
agent_deb_amd64_fips $${+3.15}$$ $${698.45}$$ > $${695.59}$$ $${+0.56}$$ $${176.11}$$ < $${176.51}$$
agent_heroku_amd64 $${+3.16}$$ $${361.84}$$ > $${359.67}$$ $${+0.54}$$ $${97.06}$$ < $${97.47}$$
agent_msi $${+14.03}$$ $${973.17}$$ > $${959.86}$$ $${+0.84}$$ $${147.08}$$ < $${147.27}$$
agent_rpm_amd64 $${+3.15}$$ $${700.18}$$ > $${697.36}$$ $${+0.61}$$ $${178.26}$$ < $${178.56}$$
agent_rpm_amd64_fips $${+3.15}$$ $${698.44}$$ > $${695.58}$$ $${+0.31}$$ $${177.84}$$ < $${178.43}$$
agent_rpm_arm64 $${+3.04}$$ $${690.09}$$ > $${687.37}$$ $${+0.61}$$ $${161.68}$$ < $${161.99}$$
agent_rpm_arm64_fips $${+3.04}$$ $${688.47}$$ > $${685.72}$$ $${+0.56}$$ $${160.8}$$ < $${161.11}$$
agent_suse_amd64 $${+3.15}$$ $${700.18}$$ > $${697.36}$$ $${+0.61}$$ $${178.26}$$ < $${178.56}$$
agent_suse_amd64_fips $${+3.15}$$ $${698.44}$$ > $${695.58}$$ $${+0.31}$$ $${177.84}$$ < $${178.43}$$
agent_suse_arm64 $${+3.04}$$ $${690.09}$$ > $${687.37}$$ $${+0.61}$$ $${161.68}$$ < $${161.99}$$
agent_suse_arm64_fips $${+3.04}$$ $${688.47}$$ > $${685.72}$$ $${+0.56}$$ $${160.8}$$ < $${161.11}$$
docker_agent_amd64 $${+3.15}$$ $${783.99}$$ > $${781.16}$$ $${+0.92}$$ $${269.7}$$ > $${269.63}$$
docker_agent_arm64 $${+3.04}$$ $${797.34}$$ > $${794.62}$$ $${+0.83}$$ $${256.96}$$ < $${257.0}$$
docker_agent_jmx_amd64 $${+3.15}$$ $${975.18}$$ > $${972.35}$$ $${+0.89}$$ $${338.66}$$ > $${338.6}$$
docker_agent_jmx_arm64 $${+3.04}$$ $${977.14}$$ > $${974.41}$$ $${+0.84}$$ $${321.91}$$ < $${321.97}$$
iot_agent_deb_amd64 $${+3.16}$$ $${53.63}$$ > $${51.38}$$ $${+0.65}$$ $${13.51}$$ < $${13.79}$$
iot_agent_deb_arm64 $${+3.05}$$ $${50.99}$$ > $${48.85}$$ $${+0.54}$$ $${11.69}$$ < $${12.09}$$
iot_agent_deb_armhf $${+2.99}$$ $${50.5}$$ > $${48.42}$$ $${+0.58}$$ $${11.79}$$ < $${12.16}$$
iot_agent_rpm_amd64 $${+3.16}$$ $${53.63}$$ > $${51.38}$$ $${+0.65}$$ $${13.52}$$ < $${13.81}$$
iot_agent_rpm_arm64 $${+3.05}$$ $${50.99}$$ > $${48.85}$$ $${+0.55}$$ $${11.71}$$ < $${12.11}$$
iot_agent_suse_amd64 $${+3.16}$$ $${53.63}$$ > $${51.38}$$ $${+0.65}$$ $${13.52}$$ < $${13.81}$$
Gate failure full details
Quality gate Error type Error message
agent_deb_amd64 AssertionError Package size on disk (uncompressed package size) 734202335 is higher than the maximum allowed 731245445 by the gate !
agent_deb_amd64_fips AssertionError Package size on disk (uncompressed package size) 732382535 is higher than the maximum allowed 729378979 by the gate !
agent_heroku_amd64 AssertionError Package size on disk (uncompressed package size) 379414498 is higher than the maximum allowed 377141329 by the gate !
agent_msi AssertionError Package size on disk (uncompressed package size) 1020439355 is higher than the maximum allowed 1006486159 by the gate !
agent_rpm_amd64 AssertionError Package size on disk (uncompressed package size) 734190956 is higher than the maximum allowed 731234959 by the gate !
agent_rpm_amd64_fips AssertionError Package size on disk (uncompressed package size) 732371156 is higher than the maximum allowed 729368494 by the gate !
agent_rpm_arm64 AssertionError Package size on disk (uncompressed package size) 723606755 is higher than the maximum allowed 720759685 by the gate !
agent_rpm_arm64_fips AssertionError Package size on disk (uncompressed package size) 721911171 is higher than the maximum allowed 719029534 by the gate !
agent_suse_amd64 AssertionError Package size on disk (uncompressed package size) 734190956 is higher than the maximum allowed 731234959 by the gate !
agent_suse_amd64_fips AssertionError Package size on disk (uncompressed package size) 732371156 is higher than the maximum allowed 729368494 by the gate !
agent_suse_arm64 AssertionError Package size on disk (uncompressed package size) 723606755 is higher than the maximum allowed 720759685 by the gate !
agent_suse_arm64_fips AssertionError Package size on disk (uncompressed package size) 721911171 is higher than the maximum allowed 719029534 by the gate !
docker_agent_amd64 AssertionError Image size on wire (compressed image size) 282798360 is higher than the maximum allowed 282727546 by the gate !
Image size on disk (uncompressed image size) 822073454 is higher than the maximum allowed 819105628 by the gate !
docker_agent_arm64 AssertionError Image size on disk (uncompressed image size) 836075345 is higher than the maximum allowed 833219461 by the gate !
docker_agent_jmx_amd64 AssertionError Image size on wire (compressed image size) 355106719 is higher than the maximum allowed 355047833 by the gate !
Image size on disk (uncompressed image size) 1022554315 is higher than the maximum allowed 1019582873 by the gate !
docker_agent_jmx_arm64 AssertionError Image size on disk (uncompressed image size) 1024600601 is higher than the maximum allowed 1021742940 by the gate !
iot_agent_deb_amd64 AssertionError Package size on disk (uncompressed package size) 56235085 is higher than the maximum allowed 53875834 by the gate !
iot_agent_deb_arm64 AssertionError Package size on disk (uncompressed package size) 53462421 is higher than the maximum allowed 51222937 by the gate !
iot_agent_deb_armhf AssertionError Package size on disk (uncompressed package size) 52955017 is higher than the maximum allowed 50772049 by the gate !
iot_agent_rpm_amd64 AssertionError Package size on disk (uncompressed package size) 56235598 is higher than the maximum allowed 53875834 by the gate !
iot_agent_rpm_arm64 AssertionError Package size on disk (uncompressed package size) 53462934 is higher than the maximum allowed 51222937 by the gate !
iot_agent_suse_amd64 AssertionError Package size on disk (uncompressed package size) 56235598 is higher than the maximum allowed 53875834 by the gate !

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.

Successful checks

Info

Quality gate Delta On disk size (MiB) Delta On wire size (MiB)
docker_agent_windows1809 $${+4.16}$$ $${1184.83}$$ < $${1185.29}$$ $${+1.25}$$ $${417.37}$$ < $${420.95}$$
docker_agent_windows1809_core $${+4.16}$$ $${5914.79}$$ < $${5915.25}$$ $${0}$$ $${2048.0}$$ < $${2049.0}$$
docker_agent_windows1809_core_jmx $${+26.44}$$ $${6058.69}$$ < $${6059.4}$$ $${0}$$ $${2048.0}$$ < $${2049.0}$$
docker_agent_windows1809_jmx $${+4.16}$$ $${1306.46}$$ < $${1306.92}$$ $${+1.24}$$ $${459.74}$$ < $${463.21}$$
docker_agent_windows2022 $${+4.15}$$ $${1203.99}$$ < $${1204.42}$$ $${+1.2}$$ $${430.09}$$ < $${433.71}$$
docker_agent_windows2022_core $${+3.93}$$ $${5887.86}$$ < $${5888.56}$$ $${0}$$ $${2048.0}$$ < $${2049.0}$$
docker_agent_windows2022_core_jmx $${+4.27}$$ $${6009.76}$$ < $${6009.95}$$ $${0}$$ $${2048.0}$$ < $${2049.0}$$
docker_agent_windows2022_jmx $${+4.08}$$ $${1325.72}$$ < $${1326.13}$$ $${+1.16}$$ $${472.39}$$ < $${475.99}$$
docker_cluster_agent_amd64 $${+0.71}$$ $${213.58}$$ < $${213.79}$$ $${+0.19}$$ $${72.58}$$ < $${73.33}$$
docker_cluster_agent_arm64 $${+0.69}$$ $${229.45}$$ < $${229.64}$$ $${+0.17}$$ $${68.85}$$ < $${69.6}$$
docker_cws_instrumentation_amd64 $${0}$$ $${7.08}$$ < $${7.12}$$ $${+0}$$ $${2.95}$$ < $${3.29}$$
docker_cws_instrumentation_arm64 $${0}$$ $${6.69}$$ < $${6.92}$$ $${-0}$$ $${2.7}$$ < $${3.07}$$
docker_dogstatsd_amd64 $${+0}$$ $${39.22}$$ < $${39.57}$$ $${+0}$$ $${15.12}$$ < $${15.76}$$
docker_dogstatsd_arm64 $${0}$$ $${37.88}$$ < $${38.2}$$ $${-0}$$ $${14.54}$$ < $${14.83}$$
dogstatsd_deb_amd64 $${0}$$ $${30.45}$$ < $${31.4}$$ $${-0}$$ $${8.0}$$ < $${8.95}$$
dogstatsd_deb_arm64 $${0}$$ $${29.02}$$ < $${29.97}$$ $${-0}$$ $${6.94}$$ < $${7.89}$$
dogstatsd_rpm_amd64 $${0}$$ $${30.45}$$ < $${31.4}$$ $${+0}$$ $${8.01}$$ < $${8.96}$$
dogstatsd_suse_amd64 $${0}$$ $${30.45}$$ < $${31.4}$$ $${+0}$$ $${8.01}$$ < $${8.96}$$

@gabedos gabedos force-pushed the gabedos/cel-filter-base branch 3 times, most recently from 6f01c1a to 16ab220 Compare May 30, 2025 13:56
@gabedos gabedos added team/container-platform The Container Platform Team changelog/no-changelog qa/done QA done before merge and regressions are covered by tests and removed team/agent-runtimes labels May 30, 2025
@gabedos gabedos force-pushed the gabedos/cel-filter-base branch from 16ab220 to b425ec8 Compare May 30, 2025 15:23
@gabedos gabedos force-pushed the gabedos/cel-filter-base branch from b425ec8 to 07c77f4 Compare May 30, 2025 17:02
@gabedos gabedos force-pushed the gabedos/cel-filter-base branch from 4464510 to dc4786a Compare June 5, 2025 21:25
//

// Container represents a filterable container object.
type Container struct {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

You can look through the previous commits to see the iterations that this Container struct has looked like.

What I eventually landed on in the end was using an embedded proto struct. I thought of using a proto struct because it allows third party libraries like CEL-go to be able to understand the object and its attributes. Thus, the CEL parser at compile time is able to throw precise errors if users ever misconfigure any filter. We still have access to all the attributes if we ever decide to use them in some other way.

Currently I am thinking of providing functions to help other users of this component to create the Filterable structs from the wmeta structs. However, this is something that we could theoretically do within the component itself as well. For the case of IsContainerExcluded we need to have the container's owner. This could be either a pod, task, or maybe something else. We could store a reference to wmeta internally and query for the container's owner. My only thought is that this could be repetitive work if the client already has the owner pod for other reasons but on the flip side would make the interface simpler.

@gabedos gabedos force-pushed the gabedos/cel-filter-base branch from 953ddf6 to 6ca11c0 Compare June 9, 2025 15:32
@gabedos gabedos force-pushed the gabedos/cel-filter-base branch from 6ca11c0 to a253db6 Compare June 9, 2025 15:38
@gabedos gabedos changed the title CEL Filter base CEL Filter base [CONTP-809] Jun 11, 2025
@gabedos gabedos force-pushed the gabedos/cel-filter-base branch from be44b55 to 7418a85 Compare June 12, 2025 19:41
@gabedos gabedos marked this pull request as ready for review June 20, 2025 15:44
@gabedos gabedos requested review from a team as code owners June 20, 2025 15:44
@pgimalac
Copy link
Member

Is this component supposed to be imported in the heroku and iot agents ?
Also does it need to be imported on Windows ?

@gabedos
Copy link
Contributor Author
gabedos commented Jun 20, 2025

Is this component supposed to be imported in the heroku and iot agents ? Also does it need to be imported on Windows ?

Hey @pgimalac,

In regards to Windows, I think this component would still be used in that environment because all of the core agent functionalities like Autodiscovery and Container corechecks still run on windows and we would want to give the same experience for users regardless of OS.

For heroku and iot agents... I'm honestly not as familiar what the Agent does in these environments. It seems like autodiscovery is pulled into all of these flavors still? and one of the primary use cases of these filters would be to restrict what is being autodiscovered. I know in the next quarter we also want to start autodiscovering log collection on host processes (but once again unfamiliar with heroku/iot if we even collect logs there). Would appreciate if you have any significant missing context related to these 2 flavors!

Copy link
Member
@pgimalac pgimalac left a comment

Choose a reason for hiding this comment

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

LGTM, just some nitpicks

As discussed I think the size increase for the IoT Agent is acceptable, and for msi it's actually not such a big increase, the comment has some known issues

Comment on lines +80 to +85
parts := strings.SplitN(filter, ":", 2)
if len(parts) != 2 {
return "", fmt.Errorf("invalid filter format: %s", filter)
}

key, value := parts[0], parts[1]
Copy link
Member

Choose a reason for hiding this comment

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

🥜 nitpick: ‏You can use strings.Cut

Suggested change
parts := strings.SplitN(filter, ":", 2)
if len(parts) != 2 {
return "", fmt.Errorf("invalid filter format: %s", filter)
}
key, value := parts[0], parts[1]
key, value, ok := strings.Cut(filter, ":")
if !ok {
return "", fmt.Errorf("invalid filter format: %s", filter)
}

Comment on lines +109 to +119
// CreatePod creates a Filterable Pod object from a workloadmeta.KubernetesPod.
func CreatePod(pod workloadmeta.KubernetesPod) *Pod {
return &Pod{
FilterPod: &typedef.FilterPod{
Id: pod.ID,
Name: pod.Name,
Namespace: pod.Namespace,
Annotations: pod.Annotations,
},
}
}
Copy link
Member

Choose a reason for hiding this comment

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

💬 suggestion: ‏I believe this is only used in tests right now, if it's going to stay that way it should be moved to a test file, otherwise maybe a workloadmetautils subpackage would be best ?
That way we avoid a direct dependency from the filter component to workloadmeta types by default

Same for CreateContainer

Comment on lines +17 to +18
// GetSharedMetricsFilters identifies the filtering component's individual Container Filters for container metrics.
func GetSharedMetricsFilters() [][]ContainerFilter {
Copy link
Member

Choose a reason for hiding this comment

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

Is this used anywhere ?

Copy link
Member

Choose a reason for hiding this comment

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

Same for everything in this file actually ?

@pgimalac pgimalac requested a review from a team June 24, 2025 08:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog/no-changelog long review PR is complex, plan time to review it qa/done QA done before merge and regressions are covered by tests team/container-platform The Container Platform Team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants
0