Skip to content
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
56 changes: 28 additions & 28 deletions pipeline/outputs/dash0.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,35 @@ To get started with sending logs to Dash0:
1. Get an [Auth Token](https://www.dash0.com/documentation/dash0/key-concepts/auth-tokens) from **Settings** > **Auth Tokens**.
1. In your main Fluent Bit configuration file, append the following `Output` section:

{% tabs %}
{% tab title="fluent-bit.conf" %}
```text
[OUTPUT]
Name opentelemetry
Match *
Host ingress.eu-west-1.aws.dash0.com
Port 443
Header Authorization Bearer {your-Auth-token-here}
Metrics_uri /v1/metrics
Logs_uri /v1/logs
Traces_uri /v1/traces
```
{% endtab %}
{% tabs %}
{% tab title="fluent-bit.conf" %}
```text
[OUTPUT]
Name opentelemetry
Match *
Host ingress.eu-west-1.aws.dash0.com
Port 443
Header Authorization Bearer {your-Auth-token-here}
Metrics_uri /v1/metrics
Logs_uri /v1/logs
Traces_uri /v1/traces
```
{% endtab %}

{% tab title="fluent-bit.yaml" %}
```yaml
[OUTPUT]
Name: opentelemetry
Match: *
Host: ingress.eu-west-1.aws.dash0.com
Port: 443
Header: Authorization Bearer {your-Auth-token-here}
Metrics_uri: /v1/metrics
Logs_uri: /v1/logs
Traces_uri: /v1/traces
```
{% endtab %}
{% endtabs %}
{% tab title="fluent-bit.yaml" %}
```yaml
[OUTPUT]
Name: opentelemetry
Match: *
Host: ingress.eu-west-1.aws.dash0.com
Port: 443
Header: Authorization Bearer {your-Auth-token-here}
Metrics_uri: /v1/metrics
Logs_uri: /v1/logs
Traces_uri: /v1/traces
```
{% endtab %}
{% endtabs %}

## References

Expand Down
Loading