-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtelegraf-windows.conf
114 lines (89 loc) · 4.05 KB
/
telegraf-windows.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Telegraf configuration
# Telegraf is entirely plugin driven. All metrics are gathered from the
# declared inputs, and sent to the declared outputs.
# Plugins must be declared in here to be active.
# To deactivate a plugin, comment out the name and any variables.
# Use 'telegraf -config telegraf.conf -test' to see what metrics a config
# file would generate.
# Global tags can be specified here in key="value" format.
[global_tags]
machine_id = "TELEGRAF_MACHINE"
# Configuration for telegraf agent
[agent]
## Default data collection interval for all inputs
interval = "5s"
## Rounds collection interval to 'interval'
## ie, if interval="10s" then always collect on :00, :10, :20, etc.
round_interval = true
## Telegraf will cache metric_buffer_limit metrics for each output, and will
## flush this buffer on a successful write.
metric_buffer_limit = 1000
## Flush the buffer whenever full, regardless of flush_interval.
flush_buffer_when_full = true
## Collection jitter is used to jitter the collection by a random amount.
## Each plugin will sleep for a random time within jitter before collecting.
## This can be used to avoid many plugins querying things like sysfs at the
## same time, which can have a measurable effect on the system.
collection_jitter = "5s"
## Default flushing interval for all outputs. You shouldn't set this below
## interval. Maximum flush_interval will be flush_interval + flush_jitter
flush_interval = "10s"
## Jitter the flush interval by a random amount. This is primarily to avoid
## large write spikes for users running a large number of telegraf instances.
## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s
flush_jitter = "5s"
## Logging configuration:
## Run telegraf in debug mode
debug = false
## Run telegraf in quiet mode
quiet = false
## Specify the log file name. The empty string means to log to stdout.
logfile = "/Program Files/Telegraf/telegraf.log"
## Override default hostname, if empty use os.Hostname()
hostname = ""
omit_hostname = false
###############################################################################
# OUTPUTS #
###############################################################################
# Configuration for influxdb server to send metrics to
[[outputs.influxdb]]
# The HTTP or UDP URL for your InfluxDB instance.
# Each item should be of the form: scheme "://" host [ ":" port]
#
# Multiple URLs can be specified as part of the same cluster.
# Only ONE of the URLs will be written to each interval.
urls = ["TELEGRAF_HOST"]
# The target database for metrics (telegraf will create it if not exists).
database = "telegraf"
# Retention policy to write to. Empty string writes to the default RP.
retention_policy = ""
# Write consistency (clusters only), can be: "any", "one", "quorum", "all".
write_consistency = "any"
# Write timeout (for the InfluxDB client), formatted as a string.
# If not provided, will default to 5s. 0s means no timeout (not recommended).
timeout = "5s"
username = "TELEGRAF_MACHINE"
password = "$TELEGRAF_PASSWORD"
# Set the user agent for HTTP POSTs (can be useful for log differentiation).
user_agent = "telegraf-TELEGRAF_MACHINE"
###############################################################################
# INPUTS #
###############################################################################
# # Read metrics about cpu usage
[[inputs.cpu]]
# ## Whether to report per-cpu stats or not
percpu = true
# ## Whether to report total system cpu stats or not
totalcpu = true
# ## Comment this line if you want the raw CPU time metrics
# fielddrop = ["time_*"]
# # Read metrics about disk usage by mount point
[[inputs.disk]]
# # Read metrics about disk IO by device
[[inputs.diskio]]
# # Read metrics about memory usage
[[inputs.mem]]
# # no configuration
# # Read metrics about network usage
[[inputs.net]]
# # no configuration