forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.conf
More file actions
27 lines (23 loc) · 990 Bytes
/
sample.conf
File metadata and controls
27 lines (23 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Collects performance metrics from Nutanix PRISM services
[[inputs.nutanix]]
## List of Nutanix URL to be monitored. These three lines must be uncommented
## and edited for the plugin to work.
url = "https://localhost:9440/api/nutanix/v3/groups"
username = "nutanix"
password = "nutanix"
## Available services are:
## "cluster", "hosts", "disks", "vms"
enabled_services = ["cluster", "hosts", "disks", "vms"]
## Amount of time allowed to complete the HTTP(s) request.
# response_timeout = "5s"
## Maximum number of consecutive failures before skipping all services.
## After reaching this limit, all services will be skipped in subsequent gather cycles.
## The plugin will automatically retry when connection is restored.
## Default is 3.
# max_retries = 3
## Optional TLS Config
# tls_ca = /path/to/cafile
# tls_cert = /path/to/certfile
# tls_key = /path/to/keyfile
## Use TLS but skip chain & host verification
# insecure_skip_verify = false