wildcard does not capture logs #4630
Closed
adelbordbari
started this conversation in
General
Replies: 1 comment
-
I can see the output with the config. <source>
@type udp
tag vpn.logs
format none
</source>
<match vpn.logs>
@type stdout
</match> $ echo "hello world" | nc -u 0.0.0.0 5160
|
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
-
this is my
fluent.conf
:after running fluentd, this leads to nothing, I don't see any output (except fluent's own debug logs ofc)
I am certainly receiving logs on udp port 514 (
tcpdump
output's as expected).the surprise is that when I change the matching tag to
*.*
, I can see the expected outputs, but neither*.logs
norvpn.*
work! (and also notvpn.logs
, as mentioned above)why is this? and how can I actually have my desired tag (
vpn.logs
)?Beta Was this translation helpful? Give feedback.
All reactions