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

pipeline: outputs: dash0: Added Dash0 documentation #1532

Merged
merged 2 commits into from
Dec 18, 2024
Merged
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 SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
* [Azure Log Analytics](pipeline/outputs/azure.md)
* [Azure Logs Ingestion API](pipeline/outputs/azure_logs_ingestion.md)
* [Counter](pipeline/outputs/counter.md)
* [Dash0](pipeline/outputs/dash0.md)
* [Datadog](pipeline/outputs/datadog.md)
* [Dynatrace](pipeline/outputs/dynatrace.md)
* [Elasticsearch](pipeline/outputs/elasticsearch.md)
Expand Down
1 change: 1 addition & 0 deletions administration/transport-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The following **output** plugins can take advantage of the TLS feature:
* [Azure Data Explorer (Kusto)](../pipeline/outputs/azure_kusto.md)
* [Azure Logs Ingestion API](../pipeline/outputs/azure_logs_ingestion.md)
* [BigQuery](../pipeline/outputs/bigquery.md)
* [Dash0](../pipeline/outputs/dash0.md)
* [Datadog](../pipeline/outputs/datadog.md)
* [Elasticsearch](../pipeline/outputs/elasticsearch.md)
* [Forward](../pipeline/outputs/forward.md)
Expand Down
64 changes: 64 additions & 0 deletions pipeline/outputs/dash0.md
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
[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
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 %}

## References

- [Dash0 documentation](https://www.dash0.com/documentation/dash0)
4 changes: 2 additions & 2 deletions pipeline/outputs/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ be compared to the `database` and `table` concepts.

### TLS / SSL

Elasticsearch output plugin supports TLS/SSL. For more details about the properties
available and general configuration, refer to[TLS/SSL](../../administration/transport-security.md).
The Elasticsearch output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

### `write_operation`

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/gelf.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ According to [GELF Payload Specification](https://go2docs.graylog.org/5-0/gettin

### TLS / SSL

GELF output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The GELF output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Notes

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ The **http** output plugin allows to flush your records into a HTTP endpoint. Fo

### TLS / SSL

HTTP output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The HTTP output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Getting Started

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/influxdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ The **influxdb** output plugin, allows to flush your records into a [InfluxDB](h

### TLS / SSL

InfluxDB output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The InfluxDB output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Getting Started

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/kafka-rest-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ The **kafka-rest** output plugin, allows to flush your records into a [Kafka RES

### TLS / SSL

Kafka REST Proxy output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The Kafka REST Proxy output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Getting Started

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/oci-logging-analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ The following parameters are to set the Logging Analytics resources that must be

## TLS/SSL

OCI Logging Analytics output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The OCI Logging Analytics output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Getting Started

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/opensearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ The following instructions assumes that you have a fully operational OpenSearch

### TLS / SSL

OpenSearch output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The OpenSearch output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

### write\_operation

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/skywalking.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ The **Apache SkyWalking** output plugin, allows to flush your records to a [Apac

### TLS / SSL

Apache SkyWalking output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The Apache SkyWalking output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Getting Started

Expand Down
3 changes: 2 additions & 1 deletion pipeline/outputs/splunk.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ Content and Splunk metadata \(fields\) handling configuration properties:

### TLS / SSL

Splunk output plugin supports TLS/SSL, for more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
The Splunk output plugin supports TLS/SSL.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion pipeline/outputs/syslog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You must be aware of the structure of your original record so you can configure
### TLS / SSL

The Syslog output plugin supports TLS/SSL.
For more details about the properties available and general configuration, please refer to the [TLS/SSL](../../administration/transport-security.md) section.
For more details about the properties available and general configuration, see [TLS/SSL](../../administration/transport-security.md).

## Examples

Expand Down
1 change: 1 addition & 0 deletions vale-styles/FluentBit/Spelling-exceptions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ coroutines
Crowdstrike
CRDs
DaemonSet
Dash0
Datadog
Datagen
datapoint
Expand Down
Loading