Replies: 1 comment
-
The order of configuration blocks is significant in Fluentd. So if you write: <match fluent.*>
@type stdout
</match>
<filter fluent.*>
@type parser
...
</filter> Fluentd will apply The solution is simple. You just need to reorder the filter/match blocks as <filter fluent.*>
@type parser
...
</filter>
<match fluent.*>
@type stdout
</match> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to push fluentd's pods logs to logz.io. Basically, I have installed the fluent-plugin-throttle plugin which push logs whenever any container reaches the log limit. These log lines show in fluentd's logs. The plugin pushes logs in Json but Fluentd add "2022-10-19 16:57:22 +0000 [info]:" prefix in each log lines. I want to capture online the following log lines, the rest of the lines can be discarded.
Type 2:
Beta Was this translation helpful? Give feedback.
All reactions