Skip to content
Snippets Groups Projects
  1. Apr 27, 2017
  2. Feb 02, 2017
  3. Dec 06, 2016
  4. Apr 30, 2016
  5. Apr 01, 2016
    • Cameron Sparr's avatar
      Cleanup & standardize config file · e436b2d7
      Cameron Sparr authored
      changes:
      
      - -sample-config will now comment out all but a few default plugins.
      - config file parse errors will output path to bad conf file.
      - cleanup 80-char line-length and some other style issues.
      - default package conf file will now have all plugins, but commented
        out.
      
      closes #199
      closes #944
      e436b2d7
    • Florent Ramière's avatar
      8c3371c4
    • Florent Ramière's avatar
      Add compression/acks/retry conf to Kafka output plugin · 6ff0fc6d
      Florent Ramière authored
      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"
      6ff0fc6d
  6. Feb 18, 2016
  7. Feb 12, 2016
  8. Feb 04, 2016
  9. Jan 28, 2016
  10. Jan 27, 2016
    • Cameron Sparr's avatar
      Create public models for telegraf metrics, accumlator, plugins · 9c0d14bb
      Cameron Sparr authored
      This will basically make the root directory a place for storing the
      major telegraf interfaces, which will make telegraf's godoc looks quite
      a bit nicer. And make it easier for contributors to lookup the few data
      types that they actually care about.
      
      closes #564
      9c0d14bb
  11. Jan 23, 2016
  12. Jan 20, 2016
  13. Jan 18, 2016
    • Hannu Valtonen's avatar
      kafka: Add support for using TLS authentication for the kafka output · c313af1b
      Hannu Valtonen authored
      With the advent of Kafka 0.9.0+ it is possible to set up TLS client
      certificate based authentication to limit access to Kafka.
      
      Four new configuration variables are specified for setting up the
      authentication. If they're not set the behavior stays the same as
      before the change.
      
      closes #541
      c313af1b
  14. Jan 07, 2016
  15. Oct 20, 2015
  16. Oct 15, 2015
  17. Sep 24, 2015
  18. Sep 16, 2015
  19. Sep 04, 2015
  20. Aug 27, 2015
Loading