Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
10
migrations/inputs_io/testcases/full/expected.conf
Normal file
10
migrations/inputs_io/testcases/full/expected.conf
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Read metrics about disk IO by device
|
||||
[[inputs.diskio]]
|
||||
name_override = "foo"
|
||||
devices = ["nvme0n1", "sda", "sdb", "vd*", "/dev/disk/by-id/nvme-eui.00123deadc0de123"]
|
||||
skip_serial_number = true
|
||||
device_tags = ["ID_FS_TYPE"]
|
||||
name_templates = ["$ID_FS_LABEL", "$DM_VG_NAME/$DM_LV_NAME", "test"]
|
||||
|
||||
[[inputs.diskio.tags]]
|
||||
should = "work"
|
34
migrations/inputs_io/testcases/full/telegraf.conf
Normal file
34
migrations/inputs_io/testcases/full/telegraf.conf
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Read metrics about disk IO by device
|
||||
[[inputs.io]]
|
||||
name_override = "foo"
|
||||
|
||||
# By default, telegraf will gather stats for all devices including
|
||||
# disk partitions.
|
||||
# Setting devices will restrict the stats to the specified devices.
|
||||
# NOTE: Globbing expressions (e.g. asterix) are not supported for
|
||||
# disk synonyms like '/dev/disk/by-id'.
|
||||
devices = ["nvme0n1", "sda", "sdb", "vd*", "/dev/disk/by-id/nvme-eui.00123deadc0de123"]
|
||||
# Uncomment the following line if you need disk serial numbers.
|
||||
skip_serial_number = true
|
||||
|
||||
# On systems which support it, device metadata can be added in the form of
|
||||
# tags.
|
||||
# Currently only Linux is supported via udev properties. You can view
|
||||
# available properties for a device by running:
|
||||
# 'udevadm info -q property -n /dev/sda'
|
||||
# Note: Most, but not all, udev properties can be accessed this way. Properties
|
||||
# that are currently inaccessible include DEVTYPE, DEVNAME, and DEVPATH.
|
||||
device_tags = ["ID_FS_TYPE"]
|
||||
|
||||
# Using the same metadata source as device_tags, you can also customize the
|
||||
# name of the device via templates.
|
||||
# The 'name_templates' parameter is a list of templates to try and apply to
|
||||
# the device. The template may contain variables in the form of '$PROPERTY' or
|
||||
# '${PROPERTY}'. The first template which does not contain any variables not
|
||||
# present for the device is used as the device name tag.
|
||||
# The typical use case is for LVM volumes, to get the VG/LV name instead of
|
||||
# the near-meaningless DM-0 name.
|
||||
name_templates = ["$ID_FS_LABEL","$DM_VG_NAME/$DM_LV_NAME", "test"]
|
||||
|
||||
[[inputs.io.tags]]
|
||||
should = "work"
|
Loading…
Add table
Add a link
Reference in a new issue