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

Add Axiom as an OTEL destination #734

Closed
wants to merge 6 commits into from
Closed
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
1 change: 1 addition & 0 deletions src/config/sideBarData.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ export const sideBarData = [
label: "Partners",
items: [
{label: "AppDynamics", link: "/docs/components/otlp-exporter#appdynamics"},
{label: "Axiom", link: "/docs/components/otlp-exporter#axiom"},
{label: "Datadog", link: "/docs/partners/datadog"},
{label: "Dynatrace", link: "/docs/partners/dynatrace"},
{label: "Honeycomb", link: "/docs/components/otlp-exporter#honeycomb"},
Expand Down
45 changes: 45 additions & 0 deletions src/docs/components/otlp-exporter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,51 @@ service:

<SubSectionSeparator />

## Axiom

[Axiom](https://axiom.co/docs/send-data/opentelemetry) supports native OpenTelemetry protocol (OTLP) ingest, so users of the AWS Distro for OpenTelemetry (ADOT)
can send traces and logs directly to Dynatrace without the need for additional plugins or exporters.

<SubSectionSeparator />

### Requirements

- A dataset and an API token with ingest permission

<SubSectionSeparator />

### Example 

```
receivers:
otlp:
protocols:
grpc:
http:
exporters:
otlphttp:
endpoint: "https://api.axiom.co"
headers:
authorization: "Bearer <YOUR_API_TOKEN>"
x-axiom-dataset: <YOUR_DATASET>
service:
pipelines:
traces:
receivers: [otlp]
exporters: [otlphttp]
logs:
receivers: [otlp]
exporters: [otlphttp]
```

<SubSectionSeparator />


### Configuration (Collector)

The configuration takes place in the OTLP exporter in the Collector config YAML file.
Configure the [OTLP HTTP Exporter](https://github.com/open-telemetry/opentelemetry-collector/tree/master/exporter/otlphttpexporter) with the following settings. For additional details see the [Axiom documentation for the Collector](https://axiom.co/docs/send-data/opentelemetry#opentelemetry-collector).

## Dynatrace

[Dynatrace](https://www.dynatrace.com/integrations/opentelemetry) supports native OpenTelemetry protocol (OTLP) ingest, so users of the AWS Distro for OpenTelemetry (ADOT)
Expand Down