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

Update 02-opentelemetry-collector.md with latest exporter config #286

Merged
merged 1 commit into from
Aug 28, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,22 @@ permalink: /server-integration/export/opentelemetry-collector
# 配置相关

```bash
ingester:
otlp-exporter:
enabled: true
addr: 127.0.0.1:4317
export-datas: [cbpf-net-span,ebpf-sys-span]
export-data-types: [service_info,tracing_info,network_layer,flow_info,transport_layer,application_layer,metrics]
export-custom-k8s-labels-regexp:
export-only-with-traceid: false
queue-count: 2
queue-size: 1000000
grpc-headers:
${key1}: ${value1}
${key2}: ${value2}

ingester:
exporters:
- name: test exporter
exporter_type: otlp-exporter
otlp-exporter:
enabled: true
addr: 127.0.0.1:4317
export-datas: [cbpf-net-span,ebpf-sys-span]
export-data-types: [service_info,tracing_info,network_layer,flow_info,transport_layer,application_layer,metrics]
export-custom-k8s-labels-regexp:
export-only-with-traceid: false
queue-count: 2
queue-size: 1000000
grpc-headers:
${key1}: ${value1}
${key2}: ${value2}
```
关于[详细配置](https://github.com/deepflowio/deepflow/blob/main/server/server.yaml#L474)

Expand Down
Loading