From bc3ac27aeff3c93105225c930c59c5a1f0e02d8c Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Tue, 30 May 2023 08:50:38 -0600 Subject: [PATCH] docs(inputs.cisco_telemetry_mdt): Specify max msg upper limit (#13346) --- plugins/inputs/cisco_telemetry_mdt/README.md | 3 ++- plugins/inputs/cisco_telemetry_mdt/sample.conf | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/inputs/cisco_telemetry_mdt/README.md b/plugins/inputs/cisco_telemetry_mdt/README.md index c1b2604eb..3772a84c3 100644 --- a/plugins/inputs/cisco_telemetry_mdt/README.md +++ b/plugins/inputs/cisco_telemetry_mdt/README.md @@ -44,7 +44,8 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ## Address and port to host telemetry listener service_address = ":57000" - ## Grpc Maximum Message Size, default is 4MB, increase the size. + ## Grpc Maximum Message Size, default is 4MB, increase the size. This is + ## stored as a uint32, and limited to 4294967295. max_msg_size = 4000000 ## Enable TLS; grpc transport only. diff --git a/plugins/inputs/cisco_telemetry_mdt/sample.conf b/plugins/inputs/cisco_telemetry_mdt/sample.conf index a81cb3ca8..86be065b6 100644 --- a/plugins/inputs/cisco_telemetry_mdt/sample.conf +++ b/plugins/inputs/cisco_telemetry_mdt/sample.conf @@ -7,7 +7,8 @@ ## Address and port to host telemetry listener service_address = ":57000" - ## Grpc Maximum Message Size, default is 4MB, increase the size. + ## Grpc Maximum Message Size, default is 4MB, increase the size. This is + ## stored as a uint32, and limited to 4294967295. max_msg_size = 4000000 ## Enable TLS; grpc transport only.