File tree Expand file tree Collapse file tree 1 file changed +18
-14
lines changed Expand file tree Collapse file tree 1 file changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,27 @@ For more details about the properties available and general configuration, see [
27
27
To get started with sending logs to Dash0:
28
28
29
29
1 . Get an [ Auth Token] ( https://www.dash0.com/documentation/dash0/key-concepts/auth-tokens ) from ** Settings** > ** Auth Tokens** .
30
- 1 . In your main Fluent Bit configuration file, append the following ` Output ` section :
30
+ 1 . In your main Fluent Bit configuration file append the following:
31
31
32
32
{% tabs %}
33
+ {% tab title="fluent-bit.yaml" %}
34
+
35
+ ``` yaml
36
+ pipeline :
37
+
38
+ outputs :
39
+ - name : opentelemetry
40
+ match : ' *'
41
+ host : ingress.eu-west-1.aws.dash0.com
42
+ port : 443
43
+ header : Authorization Bearer {your-Auth-token-here}
44
+ metrics_uri : /v1/metrics
45
+ logs_uri : /v1/logs
46
+ traces_uri : /v1/traces
47
+ ` ` `
48
+ {% endtab %}
33
49
{% tab title="fluent-bit.conf" %}
50
+
34
51
` ` ` text
35
52
[OUTPUT]
36
53
Name opentelemetry
@@ -42,20 +59,7 @@ To get started with sending logs to Dash0:
42
59
Logs_uri /v1/logs
43
60
Traces_uri /v1/traces
44
61
```
45
- {% endtab %}
46
62
47
- {% tab title="fluent-bit.yaml" %}
48
- ``` yaml
49
- [OUTPUT]
50
- Name : opentelemetry
51
- Match : *
52
- Host : ingress.eu-west-1.aws.dash0.com
53
- Port : 443
54
- Header : Authorization Bearer {your-Auth-token-here}
55
- Metrics_uri : /v1/metrics
56
- Logs_uri : /v1/logs
57
- Traces_uri : /v1/traces
58
- ` ` `
59
63
{% endtab %}
60
64
{% endtabs %}
61
65
You can’t perform that action at this time.
0 commit comments