Skip to content

Commit 4537977

Browse files
mx-psishalper2
authored andcommitted
[exporter/coralogix] Mark as unmaintained (open-telemetry#16548)
* [exporter/coralogix] Mark as unmaintained * Add release note and line on README
1 parent 90f911d commit 4537977

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: deprecation
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
5+
component: exporter/coralogix
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Mark Coralogix exporter as unmaintained
9+
10+
# One or more tracking issues related to the change
11+
issues: [16548]

exporter/coralogixexporter/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
| Status | |
44
| ------------------------ |----------------------- |
5-
| Stability | traces, metrics [beta] |
6-
| | logs [alpha] |
5+
| Stability | [unmaintained] |
76
| Supported pipeline types | traces, metrics, logs |
87
| Distributions | [contrib] |
98

9+
**Note**: This component was marked as unmaintained on 2022-11-30, it will be removed from official builds on 2023-05-30
10+
1011
The Coralogix exporter sends traces, metrics and logs to [Coralogix](https://coralogix.com/).
1112

1213
> Please review the Collector's [security
@@ -231,6 +232,5 @@ exporters:
231232
Our world-class customer success team is available 24/7 to walk you through the setup for this exporter and answer any questions that may come up.
232233
Feel free to reach out to us **via our in-app chat** or by sending us an email to [[email protected]](mailto:[email protected]).
233234
234-
[alpha]:https://github.com/open-telemetry/opentelemetry-collector#alpha
235-
[beta]:https://github.com/open-telemetry/opentelemetry-collector#beta
235+
[unmaintained]:https://github.com/open-telemetry/opentelemetry-collector#unmaintained
236236
[contrib]:https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib

exporter/coralogixexporter/config.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ import (
2727
const (
2828
typeStr = "coralogix"
2929
// The stability level of the exporter.
30-
stability = component.StabilityLevelBeta
30+
// Marked as unmantained on 2022-11-30, will be removed from official builds on 2023-05-30.
31+
stability = component.StabilityLevelUnmaintained
3132
)
3233

3334
// Config defines by Coralogix.

exporter/coralogixexporter/factory.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ func NewFactory() component.ExporterFactory {
3232
createDefaultConfig,
3333
component.WithTracesExporter(createTraceExporter, stability),
3434
component.WithMetricsExporter(createMetricsExporter, stability),
35-
component.WithLogsExporter(createLogsExporter, component.StabilityLevelAlpha),
35+
// Marked as unmantained on 2022-11-30, will be removed from official builds on 2023-05-30.
36+
component.WithLogsExporter(createLogsExporter, component.StabilityLevelUnmaintained),
3637
)
3738
}
3839

0 commit comments

Comments
 (0)