Skip to content

Commit

Permalink
Fix typo paylod -> payload
Browse files Browse the repository at this point in the history
Signed-off-by: Will Da Silva <[email protected]>
  • Loading branch information
WillDaSilva committed Nov 26, 2024
1 parent 557b0b5 commit cf8a87e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion plugins/out_http/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_BOOL, "log_response_payload", "true",
0, FLB_TRUE, offsetof(struct flb_out_http, log_response_payload),
"Specify if the response paylod should be logged or not"
"Specify if the response payload should be logged or not"
},
{
FLB_CONFIG_MAP_STR, "http_user", NULL,
Expand Down
2 changes: 1 addition & 1 deletion plugins/out_http/http.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct flb_out_http {
/* Allow duplicated headers */
int allow_dup_headers;

/* Log the response paylod */
/* Log the response payload */
int log_response_payload;

/* Upstream connection to the backend server */
Expand Down
2 changes: 1 addition & 1 deletion plugins/out_opentelemetry/opentelemetry.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_BOOL, "log_response_payload", "true",
0, FLB_TRUE, offsetof(struct opentelemetry_context, log_response_payload),
"Specify if the response paylod should be logged or not"
"Specify if the response payload should be logged or not"
},
{
FLB_CONFIG_MAP_STR, "logs_metadata_key", "otlp",
Expand Down
2 changes: 1 addition & 1 deletion plugins/out_opentelemetry/opentelemetry.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ struct opentelemetry_context {
/* Number of logs to flush at a time */
int batch_size;

/* Log the response paylod */
/* Log the response payload */
int log_response_payload;

/* config reader for 'add_label' */
Expand Down
2 changes: 1 addition & 1 deletion plugins/out_prometheus_remote_write/remote_write.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_BOOL, "log_response_payload", "true",
0, FLB_TRUE, offsetof(struct prometheus_remote_write_context, log_response_payload),
"Specify if the response paylod should be logged or not"
"Specify if the response payload should be logged or not"
},
/* EOF */
{0}
Expand Down
2 changes: 1 addition & 1 deletion plugins/out_prometheus_remote_write/remote_write.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ struct prometheus_remote_write_context {

const char *compression;

/* Log the response paylod */
/* Log the response payload */
int log_response_payload;

/* config reader for 'add_label' */
Expand Down

0 comments on commit cf8a87e

Please sign in to comment.