telegraf/plugins/outputs
Florent Ramière 6ff0fc6d83 Add compression/acks/retry conf to Kafka output plugin
The following configuration is now possible

	## CompressionCodec represents the various compression codecs
recognized by Kafka in messages.
	##  "none" : No compression
	##  "gzip" : Gzip compression
	##  "snappy" : Snappy compression
	# compression_codec = "none"

	##  RequiredAcks is used in Produce Requests to tell the broker how
many replica acknowledgements it must see before responding
	##  "none" : the producer never waits for an acknowledgement from the
broker. This option provides the lowest latency but the weakest
durability guarantees (some data will be lost when a server fails).
	##  "leader" : the producer gets an acknowledgement after the leader
replica has received the data. This option provides better durability
as the client waits until the server acknowledges the request as
successful (only messages that were written to the now-dead leader but
not yet replicated will be lost).
	##  "leader_and_replicas" : the producer gets an acknowledgement after
all in-sync replicas have received the data. This option provides the
best durability, we guarantee that no messages will be lost as long as
at least one in sync replica remains.
	# required_acks = "leader_and_replicas"

	##  The total number of times to retry sending a message
	# max_retry = "3"
2016-04-01 10:08:55 -06:00
..
all Add Serializer plugins, and 'file' output plugin 2016-02-12 14:13:49 -07:00
amon Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
amqp [amqp output] Allow external auth (cert-based tls auth) 2016-03-16 19:03:41 -06:00
cloudwatch Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
datadog add verifyValue func for datadog and librato, bail if no good 2016-03-22 15:22:57 -06:00
file Provide default args: percpu=true and totalcpu=true for cpu plugin 2016-02-19 11:56:33 -07:00
graphite Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
influxdb Add optional parameters to influxdb output README 2016-03-22 09:14:25 -06:00
kafka Add compression/acks/retry conf to Kafka output plugin 2016-04-01 10:08:55 -06:00
kinesis Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
librato add verifyValue func for datadog and librato, bail if no good 2016-03-22 15:22:57 -06:00
mqtt Use github paho mqtt client instead of gerrit 2016-03-30 11:54:01 -06:00
nsq Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
opentsdb Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
prometheus_client Don't log every string metric that prometheus doesnt support 2016-03-23 16:01:06 -06:00
riemann Seems to be a toml parse bug around triple pounds 2016-02-18 14:36:03 -07:00
registry.go Create public models for telegraf metrics, accumlator, plugins 2016-01-27 15:42:50 -07:00