Skip to content

Commit

Permalink
fix(docs): fix shorthand naming convention in honeycomb (#2530)
Browse files Browse the repository at this point in the history
  • Loading branch information
alayshia authored May 12, 2023
1 parent 4a8ae72 commit 990caf7
Showing 1 changed file with 8 additions and 8 deletions.
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

0 comments on commit 990caf7

Please sign in to comment.