Skip to content

fix: update example observe-agent.yaml #95

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

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion packaging/linux/config/observe-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,21 @@ observe_url: "${OBSERVE_COLLECTION_ENDPOINT}"
# Debug mode - Sets agent log level to debug
debug: false

# collect metrics and logs pertaining to the agent itself
self_monitoring:
enabled: true

# collect metrics and logs about the host system
host_monitoring:
enabled: true
# collect logs of all running processes from the host system
logs:
enabled: true
metrics:
# collect metrics about the host system
host:
enabled: true
# collect metrics about the processes running on the host system
process:
enabled: false

Expand All @@ -36,6 +41,6 @@ host_monitoring:
# exporters: [debug]
# # This is a net new pipeline
# logs/new-pipeline:
# receivers: [hostmetrics/host-monitoring]
# receivers: [filelog/host_monitoring]
# processors: [memory_limiter]
# exporters: [debug]
7 changes: 6 additions & 1 deletion packaging/windows/observe-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,21 @@ observe_url: "${OBSERVE_COLLECTION_ENDPOINT}"
# Debug mode - Sets agent log level to debug
debug: false

# collect metrics and logs pertaining to the agent itself
self_monitoring:
enabled: true

# collect metrics and logs about the host system
host_monitoring:
enabled: true
# collect logs of all running processes from the host system
logs:
enabled: true
metrics:
# collect metrics about the host system
host:
enabled: true
# collect metrics about the processes running on the host system
process:
enabled: false

Expand All @@ -36,6 +41,6 @@ host_monitoring:
# exporters: [debug]
# # This is a net new pipeline
# logs/new-pipeline:
# receivers: [hostmetrics/host-monitoring]
# receivers: [filelog/host_monitoring]
# processors: [memory_limiter]
# exporters: [debug]
Loading