Telegraf to collect StatsD

Hey guys,
I have k8s cluster with Telegraf deployed as DaemonSet.
We want to collect StatsD from our apps cross the cluster.
I have added the following Telegraf configuration to my Telegraf DaemonSet:

[[inputs.statsd]]
service_address = “localhost:8125”
delete_gauges = true
delete_counters = true
delete_sets = true
delete_timings = true
percentiles = [90]
metric_separator = “_”

And there is no StatsD collections… what i’m missing here?
I should set StatsD collector for each pod individualy?

Thanks a lot