????

Your IP : 216.73.216.174


Current Path : /usr/local/lp/etc/
Upload File :
Current File : //usr/local/lp/etc/telegraf.toml

### NOTE this file is managed by the package
### DO NOT CHANGE
### YOUR CHANGES WILL BE OVERWRITTEN
### AGENT
[agent]
interval = "60s"
## metric_buffer_limit only fills when writes fail to output plugin(s).
metric_buffer_limit = 1000
## metric_batch_size: amount of points to write per flush_interval
## Note: metric_batch_size * (interval / flush_interval) = max writable points
metric_batch_size = 100
flush_buffer_when_full = true
collection_jitter = '0s'
## Maximum flush_interval will be flush_interval + flush_jitter.
## Attempt to write the metrics before the next minute to prevent alerts
flush_interval = '5s'
flush_jitter = '10s'

### INPUTS
## cpu
[[inputs.cpu]]
percpu = false
totalcpu = true

## disk
[[inputs.disk]]
ignore_fs = [
	"tmpfs",
	"nfs",
	"nfs4",
	"devtmpfs",
	"devfs",
	"overlay",
	"vboxsf",
	"squashfs",
]

## mem
[[inputs.mem]]

## diskio
[[inputs.diskio]]

## net
[[inputs.net]]
interfaces = ["eth*", "em*", "lo", "p*p*", "bond0", "bond1"]

## system
[[inputs.system]]

[[inputs.internal]]

[[inputs.exec]]
commands = ["/usr/local/lp/bin/telegraf-scripts/numa-monitor"]
timeout = "5s"
data_format = "influx"

### OUTPUTS
## kafka
[[outputs.kafka]]
brokers = [
	"ifx-kafka01.us-midwest-1.nexcess.net:9094",
	"ifx-kafka02.us-midwest-1.nexcess.net:9094",
	"ifx-kafka03.us-midwest-1.nexcess.net:9094",
	"ifx-kafka04.us-midwest-1.nexcess.net:9094",
]
# these credentials are not a secret
# verification of data is done elsewhere, and all we care about is verifying
# bug bounties for these credentials will be rejected
sasl_username = "lwdata"
sasl_password = "mppjzmbFafbtfeNt41le"
topic = "lwdata"
# dev user #TODO# REMOVE
# sasl_username = "lwdev"
# sasl_password = "av5iLapxbvfkrQgtw0rx"
# topic = "lwdev"
insecure_skip_verify = true
data_format = "json"
compression_codec = 1