Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[exporter/pulsarexporter] Update stability to alpha. #13392

Merged
merged 2 commits into from
Aug 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions exporter/pulsarexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

| Status | |
| ------------------------ |-----------------------|
| Stability | [in-development] |
| Stability | [alpha] |
| Supported pipeline types | traces, logs, metrics |
| Distributions | none |
| Distributions | [contrib] |
dmitryax marked this conversation as resolved.
Show resolved Hide resolved

Pulsar exporter exports logs, metrics, and traces to Pulsar. This exporter uses a synchronous producer
that blocks and able to batch messages.
Expand Down Expand Up @@ -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

2 changes: 1 addition & 1 deletion exporter/pulsarexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down