Created
February 20, 2017 02:22
-
-
Save cdgraff/f5040af09496ca1678663e922a7fe9f5 to your computer and use it in GitHub Desktop.
Telegraf Statsd Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# # Statsd Server | |
[[inputs.statsd]] | |
# ## Address and port to host UDP listener on | |
service_address = ":8125" | |
# ## separator to use between elements of a statsd metric | |
metric_separator = "." | |
# ## Statsd data translation templates, more info can be read here: | |
# ## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md#graphite | |
templates = [ | |
"streams.*" | |
] | |
# | |
# ## Number of UDP messages allowed to queue up, once filled, | |
# ## the statsd server will start dropping packets | |
allowed_pending_messages = 100000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment