Advertisement
Guest User

telegraf.conf

a guest
Dec 11th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1.  
  2. [[inputs.influxdb_listener]]
  3. ## Address and port to host HTTP listener on
  4. service_address = ":8888"
  5.  
  6. ## maximum duration before timing out read of the request
  7. read_timeout = "10s"
  8. ## maximum duration before timing out write of the response
  9. write_timeout = "10s"
  10.  
  11. ## Maximum allowed http request body size in bytes.
  12. ## 0 means to use the default of 536,870,912 bytes (500 mebibytes)
  13. max_body_size = 0
  14.  
  15. ## Maximum line size allowed to be sent in bytes.
  16. ## 0 means to use the default of 65536 bytes (64 kibibytes)
  17. max_line_size = 0
  18.  
  19. ## Set one or more allowed client CA certificate file names to
  20. ## enable mutually authenticated TLS connections
  21. #tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"]
  22.  
  23. ## Add service certificate and key
  24. #tls_cert = "/etc/telegraf/cert.pem"
  25. #tls_key = "/etc/telegraf/key.pem"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement