Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 741 Bytes

logger_influxdb.md

File metadata and controls

30 lines (23 loc) · 741 Bytes

Logger: InfluxDB client

InfluxDB client to remote InfluxDB server

Options:

  • server-url: (string) InfluxDB server url
  • auth-token: (string) authentication token
  • bucket: (string) bucket name
  • organization: (string) organization name
  • tls-support: (boolean) enable tls
  • tls-insecure: (boolean) insecure skip verify
  • tls-min-version: (string) min tls version
  • chan-buffer-size: (integer) channel buffer size used on incoming dns message, number of messages before to drop it.

Default values:

influxdb:
  server-url: "http://localhost:8086"
  auth-token: ""
  bucket: "db_dns"
  organization: "dnscollector"
  tls-support: false
  tls-insecure: false
  tls-min-version: 1.2
  chan-buffer-size: 65535