Skip to content
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

Adding telegraf config for Marvell #979

Closed
wants to merge 3 commits into from
Closed
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
66 changes: 66 additions & 0 deletions lab/telegraf.d/telegraf.conf.mrv
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Read metrics about cpu usage
[[inputs.cpu]]
## Whether to report per-cpu stats or not
percpu = true
## Whether to report total system cpu stats or not
totalcpu = true
## If true, collect raw CPU time metrics
collect_cpu_time = false
## If true, compute and report the sum of all non-idle CPU states
## NOTE: The resulting 'time_active' field INCLUDES 'iowait'!
report_active = false
## If true and the info is available then add core_id and physical_id tags
core_tags = false

# Diskio Input Plugin
[[inputs.diskio]]

# Disk Input Plugin
[[inputs.disk]]

# Internal Input Plugin
[[inputs.internal]]

# Kernel Input Plugin
[[inputs.kernel]]

# Linux Sysctl FS Input Plugin
[[inputs.linux_sysctl_fs]]

# Mem Input Plugin
[[inputs.mem]]

# Nstat Input Plugin
[[inputs.nstat]]

# Net Input Plugin
[[inputs.net]]

# Netstat Input Plugin
[[inputs.netstat]]

# Processes Input Plugin
[[inputs.processes]]

# Sensors Input Plugin
[[inputs.sensors]]

# Swap Input Plugin
[[inputs.swap]]

# System Input Plugin
[[inputs.system]]

# ZFS Input Plugin
[[inputs.zfs]]
poolMetrics = true

# Docker Input Plugin
[[inputs.docker]]

[[outputs.file]]
files = ["stdout"]
data_format = "influx"

Copy link
Member

@glimchb glimchb May 30, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add stdout output plugin like in other examples for now, easier to debug for now...

[[outputs.file]]
  files = ["stdout"]
  data_format = "influx"

[[outputs.opentelemetry]]
service_address = "172.22.0.1:4317"
Loading