Clarify that cisco mdt telemetry tcp transport does not support TLS
This commit is contained in:
parent
1fe7301b95
commit
fae63ed297
|
@ -14,17 +14,19 @@ The TCP dialout transport is supported on IOS XR (32-bit and 64-bit) 6.1.x and l
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[[inputs.cisco_telemetry_mdt]]
|
[[inputs.cisco_telemetry_mdt]]
|
||||||
## Telemetry transport (one of: tcp, grpc)
|
## Telemetry transport can be "tcp" or "grpc". TLS is only supported when
|
||||||
|
## using the grpc transport.
|
||||||
transport = "grpc"
|
transport = "grpc"
|
||||||
|
|
||||||
## Address and port to host telemetry listener
|
## Address and port to host telemetry listener
|
||||||
service_address = ":57000"
|
service_address = ":57000"
|
||||||
|
|
||||||
## Enable TLS for GRPC transport
|
## Enable TLS; grpc transport only.
|
||||||
# tls_cert = "/etc/telegraf/cert.pem"
|
# tls_cert = "/etc/telegraf/cert.pem"
|
||||||
# tls_key = "/etc/telegraf/key.pem"
|
# tls_key = "/etc/telegraf/key.pem"
|
||||||
|
|
||||||
## Enable TLS client authentication and define allowed CA certificates
|
## Enable TLS client authentication and define allowed CA certificates; grpc
|
||||||
|
## transport only.
|
||||||
# tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"]
|
# tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"]
|
||||||
|
|
||||||
## Define aliases to map telemetry encoding paths to simple measurement names
|
## Define aliases to map telemetry encoding paths to simple measurement names
|
||||||
|
|
|
@ -348,17 +348,19 @@ func (c *CiscoTelemetryMDT) Stop() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const sampleConfig = `
|
const sampleConfig = `
|
||||||
## Telemetry transport (one of: tcp, grpc)
|
## Telemetry transport can be "tcp" or "grpc". TLS is only supported when
|
||||||
|
## using the grpc transport.
|
||||||
transport = "grpc"
|
transport = "grpc"
|
||||||
|
|
||||||
## Address and port to host telemetry listener
|
## Address and port to host telemetry listener
|
||||||
service_address = ":57000"
|
service_address = ":57000"
|
||||||
|
|
||||||
## Enable TLS for GRPC transport
|
## Enable TLS; grpc transport only.
|
||||||
# tls_cert = "/etc/telegraf/cert.pem"
|
# tls_cert = "/etc/telegraf/cert.pem"
|
||||||
# tls_key = "/etc/telegraf/key.pem"
|
# tls_key = "/etc/telegraf/key.pem"
|
||||||
|
|
||||||
## Enable TLS client authentication and define allowed CA certificates
|
## Enable TLS client authentication and define allowed CA certificates; grpc
|
||||||
|
## transport only.
|
||||||
# tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"]
|
# tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"]
|
||||||
|
|
||||||
## Define aliases to map telemetry encoding paths to simple measurement names
|
## Define aliases to map telemetry encoding paths to simple measurement names
|
||||||
|
|
Loading…
Reference in New Issue