-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathotel-collector-config.yaml
More file actions
76 lines (68 loc) · 1.5 KB
/
otel-collector-config.yaml
File metadata and controls
76 lines (68 loc) · 1.5 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
receivers:
otlp:
protocols:
http:
endpoint: 0.0.0.0:4318
cors:
allowed_origins:
- "http://localhost:3000"
allowed_headers: ["*"]
grpc:
endpoint: 0.0.0.0:4317
redis:
endpoint: "${REDIS_ENDPOINT}"
collection_interval: 60s
password: "${REDIS_PASSWORD}"
tls:
insecure: false
metrics:
redis.maxmemory:
enabled: true
redis.cmd.latency:
enabled: true
processors:
batch:
timeout: 10s
send_batch_size: 1024
memory_limiter:
check_interval: 1s
limit_mib: 512
resource:
attributes:
- key: service.name
value: ethereal-nexus-dashboard
action: upsert
exporters:
#signoz
otlp:
endpoint: "${SIGNOZ_ENDPOINT}"
headers:
signoz-ingestion-key: "${SIGNOZ_API_KEY}"
tls:
insecure: false
otlphttp:
endpoint: "${NEWRELIC_ENDPOINT}"
headers:
api-key: "${NEWRELIC_API_KEY}"
extensions:
health_check:
endpoint: 0.0.0.0:13133
pprof:
endpoint: 0.0.0.0:1777
zpages:
endpoint: 0.0.0.0:55679
service:
extensions: [ health_check, pprof, zpages ]
pipelines:
traces:
receivers: [ otlp ]
processors: [ memory_limiter, batch ]
exporters: [ otlp, otlphttp]
metrics:
receivers: [ redis, otlp ]
processors: [ memory_limiter, batch ]
exporters: [ otlp, otlphttp ]
logs:
receivers: [ otlp ]
processors: [ memory_limiter, batch ]
exporters: [ otlp, otlphttp ]