Hello, I suspect that this plugin does not cache DNS and does a lookup with each output event. If used like this: ``` type remote_syslog host "some.cool.host.com" ... ``` Ii will make tons of tons of tons of DNS lookups in the nameserver of that host ("Self-DDoS-ing"). Workaround: Set an IP address as value, it will not make lookups: ``` type remote_syslog host "127.0.0.1" .... ``` How about a expire_dns_cache like the fluentd "forward Output Plugin" has? rgds, j