-
Notifications
You must be signed in to change notification settings - Fork 256
[EDOT] - add header setter extension #9903
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
Changes from 9 commits
c534ffb
d575bf2
bb17a98
18901db
bc8ef92
7f439e5
f21426f
b4a1792
8cbb4a1
a1ae270
8101f16
2969963
6ed6e9b
ad0a24a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| kind: enhancement | ||
| summary: add headersetter extension to EDOT | ||
| component: elastic-agent | ||
| issue: https://github.com/elastic/elastic-agent/issues/9889 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,7 @@ import ( | |
| "go.opentelemetry.io/collector/receiver" | ||
|
|
||
| // Receivers: | ||
| headersetterextension "github.com/open-telemetry/opentelemetry-collector-contrib/extension/headerssetterextension" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is not a receiver, extension section is below (lines 63 and down) @swiatekm @VihasMakwana
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. noticed because it caused some merge conflicts in #9858
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added a small fix in the PR: #10079 |
||
| dockerstatsreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver" | ||
| filelogreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver" // for collecting log files | ||
| hostmetricsreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/hostmetricsreceiver" | ||
|
|
@@ -175,6 +176,7 @@ func components(extensionFactories ...extension.Factory) func() (otelcol.Factori | |
| k8sobserver.NewFactory(), | ||
| apikeyauthextension.NewFactory(), | ||
| apmconfigextension.NewFactory(), | ||
| headersetterextension.NewFactory(), | ||
| beatsauthextension.NewFactory(), | ||
| } | ||
| extensions = append(extensions, extensionFactories...) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.