Update etc/telegraf.conf
This commit is contained in:
parent
e4ab5a2971
commit
a8810b2b7a
|
|
@ -753,7 +753,7 @@
|
||||||
# ## Multiple URLs can be specified for a single cluster, only ONE of the
|
# ## Multiple URLs can be specified for a single cluster, only ONE of the
|
||||||
# ## urls will be written to each interval.
|
# ## urls will be written to each interval.
|
||||||
# ## ex: urls = ["https://us-west-2-1.aws.cloud2.influxdata.com"]
|
# ## ex: urls = ["https://us-west-2-1.aws.cloud2.influxdata.com"]
|
||||||
# urls = ["http://127.0.0.1:9999"]
|
# urls = ["http://127.0.0.1:8086"]
|
||||||
#
|
#
|
||||||
# ## Token for authentication.
|
# ## Token for authentication.
|
||||||
# token = ""
|
# token = ""
|
||||||
|
|
@ -2615,6 +2615,13 @@
|
||||||
# ## URI scheme for the Consul server, one of "http", "https"
|
# ## URI scheme for the Consul server, one of "http", "https"
|
||||||
# # scheme = "http"
|
# # scheme = "http"
|
||||||
#
|
#
|
||||||
|
# ## Metric version controls the mapping from Consul metrics into
|
||||||
|
# ## Telegraf metrics.
|
||||||
|
# ##
|
||||||
|
# ## example: metric_version = 1; deprecated in 1.15
|
||||||
|
# ## metric_version = 2; recommended version
|
||||||
|
# # metric_version = 1
|
||||||
|
#
|
||||||
# ## ACL token used in every request
|
# ## ACL token used in every request
|
||||||
# # token = ""
|
# # token = ""
|
||||||
#
|
#
|
||||||
|
|
@ -4798,6 +4805,13 @@
|
||||||
# urls = ["http://localhost:8080/_raindrops"]
|
# urls = ["http://localhost:8080/_raindrops"]
|
||||||
|
|
||||||
|
|
||||||
|
# # RAS plugin exposes counter metrics for Machine Check Errors provided by RASDaemon (sqlite3 output is required).
|
||||||
|
# [[inputs.ras]]
|
||||||
|
# ## Optional path to RASDaemon sqlite3 database.
|
||||||
|
# ## Default: /var/lib/rasdaemon/ras-mc_event.db
|
||||||
|
# # db_path = ""
|
||||||
|
|
||||||
|
|
||||||
# # Read CPU, Fans, Powersupply and Voltage metrics of hardware server through redfish APIs
|
# # Read CPU, Fans, Powersupply and Voltage metrics of hardware server through redfish APIs
|
||||||
# [[inputs.redfish]]
|
# [[inputs.redfish]]
|
||||||
# ## Server url
|
# ## Server url
|
||||||
|
|
@ -4961,6 +4975,9 @@
|
||||||
# ## SNMP version; can be 1, 2, or 3.
|
# ## SNMP version; can be 1, 2, or 3.
|
||||||
# # version = 2
|
# # version = 2
|
||||||
#
|
#
|
||||||
|
# ## Agent host tag; the tag used to reference the source host
|
||||||
|
# # agent_host_tag = "agent_host"
|
||||||
|
#
|
||||||
# ## SNMP community string.
|
# ## SNMP community string.
|
||||||
# # community = "public"
|
# # community = "public"
|
||||||
#
|
#
|
||||||
|
|
@ -5531,6 +5548,32 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
|
||||||
|
# # Intel Resource Director Technology plugin
|
||||||
|
# [[inputs.IntelRDT]]
|
||||||
|
# ## Optionally set sampling interval to Nx100ms.
|
||||||
|
# ## This value is propagated to pqos tool. Interval format is defined by pqos itself.
|
||||||
|
# ## If not provided or provided 0, will be set to 10 = 10x100ms = 1s.
|
||||||
|
# # sampling_interval = "10"
|
||||||
|
#
|
||||||
|
# ## Optionally specify the path to pqos executable.
|
||||||
|
# ## If not provided, auto discovery will be performed.
|
||||||
|
# # pqos_path = "/usr/local/bin/pqos"
|
||||||
|
#
|
||||||
|
# ## Optionally specify if IPC and LLC_Misses metrics shouldn't be propagated.
|
||||||
|
# ## If not provided, default value is false.
|
||||||
|
# # shortened_metrics = false
|
||||||
|
#
|
||||||
|
# ## Specify the list of groups of CPU core(s) to be provided as pqos input.
|
||||||
|
# ## Mandatory if processes aren't set and forbidden if processes are specified.
|
||||||
|
# ## e.g. ["0-3", "4,5,6"] or ["1-3,4"]
|
||||||
|
# # cores = ["0-3"]
|
||||||
|
#
|
||||||
|
# ## Specify the list of processes for which Metrics will be collected.
|
||||||
|
# ## Mandatory if cores aren't set and forbidden if cores are specified.
|
||||||
|
# ## e.g. ["qemu", "pmd"]
|
||||||
|
# # processes = ["process"]
|
||||||
|
|
||||||
|
|
||||||
# # AMQP consumer plugin
|
# # AMQP consumer plugin
|
||||||
# [[inputs.amqp_consumer]]
|
# [[inputs.amqp_consumer]]
|
||||||
# ## Broker to consume from.
|
# ## Broker to consume from.
|
||||||
|
|
@ -6181,7 +6224,8 @@
|
||||||
# # Accept metrics over InfluxDB 2.x HTTP API
|
# # Accept metrics over InfluxDB 2.x HTTP API
|
||||||
# [[inputs.influxdb_v2_listener]]
|
# [[inputs.influxdb_v2_listener]]
|
||||||
# ## Address and port to host InfluxDB listener on
|
# ## Address and port to host InfluxDB listener on
|
||||||
# service_address = ":9999"
|
# ## (Double check the port. Could be 9999 if using OSS Beta)
|
||||||
|
# service_address = ":8086"
|
||||||
#
|
#
|
||||||
# ## Maximum allowed HTTP request body size in bytes.
|
# ## Maximum allowed HTTP request body size in bytes.
|
||||||
# ## 0 means to use the default of 32MiB.
|
# ## 0 means to use the default of 32MiB.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue