Skip to content
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
2 changes: 1 addition & 1 deletion telegraf/telegraf.base
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
data_format = "json"
namepass = ["agg_*"]

# Enable Live Monitoring, intended for internal use:
# Enable Live Monitoring, intended for internal Delphix use only:
#[[outputs.influxdb]]
# urls = ["http://dbsvr.company.com:8086"]
# database = "live_metrics"
Expand Down
34 changes: 23 additions & 11 deletions telegraf/telegraf.inputs.playbook
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@
]
json_string_fields = ["iops(/s)", "avg latency(us)", "stddev(us)", "throughput(k/s)", "microseconds"]

# Collect output from "estat zio-queue -jm 10"
[[inputs.execd]]
command = ["estat", "zio-queue", "-jm", "10"]
name_override = "estat_zio-queue"
signal = "none"
data_format = "json"
tag_keys = [
"name",
"axis"
]
json_string_fields = ["iops(/s)", "avg latency(us)", "stddev(us)", "throughput(k/s)", "microseconds"]

# Collect output from "estat zio -jm 10"
[[inputs.execd]]
command = ["estat", "zio", "-jm", "10"]
Expand All @@ -80,17 +92,17 @@
json_string_fields = ["iops(/s)", "avg latency(us)", "stddev(us)", "throughput(k/s)", "microseconds"]

# Collect output from "estat metaslab-alloc -jm 10"
#[[inputs.execd]]
# command = ["estat", "metaslab-alloc", "-jm", "10"]
# name_override = "estat_metaslab-alloc"
# signal = "none"
# restart_delay = "30s"
# data_format = "json"
# tag_keys = [
# "name",
# "axis"
# ]
# json_string_fields = ["iops(/s)", "avg latency(us)", "stddev(us)", "throughput(k/s)", "microseconds"]
[[inputs.execd]]
command = ["estat", "metaslab-alloc", "-jm", "10"]
name_override = "estat_metaslab-alloc"
signal = "none"
restart_delay = "30s"
data_format = "json"
tag_keys = [
"name",
"axis"
]
json_string_fields = ["iops(/s)", "avg latency(us)", "stddev(us)", "throughput(k/s)", "microseconds"]

# Collect output from "nfs_threads"
[[inputs.execd]]
Expand Down