Created
September 17, 2019 23:54
-
-
Save alsargent/cac70ec85e37974c49120818696c9305 to your computer and use it in GitHub Desktop.
Sample configuration file for Telegraf to monitor AWS API endpoints and send to InfluxDB Cloud
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Telegraf Configuration | |
# | |
# Telegraf is entirely plugin driven. All metrics are gathered from the | |
# declared inputs, and sent to the declared outputs. | |
# | |
# Plugins must be declared in here to be active. | |
# To deactivate a plugin, comment out the name and any variables. | |
# | |
# Use 'telegraf -config telegraf.conf -test' to see what metrics a config | |
# file would generate. | |
# | |
# Environment variables can be used anywhere in this config file, simply prepend | |
# them with $. For strings the variable must be within quotes (ie, "$STR_VAR"), | |
# for numbers and booleans they should be plain (ie, $INT_VAR, $BOOL_VAR) | |
# Global tags can be specified here in key="value" format. | |
[global_tags] | |
company = "Amazon" | |
service = "AWS" # will tag all metrics with service=AWS | |
## Environment variables can be used as tags, and throughout the config file | |
# user = "$USER" | |
# Configuration for telegraf agent | |
[agent] | |
## Default data collection interval for all inputs | |
interval = "30s" | |
## Rounds collection interval to 'interval' | |
## ie, if interval="10s" then always collect on :00, :10, :20, etc. | |
round_interval = true | |
## Telegraf will send metrics to outputs in batches of at most | |
## metric_batch_size metrics. | |
## This controls the size of writes that Telegraf sends to output plugins. | |
metric_batch_size = 1000 | |
## For failed writes, telegraf will cache metric_buffer_limit metrics for each | |
## output, and will flush this buffer on a successful write. Oldest metrics | |
## are dropped first when this buffer fills. | |
## This buffer only fills when writes fail to output plugin(s). | |
metric_buffer_limit = 10000 | |
## 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. | |
collection_jitter = "0s" | |
## Default flushing interval for all outputs. Maximum flush_interval will be | |
## flush_interval + flush_jitter | |
flush_interval = "30s" | |
## 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 | |
flush_jitter = "0s" | |
## By default or when set to "0s", precision will be set to the same | |
## timestamp order as the collection interval, with the maximum being 1s. | |
## ie, when interval = "10s", precision will be "1s" | |
## when interval = "250ms", precision will be "1ms" | |
## Precision will NOT be used for service inputs. It is up to each individual | |
## service input to set the timestamp at the appropriate precision. | |
## Valid time units are "ns", "us" (or "µs"), "ms", "s". | |
precision = "" | |
## Logging configuration: | |
## Run telegraf with debug log messages. | |
debug = false | |
## Run telegraf in quiet mode (error log messages only). | |
quiet = false | |
## Specify the log file name. The empty string means to log to stderr. | |
logfile = "" | |
## Override default hostname, if empty use os.Hostname() | |
hostname = "" | |
## If set to true, do no set the "host" tag in the telegraf agent. | |
omit_hostname = true | |
# Changed to true since we don't care about the hostname (localhost) and we want to make our payloads smaller. | |
############################################################################### | |
# OUTPUT PLUGINS # | |
############################################################################### | |
# Configuration for sending metrics to InfluxDB | |
[[outputs.influxdb_v2]] | |
## The URLs of the InfluxDB cluster nodes. | |
## | |
## Multiple URLs can be specified for a single cluster, only ONE of the | |
## urls will be written to each interval. | |
## urls exp: http://127.0.0.1:9999 | |
urls = ["https://us-west-2-1.aws.cloud2.influxdata.com"] | |
## Token for authentication. | |
token = "$INFLUX_TOKEN" | |
## Organization is the name of the organization you wish to write to; must exist. | |
organization = "[email protected]" | |
## Destination bucket to write into. | |
bucket = "my-bucket" | |
############################################################################### | |
# PROCESSOR PLUGINS # | |
############################################################################### | |
############################################################################### | |
# AGGREGATOR PLUGINS # | |
############################################################################### | |
############################################################################### | |
# INPUT PLUGINS # | |
############################################################################### | |
# HTTP/HTTPS request given an address a method and a timeout | |
[[inputs.http_response]] | |
## Server address (default http://localhost) | |
## List of urls to query. | |
urls = [ | |
"http://aws.amazon.com" | |
] | |
## Set http_proxy (telegraf uses the system wide proxy settings if it's is not set) | |
# http_proxy = "http://localhost:8888" | |
## Set response_timeout (default 5 seconds) | |
# response_timeout = "5s" | |
## HTTP Request Method | |
# method = "GET" | |
## Whether to follow redirects from the server (defaults to false) | |
follow_redirects = true | |
# Changed this to see if a URL leads to a successful HTTP request. | |
## Optional HTTP Request Body | |
# body = ''' | |
# {'fake':'data'} | |
# ''' | |
## Optional substring or regex match in body of the response | |
# response_string_match = "" | |
## Optional TLS Config | |
# tls_ca = "/etc/telegraf/ca.pem" | |
# tls_cert = "/etc/telegraf/cert.pem" | |
# tls_key = "/etc/telegraf/key.pem" | |
## Use TLS but skip chain & host verification | |
# insecure_skip_verify = false | |
## HTTP Request Headers (all values must be strings) | |
# [inputs.http_response.headers] | |
# Host = "github.com" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment