Skip to content

Commit 98ae65b

Browse files
authored
[connector/otlpjson] Move stability to alpha (#34253)
**Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> This is the 3rd PR for the new otlpjson connector (#34208). Moves its stability to `alpha`. **Link to tracking Issue:** <Issue number if applicable> #34208 #34239 #34249 **Testing:** <Describe what testing was performed and which tests were added.> ~ **Documentation:** <Describe the documentation added.> Updated --------- Signed-off-by: ChrsMark <[email protected]>
1 parent 14923a8 commit 98ae65b

File tree

9 files changed

+44
-16
lines changed

9 files changed

+44
-16
lines changed

.chloggen/otlpjsoncon_alpha.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: enhancement
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
7+
component: otlpjsonconnector
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Move connector's stability to alpha.
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [34208, 34253]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# If your change doesn't affect end users or the exported elements of any package,
21+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
22+
# Optional: The change log or logs in which this entry should be included.
23+
# e.g. '[user]' or '[user, api]'
24+
# Include 'user' if the change is relevant to end users.
25+
# Include 'api' if there is a change to a library API.
26+
# Default: '[user]'
27+
change_logs: [user]

cmd/otelcontribcol/builder-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ connectors:
226226
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/exceptionsconnector v0.105.0
227227
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/failoverconnector v0.105.0
228228
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector v0.105.0
229+
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/otlpjsonconnector v0.105.0
229230
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/roundrobinconnector v0.105.0
230231
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/routingconnector v0.105.0
231232
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector v0.105.0
@@ -455,6 +456,7 @@ replaces:
455456
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/exceptionsconnector => ../../connector/exceptionsconnector
456457
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/failoverconnector => ../../connector/failoverconnector
457458
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector => ../../connector/grafanacloudconnector
459+
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/otlpjsonconnector => ../../connector/otlpjsonconnector
458460
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/roundrobinconnector => ../../connector/roundrobinconnector
459461
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/routingconnector => ../../connector/routingconnector
460462
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector => ../../connector/servicegraphconnector

cmd/otelcontribcol/components.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/otelcontribcol/go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ require (
1414
github.com/open-telemetry/opentelemetry-collector-contrib/connector/exceptionsconnector v0.105.0
1515
github.com/open-telemetry/opentelemetry-collector-contrib/connector/failoverconnector v0.105.0
1616
github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector v0.105.0
17+
github.com/open-telemetry/opentelemetry-collector-contrib/connector/otlpjsonconnector v0.105.0
1718
github.com/open-telemetry/opentelemetry-collector-contrib/connector/roundrobinconnector v0.105.0
1819
github.com/open-telemetry/opentelemetry-collector-contrib/connector/routingconnector v0.105.0
1920
github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector v0.105.0
@@ -1266,6 +1267,8 @@ replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/fail
12661267

12671268
replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector => ../../connector/grafanacloudconnector
12681269

1270+
replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/otlpjsonconnector => ../../connector/otlpjsonconnector
1271+
12691272
replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/roundrobinconnector => ../../connector/roundrobinconnector
12701273

12711274
replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/routingconnector => ../../connector/routingconnector

connector/otlpjsonconnector/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
| Issues | [![Open issues](https://img.shields.io/github/issues-search/open-telemetry/opentelemetry-collector-contrib?query=is%3Aissue%20is%3Aopen%20label%3Aconnector%2Fotlpjson%20&label=open&color=orange&logo=opentelemetry)](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues?q=is%3Aopen+is%3Aissue+label%3Aconnector%2Fotlpjson) [![Closed issues](https://img.shields.io/github/issues-search/open-telemetry/opentelemetry-collector-contrib?query=is%3Aissue%20is%3Aclosed%20label%3Aconnector%2Fotlpjson%20&label=closed&color=blue&logo=opentelemetry)](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues?q=is%3Aclosed+is%3Aissue+label%3Aconnector%2Fotlpjson) |
88
| [Code Owners](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CONTRIBUTING.md#becoming-a-code-owner) | [@djaglowski](https://www.github.com/djaglowski), [@ChrsMark](https://www.github.com/ChrsMark) |
99

10-
[development]: https://github.com/open-telemetry/opentelemetry-collector#development
10+
[alpha]: https://github.com/open-telemetry/opentelemetry-collector#alpha
1111
[contrib]: https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib
1212

1313
## Supported Pipeline Types
1414

1515
| [Exporter Pipeline Type] | [Receiver Pipeline Type] | [Stability Level] |
1616
| ------------------------ | ------------------------ | ----------------- |
17-
| logs | metrics | [development] |
18-
| logs | traces | [development] |
19-
| logs | logs | [development] |
17+
| logs | metrics | [alpha] |
18+
| logs | traces | [alpha] |
19+
| logs | logs | [alpha] |
2020

2121
[Exporter Pipeline Type]: https://github.com/open-telemetry/opentelemetry-collector/blob/main/connector/README.md#exporter-pipeline-type
2222
[Receiver Pipeline Type]: https://github.com/open-telemetry/opentelemetry-collector/blob/main/connector/README.md#receiver-pipeline-type

connector/otlpjsonconnector/config.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,3 @@
44
package otlpjsonconnector // import "github.com/open-telemetry/opentelemetry-collector-contrib/connector/otlpjsonconnector"
55

66
type Config struct{}
7-
8-
func (c *Config) Validate() error {
9-
return nil
10-
}

connector/otlpjsonconnector/config_test.go

Lines changed: 0 additions & 4 deletions
This file was deleted.

connector/otlpjsonconnector/internal/metadata/generated_status.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
type: otlpjson
2+
scope_name: otelcol/otlpjson
23

34
status:
45
class: connector
56
stability:
6-
development: [logs_to_metrics, logs_to_traces, logs_to_logs]
7+
alpha: [logs_to_metrics, logs_to_traces, logs_to_logs]
78
distributions: [contrib]
89
codeowners:
910
active: [djaglowski, ChrsMark]

0 commit comments

Comments
 (0)