forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5016,7 +5016,7 @@ | |
# ## For example: | ||
# ## mongodb://user:[email protected]:27017, | ||
# ## mongodb://10.10.3.33:18832, | ||
# servers = ["mongodb://127.0.0.1:27017"] | ||
# servers = ["mongodb://127.0.0.1:27017?connect=direct"] | ||
# | ||
# ## When true, collect cluster status | ||
# ## Note that the query that counts jumbo chunks triggers a COLLSCAN, which | ||
|
@@ -5455,7 +5455,9 @@ | |
|
||
# # Pulls statistics from nvidia GPUs attached to the host | ||
# [[inputs.nvidia_smi]] | ||
# ## Optional: path to nvidia-smi binary, defaults to $PATH via exec.LookPath | ||
# ## Optional: path to nvidia-smi binary, defaults "/usr/bin/nvidia-smi" | ||
# ## We will first try to locate the nvidia-smi binary with the explicitly specified value (or default value), | ||
# ## if it is not found, we will try to locate it on PATH(exec.LookPath), if it is still not found, an error will be returned | ||
# # bin_path = "/usr/bin/nvidia-smi" | ||
# | ||
# ## Optional: timeout for GPU polling | ||
|
@@ -7834,7 +7836,7 @@ | |
# # Read metrics from MQTT topic(s) | ||
# [[inputs.mqtt_consumer]] | ||
# ## Broker URLs for the MQTT server or cluster. To connect to multiple | ||
# ## clusters or standalone servers, use a seperate plugin instance. | ||
# ## clusters or standalone servers, use a separate plugin instance. | ||
# ## example: servers = ["tcp://localhost:1883"] | ||
# ## servers = ["ssl://localhost:1883"] | ||
# ## servers = ["ws://localhost:1883"] | ||
|