Skip to content

Commit 9b32a6a

Browse files
eschabellpatrick-stephens
authored andcommitted
in_splunk: add missing config param descriptions
- http2: add description - buffer_max_size: add description - buffer_chunk_size: add description - tag_key: add description - store_token_in_metadata: fix typo (matadata -> metadata) Fixes #11390 Signed-off-by: Eric D. Schabell <[email protected]>
1 parent 1dcc0b7 commit 9b32a6a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plugins/in_splunk/splunk.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,19 +217,19 @@ static struct flb_config_map config_map[] = {
217217
{
218218
FLB_CONFIG_MAP_BOOL, "http2", "true",
219219
0, FLB_TRUE, offsetof(struct flb_splunk, enable_http2),
220-
NULL
220+
"Enable HTTP/2 support"
221221
},
222222

223223
{
224224
FLB_CONFIG_MAP_SIZE, "buffer_max_size", HTTP_BUFFER_MAX_SIZE,
225225
0, FLB_TRUE, offsetof(struct flb_splunk, buffer_max_size),
226-
""
226+
"Set the maximum size of buffer"
227227
},
228228

229229
{
230230
FLB_CONFIG_MAP_SIZE, "buffer_chunk_size", HTTP_BUFFER_CHUNK_SIZE,
231231
0, FLB_TRUE, offsetof(struct flb_splunk, buffer_chunk_size),
232-
""
232+
"Set the initial buffer size to store incoming data"
233233
},
234234

235235
{
@@ -247,7 +247,7 @@ static struct flb_config_map config_map[] = {
247247
{
248248
FLB_CONFIG_MAP_BOOL, "store_token_in_metadata", "true",
249249
0, FLB_TRUE, offsetof(struct flb_splunk, store_token_in_metadata),
250-
"Store Splunk HEC tokens in matadata. If set as false, they will be stored into records."
250+
"Store Splunk HEC tokens in metadata. If set as false, they will be stored into records."
251251
},
252252

253253
{
@@ -259,7 +259,7 @@ static struct flb_config_map config_map[] = {
259259
{
260260
FLB_CONFIG_MAP_STR, "tag_key", NULL,
261261
0, FLB_TRUE, offsetof(struct flb_splunk, tag_key),
262-
""
262+
"Set a record key to specify the tag of the record"
263263
},
264264

265265

0 commit comments

Comments
 (0)