Skip to content

Commit

Permalink
Use same scrapers as OCK
Browse files Browse the repository at this point in the history
Specifically don't need process scraper which doesn't collect default metrics.
  • Loading branch information
Jay Camp committed Mar 10, 2021
1 parent 0a22935 commit 902f008
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 9 deletions.
10 changes: 7 additions & 3 deletions cmd/otelcol/config/collector/agent_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@ receivers:
scrapers:
cpu:
disk:
load:
filesystem:
memory:
network:
process:
processes:
# System load average metrics https://en.wikipedia.org/wiki/Load_(computing)
load:
# Paging/Swap space utilization and I/O metrics
paging:
# Aggregated system process count metrics
processes:
# System processes metrics, disabled by default
# process:
jaeger:
protocols:
grpc:
Expand Down
9 changes: 7 additions & 2 deletions cmd/otelcol/config/collector/full_config_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,17 @@ receivers:
scrapers:
cpu:
disk:
load:
filesystem:
memory:
network:
processes:
# System load average metrics https://en.wikipedia.org/wiki/Load_(computing)
load:
# Paging/Swap space utilization and I/O metrics
paging:
# Aggregated system process count metrics
processes:
# System processes metrics, disabled by default
# process:

# Enables the prometheus receiver -- should only be used for local metric collection
# This section is used to collect the OpenTelemetry Collector metrics
Expand Down
9 changes: 7 additions & 2 deletions examples/kubernetes-yaml/splunk-otel-collector-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,17 @@ data:
scrapers:
cpu:
disk:
load:
filesystem:
memory:
network:
processes:
# System load average metrics https://en.wikipedia.org/wiki/Load_(computing)
load:
# Paging/Swap space utilization and I/O metrics
paging:
# Aggregated system process count metrics
processes:
# System processes metrics, disabled by default
# process:
jaeger:
protocols:
grpc:
Expand Down
9 changes: 7 additions & 2 deletions examples/kubernetes-yaml/splunk-otel-collector-gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,17 @@ data:
scrapers:
cpu:
disk:
load:
filesystem:
memory:
network:
processes:
# System load average metrics https://en.wikipedia.org/wiki/Load_(computing)
load:
# Paging/Swap space utilization and I/O metrics
paging:
# Aggregated system process count metrics
processes:
# System processes metrics, disabled by default
# process:
jaeger:
protocols:
grpc:
Expand Down

0 comments on commit 902f008

Please sign in to comment.