forked from steemit/telegrafrelay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelegraf.conf
51 lines (47 loc) · 1.1 KB
/
telegraf.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[global_tags]
[agent]
interval = "10s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "0s"
flush_interval = "10s"
flush_jitter = "0s"
precision = ""
debug = false
quiet = false
logfile = ""
hostname = ""
omit_hostname = false
[[outputs.cloudwatch]]
region = "$TELEGRAF_CLOUDWATCH_REGION"
namespace = "$TELEGRAF_CLOUDWATCH_NAMESPACE"
write_statistics = true
[[processors.rename]]
[[processors.rename.field]]
from = "lower"
to = "value_min"
[[processors.rename.field]]
from = "upper"
to = "value_max"
[[processors.rename.field]]
from = "count"
to = "value_count"
[[processors.rename.field]]
from = "sum"
to = "value_sum"
[processors.rename.tagpass]
metric_type = ["timing"]
[[inputs.statsd]]
fielddrop = ["stddev","mean"]
protocol = "udp"
service_address = ":8125"
delete_gauges = true
delete_counters = true
delete_sets = true
delete_timings = true
percentiles = []
metric_separator = "_"
parse_data_dog_tags = false
allowed_pending_messages = 10000
percentile_limit = 1000