Fluentd logs #4441
govindagopi
started this conversation in
General
Fluentd logs
#4441
Replies: 1 comment
-
You use yaml config file? I don't see the input data and the results. For example, you can test your config as follows. <source>
@type sample
tag test
# Arrange this depending on the input data you want to test.
sample {"message": "test message"}
</source>
<filter test>
# Write your filter config here
</filter>
<match test>
# The results will be recorded in the console standard output or in the Fluentd log files.
@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
-
i applied the filter condition in fluentd config yaml file in order to filter the particular field to be removed "data.involvedObject.labels.app" while fluentd logs are pushing to kibana. But the filter condition doesn't filtering it out.
Beta Was this translation helpful? Give feedback.
All reactions