-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Adding telegraf config for Marvell
Signed-off-by: Rahul <[email protected]>
- Loading branch information
1 parent
65c5d16
commit 48cd14c
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
||
[[outputs.opentelemetry]] | ||
service_address = "172.22.0.1:4317" |