Skip to content
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

Remove deprecated otelcol.exporter.jaeger #5171

Merged
merged 10 commits into from
Oct 11, 2023
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ internal API changes are not present.
Main (unreleased)
-----------------

### Breaking changes

- Remove `otelcol.exporter.jaeger` component (@hainenber)

### Features

- Added a new `stage.decolorize` stage to `loki.process` component which
Expand Down
1 change: 0 additions & 1 deletion component/all/all.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ import (
_ "github.com/grafana/agent/component/otelcol/connector/servicegraph" // Import otelcol.connector.servicegraph
_ "github.com/grafana/agent/component/otelcol/connector/spanlogs" // Import otelcol.connector.spanlogs
_ "github.com/grafana/agent/component/otelcol/connector/spanmetrics" // Import otelcol.connector.spanmetrics
_ "github.com/grafana/agent/component/otelcol/exporter/jaeger" // Import otelcol.exporter.jaeger
_ "github.com/grafana/agent/component/otelcol/exporter/loadbalancing" // Import otelcol.exporter.loadbalancing
_ "github.com/grafana/agent/component/otelcol/exporter/logging" // Import otelcol.exporter.logging
_ "github.com/grafana/agent/component/otelcol/exporter/loki" // Import otelcol.exporter.loki
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func Test_TopicDiscovery(t *testing.T) {
}
group.mut.Unlock()
return reflect.DeepEqual([]string{"topic1"}, group.GetTopics())
}, time.Second, time.Millisecond, "expected topics: %v, got: %v", []string{"topic1"}, group.GetTopics())
}, 5*time.Second, 100*time.Millisecond, "expected topics: %v, got: %v", []string{"topic1"}, group.GetTopics())

client.UpdateTopics([]string{"topic1", "topic2"})

Expand All @@ -75,7 +75,7 @@ func Test_TopicDiscovery(t *testing.T) {
}
group.mut.Unlock()
return reflect.DeepEqual([]string{"topic1", "topic2"}, group.GetTopics())
}, time.Second, time.Millisecond, "expected topics: %v, got: %v", []string{"topic1", "topic2"}, group.GetTopics())
}, 5*time.Second, 100*time.Millisecond, "expected topics: %v, got: %v", []string{"topic1", "topic2"}, group.GetTopics())

require.NoError(t, ts.Stop())
require.True(t, closed)
Expand Down
102 changes: 0 additions & 102 deletions component/otelcol/exporter/jaeger/jaeger.go

This file was deleted.

8 changes: 4 additions & 4 deletions component/otelcol/processor/discovery/discovery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ func Test_Insert(t *testing.T) {
"key": "ip",
"value": { "stringValue": "1.2.2.2" }
},
{
"key": "test_label",
"value": { "stringValue": "test_val2" }
},
{
"key": "test.label.with.dots",
"value": { "stringValue": "test.val2.with.dots" }
},
{
"key": "test_label",
"value": { "stringValue": "test_val2" }
}]
},
"scopeSpans": [{
Expand Down
199 changes: 0 additions & 199 deletions docs/sources/flow/reference/components/otelcol.exporter.jaeger.md

This file was deleted.

Loading