Fix InsecureSkipVerify in Dynatrace Plugin (#8015)
This commit is contained in:
parent
7354a44240
commit
bf0b376fc7
|
|
@ -37,7 +37,7 @@ You will also need to configure an API token for secure access. Find out how to
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
This plugin requires Dynatrace version 1.202 or higher. You will either need a Dynatrace OneAgent (version 1.201 or higher) installed on the same host as Telegraf; or a Dynatrace environment with version 1.202 or higher
|
You will either need a Dynatrace OneAgent (version 1.201 or higher) installed on the same host as Telegraf; or a Dynatrace environment with version 1.202 or higher
|
||||||
|
|
||||||
## Limitations
|
## Limitations
|
||||||
Telegraf measurements which can't be converted to a float64 are skipped.
|
Telegraf measurements which can't be converted to a float64 are skipped.
|
||||||
|
|
|
||||||
|
|
@ -29,12 +29,11 @@ var (
|
||||||
|
|
||||||
// Dynatrace Configuration for the Dynatrace output plugin
|
// Dynatrace Configuration for the Dynatrace output plugin
|
||||||
type Dynatrace struct {
|
type Dynatrace struct {
|
||||||
URL string `toml:"url"`
|
URL string `toml:"url"`
|
||||||
APIToken string `toml:"api_token"`
|
APIToken string `toml:"api_token"`
|
||||||
InsecureSkipVerify bool `toml:"insecure_skip_verify"`
|
Prefix string `toml:"prefix"`
|
||||||
Prefix string `toml:"prefix"`
|
Log telegraf.Logger `toml:"-"`
|
||||||
Log telegraf.Logger `toml:"-"`
|
Timeout internal.Duration `toml:"timeout"`
|
||||||
Timeout internal.Duration `toml:"timeout"`
|
|
||||||
|
|
||||||
tls.ClientConfig
|
tls.ClientConfig
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue