-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathexample.yaml
32 lines (28 loc) · 1.26 KB
/
example.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
# 'receivers' specify configurations of receivers.
# See the README for more information about the receivers available for configuration.
receivers:
nop:
# 'processors' specify configurations of processors.
# See the README for more information about the processors available for configuration.
processors:
# The batch processor; This processor will aggregate incoming metrics into a batch, releasing them if
# a certain time has passed or if a certain number of entries have been aggregated.
# For more information on configuring the batch processor, refer to the documentation here:
# https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor/batchprocessor
batch:
# 'exporters' specify configurations for certain exporters.
# See the README for more information on the exporters available for configuration.
exporters:
nop:
# 'service' specifies how to construct the data pipelines using the configurations above.
service:
pipelines:
metrics:
receivers: [nop]
processors: [batch]
exporters: [nop]
telemetry:
# Disable agents own telemetry to avoid port binding collisions for port 8888. BindPlane
# will enable metrics and configure the port when a configuration is pushed to the agent.
metrics:
level: none