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

fixed shorthand naming convention (honeycomb) #2530

Merged
merged 1 commit into from
May 12, 2023
Merged
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
16 changes: 8 additions & 8 deletions docs/docs/configuration/connecting-to-data-stores/honeycomb.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Examples of configuring Tracetest with Honeycomb can be found in the [`examples`

In your OpenTelemetry Collector config file:

- Set the `exporter` to `otlp/tt`
- Set the `exporter` to `otlp/tracetest`
- Set the `endpoint` to your Tracetest instance on port `4317`

:::tip
Expand All @@ -19,7 +19,7 @@ If you are running Tracetest with Docker, and Tracetest's service name is `trace

Additionally, add another config:

- Set the `exporter` to `otlp/hc`
- Set the `exporter` to `otlp/honeycomb`
- Set the `endpoint` pointing to the Honeycomb API and using Honeycomb API KEY

```yaml
Expand All @@ -41,27 +41,27 @@ exporters:
logging:
logLevel: debug
# OTLP for Tracetest
otlp/tt:
otlp/tracetest:
endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector
tls:
insecure: true
# OTLP for Honeycomb
otlp/hc:
otlp/honeycomb:
endpoint: "api.honeycomb.io:443"
headers:
"x-honeycomb-team": "YOUR_API_KEY"
# Read more in docs here: https://docs.honeycomb.io/getting-data-in/otel-collector/

service:
pipelines:
traces/tt:
traces/tracetest:
receivers: [otlp]
processors: [batch]
exporters: [otlp/tt]
traces/hc:
exporters: [otlp/tracetest]
traces/honeycomb:
receivers: [otlp]
processors: [batch]
exporters: [logging, otlp/hc]
exporters: [logging, otlp/honeycomb]
```

## Configure Tracetest to Use Honeycomb as a Trace Data Store
Expand Down