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

maint: Add Sunset notice to collector README #232

Merged
merged 3 commits into from
May 1, 2023
Merged
Changes from 1 commit
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
29 changes: 29 additions & 0 deletions charts/opentelemetry-collector/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# Sunset Notice

The OpenTelemetry Collector for Honeycomb helm chart is being sunset in favor of the [OpenTelemetry community's opentelemetry-collector helm chart](https://github.com/open-telemetry/opentelemetry-helm-charts/tree/main/charts/opentelemetry-collector).
This community chart provides an overall better experience deploying and managing the collector in kubernetes.

The primary difference between this chart and the community chart is that the community chart does not include a `honeycomb` section for specifying your API key, API host, and dataset name. Instead, you must configure an otlp/otlphttp exporter following [our Collector documentation](https://docs.honeycomb.io/getting-data-in/otel-collector/). A basic values.yaml would look like
TylerHelmuth marked this conversation as resolved.
Show resolved Hide resolved

```yaml
mode: deployment

config:
exporters:
otlp:
endpoint: "api.honeycomb.io:443"
headers:
"x-honeycomb-team": "YOUR_API_KEY"
"x-honeycomb-dataset": "YOUR_DATASET_NAME"
processors:
pipelines:
metrics:
exporters: [otlp]
traces:
exporters: [otlp]
logs:
exporters: [otlp]
```

See https://github.com/honeycombio/helm-charts/issues/231 for more details.

# OpenTelemetry Collector for Honeycomb

[OpenTelemetry](https://opentelemetry.io) provides a single set of APIs, libraries, agents, and collector services to
Expand Down