File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 415415/comp /forwarder /eventplatform @ DataDog/agent-log-pipelines
416416/comp /forwarder /eventplatformreceiver @ DataDog/agent-log-pipelines
417417/comp /forwarder /orchestrator @ DataDog/kubernetes-experiences
418+ /comp /logs /smartadaptivesampling @ DataDog/agent-log-pipelines @ DataDog/q-branch
418419/comp /metadata /clusteragent @ DataDog/container-platform
419420/comp /metadata /clusterchecks @ DataDog/container-platform
420421/comp /metadata /haagent @ DataDog/network-device-monitoring-core
Original file line number Diff line number Diff line change @@ -412,6 +412,12 @@ send logs.
412412
413413Package kubehealth provides a dependency-injectible health object for kubernetes liveness checks
414414
415+ ### [ comp/logs/smartadaptivesampling] ( https://pkg.go.dev/github.com/DataDog/datadog-agent/comp/logs/smartadaptivesampling )
416+
417+ * Datadog Team* : agent-log-pipelines q-branch
418+
419+ Package smartadaptivesampling defines the smart adaptive sampling component.
420+
415421### [ comp/logs/streamlogs] ( https://pkg.go.dev/github.com/DataDog/datadog-agent/comp/logs/streamlogs )
416422
417423Package streamlogs is metadata provider for streamlogs
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ go_library(
1414 "//comp/logs/agent/mock" ,
1515 "//comp/logs/auditor/fx" ,
1616 "//comp/logs/auditor/mock" ,
17+ "//comp/logs/smartadaptivesampling/fx" ,
1718 "//comp/logs/streamlogs/fx" ,
1819 "//pkg/util/fxutil" ,
1920 ],
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import (
1010 kubehealthfx "github.com/DataDog/datadog-agent/comp/logs-library/kubehealth/fx"
1111 agentfx "github.com/DataDog/datadog-agent/comp/logs/agent/fx"
1212 auditorfx "github.com/DataDog/datadog-agent/comp/logs/auditor/fx"
13+ smartadaptivesamplingfx "github.com/DataDog/datadog-agent/comp/logs/smartadaptivesampling/fx"
1314 streamlogs "github.com/DataDog/datadog-agent/comp/logs/streamlogs/fx"
1415 "github.com/DataDog/datadog-agent/pkg/util/fxutil"
1516)
@@ -21,6 +22,7 @@ func Bundle() fxutil.BundleOptions {
2122 return fxutil .Bundle (
2223 kubehealthfx .Module (),
2324 agentfx .Module (),
25+ smartadaptivesamplingfx .Module (),
2426 streamlogs .Module (),
2527 auditorfx .Module (),
2628 )
You can’t perform that action at this time.
0 commit comments