From df1cb0ef2250b8c032f72e42ac423b478891d24e Mon Sep 17 00:00:00 2001 From: "telegraf-tiger[bot]" <76974415+telegraf-tiger[bot]@users.noreply.github.com> Date: Tue, 1 Feb 2022 16:54:25 -0600 Subject: [PATCH] feat: update etc/telegraf.conf and etc/telegraf_windows.conf (#10561) Co-authored-by: Tiger Bot <> --- etc/telegraf.conf | 26 ++++++++++++++++++++++++-- etc/telegraf_windows.conf | 32 ++++++++++++++++++++++++++++++-- 2 files changed, 54 insertions(+), 4 deletions(-) diff --git a/etc/telegraf.conf b/etc/telegraf.conf index 9ff1eb07b..1035a51a6 100644 --- a/etc/telegraf.conf +++ b/etc/telegraf.conf @@ -4662,8 +4662,10 @@ # # Monitors internet speed using speedtest.net service # [[inputs.internet_speed]] # ## Sets if runs file download test -# ## Default: false -# enable_file_download = false +# # enable_file_download = false +# +# ## Caches the closest server location +# # cache = false # # This plugin gathers interrupts data from /proc/interrupts and /proc/softirqs. @@ -7180,6 +7182,26 @@ # # tls_key = "/etc/telegraf/key.pem" +# # Gathers Metrics From a Dell EMC XtremIO Storage Array's V3 API +# [[inputs.xtremio]] +# ## XtremIO User Interface Endpoint +# url = "https://xtremio.example.com/" # required +# +# ## Credentials +# username = "user1" +# password = "pass123" +# +# ## Metrics to collect from the XtremIO +# # collectors = ["bbus","clusters","ssds","volumes","xms"] +# +# ## Optional TLS Config +# # tls_ca = "/etc/telegraf/ca.pem" +# # tls_cert = "/etc/telegraf/cert.pem" +# # tls_key = "/etc/telegraf/key.pem" +# ## Use SSL but skip chain & host verification +# # insecure_skip_verify = false + + # # Read metrics of ZFS from arcstats, zfetchstats, vdev_cache_stats, pools and datasets # [[inputs.zfs]] # ## ZFS kstat path. Ignored on FreeBSD diff --git a/etc/telegraf_windows.conf b/etc/telegraf_windows.conf index 1530a2e3b..6aeb263f4 100644 --- a/etc/telegraf_windows.conf +++ b/etc/telegraf_windows.conf @@ -4589,8 +4589,10 @@ # # Monitors internet speed using speedtest.net service # [[inputs.internet_speed]] # ## Sets if runs file download test -# ## Default: false -# enable_file_download = false +# # enable_file_download = false +# +# ## Caches the closest server location +# # cache = false # # This plugin gathers interrupts data from /proc/interrupts and /proc/softirqs. @@ -6977,6 +6979,12 @@ # #LocalizeWildcardsExpansion = true # # Period after which counters will be reread from configuration and wildcards in counter paths expanded # CountersRefreshInterval="1m" +# ## Accepts a list of PDH error codes which are defined in pdh.go, if this error is encountered it will be ignored +# ## For example, you can provide "PDH_NO_DATA" to ignore performance counters with no instances +# ## By default no errors are ignored +# ## You can find the list here: https://github.com/influxdata/telegraf/blob/master/plugins/inputs/win_perf_counters/pdh.go +# ## e.g.: IgnoredErrors = ["PDH_NO_DATA"] +# # IgnoredErrors = [] # # [[inputs.win_perf_counters.object]] # # Processor usage, alternative to native, reports on a per core. @@ -7134,6 +7142,26 @@ # # tls_key = "/etc/telegraf/key.pem" +# # Gathers Metrics From a Dell EMC XtremIO Storage Array's V3 API +# [[inputs.xtremio]] +# ## XtremIO User Interface Endpoint +# url = "https://xtremio.example.com/" # required +# +# ## Credentials +# username = "user1" +# password = "pass123" +# +# ## Metrics to collect from the XtremIO +# # collectors = ["bbus","clusters","ssds","volumes","xms"] +# +# ## Optional TLS Config +# # tls_ca = "/etc/telegraf/ca.pem" +# # tls_cert = "/etc/telegraf/cert.pem" +# # tls_key = "/etc/telegraf/key.pem" +# ## Use SSL but skip chain & host verification +# # insecure_skip_verify = false + + # # Read metrics of ZFS from arcstats, zfetchstats, vdev_cache_stats, pools and datasets # [[inputs.zfs]] # ## ZFS kstat path. Ignored on FreeBSD