-
Notifications
You must be signed in to change notification settings - Fork 59
/
otel-config-dd.yaml
58 lines (58 loc) · 1.06 KB
/
otel-config-dd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
receivers:
otlp:
protocols:
grpc:
endpoint: 127.0.0.1:4317
hostmetrics:
collection_interval: 10s
scrapers:
paging:
metrics:
system.paging.utilization:
enabled: true
cpu:
metrics:
system.cpu.utilization:
enabled: true
disk: null
filesystem:
metrics:
system.filesystem.utilization:
enabled: true
load: null
memory: null
network: null
processes: null
prometheus:
config:
scrape_configs:
- job_name: otelcol
scrape_interval: 10s
static_configs:
- targets:
- 0.0.0.0:8888
processors:
batch:
timeout: 10s
exporters:
datadog:
api:
key: ${DD_API_KEY}
service:
pipelines:
metrics:
receivers:
- hostmetrics
- otlp
- prometheus
processors:
- batch
exporters:
- datadog
traces:
receivers:
- otlp
processors:
- batch
exporters:
- datadog