Verterok Telegraf

Channel Revision Published Runs on
latest/stable 12 19 Mar 2021
Ubuntu 14.04
latest/edge 12 19 Mar 2021
Ubuntu 14.04
juju deploy verterok-telegraf
Show information

Platform:

Ubuntu
14.04

Learn about configurations >

  • apt_repository | string

    An apt sources.list line for a repository containing the telegraf package

  • apt_repository_key | string

    GPG key for apt_repository

  • collection_jitter | string

    Default: 0s

    Collection jitter is used to jitter the collection by a random amount. Each plugin will sleep for a random time within jitter before collecting. This can be used to avoid many plugins querying things like sysfs at the same time, which can have a measurable effect on the system.

  • debug | boolean

    Run telegraf in debug mode

  • flush_interval | string

    Default: 10s

    Default data flushing interval for all outputs. You should not set this below interval. Maximum flush_interval will be flush_interval + flush_jitter

  • flush_jitter | string

    Default: 0s

    Jitter the flush interval by a random amount. This is primarily to avoid large write spikes for users running a large number of telegraf instances. ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s

  • hostname | string

    Override default hostname, if empty use os.Hostname() Supports using UNIT_NAME as the value, and the charm will use a sanitized unit name, e.g: service_name-0

  • inputs_config | string

    [inputs.xxx] sections as base64 string

  • interval | string

    Default: 10s

    Default data collection interval for all plugins

  • metric_buffer_limit | int

    Default: 10000

    Telegraf will cache metric_buffer_limit metrics for each output, and will flush this buffer on a successful write.

  • outputs_config | string

    [outputs.xxx] sections as base64 string

  • package_name | string

    Default: telegraf_0.10.1-1_amd64.deb

    Filename of telegraf deb package. If this matches the name of a file in the files charm directory the package will be installed from there, otherwise it will try to install it from the repository provided by apt_repository.

  • quiet | boolean

    Run telegraf in quiet mode

  • round_interval | boolean

    Default: True

    Rounds collection interval to 'interval' ie, if interval="10s" then always collect on :00, :10, :20, etc.

  • tags | string

    Comma separated list of global tags. ie, 'dc=us-east-1,rack=1a' will tag all metrics with dc=us-east-1 and rack=1a