29 lines
861 B
Text
29 lines
861 B
Text
|
# Read nginx_upstream_check module status information (https://github.com/yaoweibin/nginx_upstream_check_module)
|
||
|
[[inputs.nginx_upstream_check]]
|
||
|
## An URL where Nginx Upstream check module is enabled
|
||
|
## It should be set to return a JSON formatted response
|
||
|
url = "http://127.0.0.1/status?format=json"
|
||
|
|
||
|
## HTTP method
|
||
|
# method = "GET"
|
||
|
|
||
|
## Optional HTTP headers
|
||
|
# headers = {"X-Special-Header" = "Special-Value"}
|
||
|
|
||
|
## Override HTTP "Host" header
|
||
|
# host_header = "check.example.com"
|
||
|
|
||
|
## Timeout for HTTP requests
|
||
|
timeout = "5s"
|
||
|
|
||
|
## Optional HTTP Basic Auth credentials
|
||
|
# username = "username"
|
||
|
# password = "pa$$word"
|
||
|
|
||
|
## Optional TLS Config
|
||
|
# tls_ca = "/etc/telegraf/ca.pem"
|
||
|
# tls_cert = "/etc/telegraf/cert.pem"
|
||
|
# tls_key = "/etc/telegraf/key.pem"
|
||
|
## Use TLS but skip chain & host verification
|
||
|
# insecure_skip_verify = false
|