Skip to content

Commit 3fffced

Browse files
authored
[connectors] Add forward and count connectors to build (#18501)
Add forward and count connectors to build
1 parent 8a90ef5 commit 3fffced

File tree

6 files changed

+49
-1
lines changed

6 files changed

+49
-1
lines changed

.chloggen/add-count-connector.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: new_component
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
5+
component: countconnector
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Add count connector to build
9+
10+
# One or more tracking issues related to the change
11+
issues: [18501]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext:

.chloggen/add-forward-connector.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: new_component
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
5+
component: forwardconnector
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Add forward connector to build
9+
10+
# One or more tracking issues related to the change
11+
issues: [18501]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext:

cmd/otelcontribcol/builder-config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ receivers:
172172
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.71.0
173173
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver v0.71.0
174174

175+
connectors:
176+
- gomod: go.opentelemetry.io/collector/connector/forwardconnector v0.71.0
177+
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.71.0
178+
175179
replaces:
176180
- github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage => ../../extension/storage
177181
- github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal => ../../pkg/batchpersignal
@@ -370,3 +374,4 @@ replaces:
370374
- github.com/mattn/go-ieproxy => github.com/mattn/go-ieproxy v0.0.1
371375
- github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest => ../../pkg/pdatatest
372376
- github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil => ../../pkg/pdatautil
377+
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector => ../../connector/countconnector

cmd/otelcontribcol/components.go

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/otelcontribcol/go.mod

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/cmd/otelcontrib
55
go 1.18
66

77
require (
8+
github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.71.0
89
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter v0.71.0
910
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awscloudwatchlogsexporter v0.71.0
1011
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsemfexporter v0.71.0
@@ -158,6 +159,7 @@ require (
158159
github.com/stretchr/testify v1.8.1
159160
go.opentelemetry.io/collector v0.71.0
160161
go.opentelemetry.io/collector/component v0.71.0
162+
go.opentelemetry.io/collector/connector/forwardconnector v0.71.0
161163
go.opentelemetry.io/collector/exporter/loggingexporter v0.71.0
162164
go.opentelemetry.io/collector/exporter/otlpexporter v0.71.0
163165
go.opentelemetry.io/collector/exporter/otlphttpexporter v0.71.0
@@ -1019,3 +1021,5 @@ replace github.com/mattn/go-ieproxy => github.com/mattn/go-ieproxy v0.0.1
10191021
replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest => ../../pkg/pdatatest
10201022

10211023
replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil => ../../pkg/pdatautil
1024+
1025+
replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector => ../../connector/countconnector

cmd/otelcontribcol/go.sum

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)