Skip to content

Commit

Permalink
[exporter/coralogix] Mark as unmaintained (#16548)
Browse files Browse the repository at this point in the history
* [exporter/coralogix] Mark as unmaintained

* Add release note and line on README
  • Loading branch information
mx-psi authored Nov 30, 2022
1 parent 3e87595 commit 4d109c3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .chloggen/mx-psi_coralogix-unmaintained.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: deprecation

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: exporter/coralogix

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Mark Coralogix exporter as unmaintained

# One or more tracking issues related to the change
issues: [16548]
8 changes: 4 additions & 4 deletions exporter/coralogixexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

| Status | |
| ------------------------ |----------------------- |
| Stability | traces, metrics [beta] |
| | logs [alpha] |
| Stability | [unmaintained] |
| Supported pipeline types | traces, metrics, logs |
| Distributions | [contrib] |

**Note**: This component was marked as unmaintained on 2022-11-30, it will be removed from official builds on 2023-05-30

The Coralogix exporter sends traces, metrics and logs to [Coralogix](https://coralogix.com/).

> Please review the Collector's [security
Expand Down Expand Up @@ -231,6 +232,5 @@ exporters:
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.
Feel free to reach out to us **via our in-app chat** or by sending us an email to [[email protected]](mailto:[email protected]).
[alpha]:https://github.com/open-telemetry/opentelemetry-collector#alpha
[beta]:https://github.com/open-telemetry/opentelemetry-collector#beta
[unmaintained]:https://github.com/open-telemetry/opentelemetry-collector#unmaintained
[contrib]:https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib
3 changes: 2 additions & 1 deletion exporter/coralogixexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ import (
const (
typeStr = "coralogix"
// The stability level of the exporter.
stability = component.StabilityLevelBeta
// Marked as unmantained on 2022-11-30, will be removed from official builds on 2023-05-30.
stability = component.StabilityLevelUnmaintained
)

// Config defines by Coralogix.
Expand Down
3 changes: 2 additions & 1 deletion exporter/coralogixexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ func NewFactory() component.ExporterFactory {
createDefaultConfig,
component.WithTracesExporter(createTraceExporter, stability),
component.WithMetricsExporter(createMetricsExporter, stability),
component.WithLogsExporter(createLogsExporter, component.StabilityLevelAlpha),
// Marked as unmantained on 2022-11-30, will be removed from official builds on 2023-05-30.
component.WithLogsExporter(createLogsExporter, component.StabilityLevelUnmaintained),
)
}

Expand Down

0 comments on commit 4d109c3

Please sign in to comment.