diff --git a/exporter/pulsarexporter/README.md b/exporter/pulsarexporter/README.md index c011e3c74ba4..1ac60df43bd9 100644 --- a/exporter/pulsarexporter/README.md +++ b/exporter/pulsarexporter/README.md @@ -2,9 +2,9 @@ | Status | | | ------------------------ |-----------------------| -| Stability | [in-development] | +| Stability | [alpha] | | Supported pipeline types | traces, logs, metrics | -| Distributions | none | +| Distributions | [contrib] | Pulsar exporter exports logs, metrics, and traces to Pulsar. This exporter uses a synchronous producer that blocks and able to batch messages. @@ -73,4 +73,6 @@ exporters: tls_trust_certs_file_path: ca.pem ``` -[in-development]:https://github.com/open-telemetry/opentelemetry-collector#in-development +[alpha]:https://github.com/open-telemetry/opentelemetry-collector#alpha +[contrib]:https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib + diff --git a/exporter/pulsarexporter/factory.go b/exporter/pulsarexporter/factory.go index fa10e9bc07c7..a9b8a40d9834 100644 --- a/exporter/pulsarexporter/factory.go +++ b/exporter/pulsarexporter/factory.go @@ -26,7 +26,7 @@ import ( const ( typeStr = "pulsar" // The stability level of the exporter. - stability = component.StabilityLevelInDevelopment + stability = component.StabilityLevelAlpha defaultTracesTopic = "otlp_spans" defaultMetricsTopic = "otlp_metrics"