-
Notifications
You must be signed in to change notification settings - Fork 540
pipeline: outputs: dash0: Added Dash0 documentation #1532
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| --- | ||
| description: Send logs to Dash0 | ||
| --- | ||
|
|
||
| # Dash0 | ||
|
|
||
| Stream logs to [Dash0](https://www.dash0.com) by utilizing the [OpenTelemetry plugin](opentelemetry.md) to send data to the Dash0 log ingress. | ||
|
|
||
| ## Configuration parameters | ||
|
|
||
| | Key | Description | Default | | ||
| | -------------------------- | ----------- | ------- | | ||
| | `header` | The specific header for bearer authorization, where {your-Auth-token-here} is your Dash0 Auth Token. | Authorization Bearer {your-Auth-token-here} | | ||
| | `host` | Your Dash0 ingress endpoint. | `ingress.eu-west-1.aws.dash0.com` | | ||
| | `port` | TCP port of your Dash0 ingress endpoint. | `443` | | ||
| | `metrics_uri` | Specify an optional HTTP URI for the target web server listening for metrics | `/v1/metrics` | | ||
| | `logs_uri` | Specify an optional HTTP URI for the target web server listening for logs | `/v1/logs` | | ||
| | `traces_uri` | Specify an optional HTTP URI for the target web server listening for traces | `/v1/traces` | | ||
|
|
||
| ### TLS / SSL | ||
|
|
||
| The OpenTelemetry output plugin supports TLS/SSL. | ||
| For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md). | ||
|
|
||
| ## Getting started | ||
|
|
||
| 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 | ||
CodingFabian marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| [OUTPUT] | ||
| Name opentelemetry | ||
| Match * | ||
| Host ingress.eu-west-1.aws.dash0.com | ||
| Port 443 | ||
| Header Authorization Bearer auth_vdOxPqcvSlBkhVQV95wU9TGXh2Fdjliq | ||
| Metrics_uri /v1/metrics | ||
| Logs_uri /v1/logs | ||
| Traces_uri /v1/traces | ||
| ``` | ||
| {% endtab %} | ||
|
|
||
| {% tab title="fluent-bit.yaml" %} | ||
| ```yaml | ||
| [OUTPUT] | ||
| Name: opentelemetry | ||
CodingFabian marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| Match: * | ||
| Host: ingress.eu-west-1.aws.dash0.com | ||
| Port: 443 | ||
| Header: Authorization Bearer auth_vdOxPqcvSlBkhVQV95wU9TGXh2Fdjliq | ||
| Metrics_uri: /v1/metrics | ||
| Logs_uri: /v1/logs | ||
| Traces_uri: /v1/traces | ||
| ``` | ||
| {% endtab %} | ||
| {% endtabs %} | ||
|
|
||
CodingFabian marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ## References | ||
|
|
||
| - [Dash0 documentation](https://www.dash0.com/documentation/dash0) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ coroutines | |
| Crowdstrike | ||
| CRDs | ||
| DaemonSet | ||
| Dash0 | ||
| Datadog | ||
| Datagen | ||
| datapoint | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.