We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4cdc7d commit 3446aceCopy full SHA for 3446ace
plugins/filter_rewrite_tag/rewrite_tag.c
@@ -325,10 +325,11 @@ static int ingest_inline(struct flb_rewrite_tag *ctx,
325
input_instance = (struct flb_input_instance *) processor->data;
326
327
if (processor->source_plugin_type == FLB_PLUGIN_INPUT) {
328
- result = flb_input_log_append_ex(input_instance,
329
- processor_unit->stage + 1,
330
- out_tag, flb_sds_len(out_tag),
331
- buf, buf_size);
+ result = flb_input_log_append_skip_processor_stages(
+ input_instance,
+ processor_unit->stage + 1,
+ out_tag, flb_sds_len(out_tag),
332
+ buf, buf_size);
333
334
if (result == 0) {
335
return FLB_TRUE;
0 commit comments