Maintained by:
InfluxData
Where to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow
Dockerfile links1.22, 1.22.41.22-alpine, 1.22.4-alpine1.23, 1.23.41.23-alpine, 1.23.4-alpine1.24, 1.24.0, latest1.24-alpine, 1.24.0-alpine, alpineWhere to file issues:
https://github.com/influxdata/influxdata-docker/issues
Supported architectures: (more info)
amd64, arm32v7, arm64v8
Published image artifact details:
repo-info repo's repos/telegraf/ directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/telegraf label
official-images repo's library/telegraf file (history)
Source of this description:
docs repo's telegraf/ directory (history)
Telegraf is an open source agent written in Go for collecting metrics and data on the system it's running on or from other services. Telegraf writes data it collects to InfluxDB in the correct format.
The default configuration requires a running InfluxDB instance as an output plugin. Ensure that InfluxDB is running on port 8086 before starting the Telegraf container.
Minimal example to start an InfluxDB container:
$ docker run -d --name influxdb -p 8086:8086 influxdb
Starting Telegraf using the default config, which connects to InfluxDB at http://localhost:8086/:
$ docker run --net=container:influxdb telegraf
First, generate a sample configuration and save it as telegraf.conf on the host:
$ docker run --rm telegraf telegraf config > telegraf.conf
Once you've customized telegraf.conf, you can run the Telegraf container with it mounted in the expected location:
$ docker run -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro telegraf
Modify $PWD to the directory where you want to store the configuration file.
Read more about the Telegraf configuration here.
These examples assume you are using a custom configuration file that takes advantage of Docker's built-in service discovery capability. In order to do so, we'll first create a new network:
$ docker network create influxdb
Next, we'll start our InfluxDB container named influxdb:
$ docker run -d --name=influxdb \
--net=influxdb \
influxdb
The telegraf.conf configuration can now resolve the influxdb container by name:
[[outputs.influxdb]]
urls = ["http://influxdb:8086"]
Finally, we start our Telegraf container and verify functionality:
$ docker run -d --name=telegraf \
--net=influxdb \
-v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \
telegraf
$ docker logs -f telegraf
Start an instance of aerospike:
$ docker run -d --name aerospike \
--net=influxdb \
-p 3000-3003:3000-3003 \
aerospike
Edit your Telegraf config file and set the correct connection parameter for Aerospike:
[[inputs.aerospike]]
servers = ["aerospike:3000"]
Restart your telegraf container to pick up the changes:
$ docker restart telegraf
Create an nginx_status.conf configuration file to expose metric data:
server {
listen 8090;
location /nginx_status {
stub_status;
access_log off;
}
}
Start an Nginx container utilizing it:
$ docker run -d --name=nginx \
--net=influxdb \
-p 8090:8090 -p 8080:80 \
-v $PWD/nginx_status.conf:/etc/nginx/conf.d/nginx_status.conf:ro \
nginx
Verify the status page: http://localhost:8090/nginx_status.
Configure the nginx input plugin in your Telegraf configuration file:
[[inputs.nginx]]
urls = ["http://nginx:8090/nginx_status"]
Restart your telegraf container to pick up the changes:
$ docker restart telegraf
Telegraf has a StatsD plugin, allowing Telegraf to run as a StatsD server that metrics can be sent to. In order for this to work, you must first configure the StatsD plugin in your config file.
Run Telegraf with the UDP port 8125 exposed:
$ docker run -d --name=telegraf \
--net=influxdb \
-p 8125:8125/udp \
-v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \
telegraf
Send Mock StatsD data:
$ for i in {1..50}; do echo $i;echo "foo:1|c" | nc -u -w0 127.0.0.1 8125; done
Check that the measurement foo is added in the DB.
One common use case for Telegraf is to monitor the Docker Engine Host from within a container. The recommended technique is to mount the host filesystems into the container and use environment variables to instruct Telegraf where to locate the filesystems.
The precise files that need to be made available varies from plugin to plugin. Here is an example showing the full set of supported locations:
$ docker run -d --name=telegraf \
-v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \
-v /:/hostfs:ro \
-e HOST_ETC=/hostfs/etc \
-e HOST_PROC=/hostfs/proc \
-e HOST_SYS=/hostfs/sys \
-e HOST_VAR=/hostfs/var \
-e HOST_RUN=/hostfs/run \
-e HOST_MOUNT_PREFIX=/hostfs \
telegraf
To monitor other docker containers, you can use the docker plugin and mount the docker socket into the container. An example configuration is below:
[[inputs.docker]]
endpoint = "unix:///var/run/docker.sock"
Then you can start the telegraf container.
$ docker run -d --name=telegraf \
--net=influxdb \
-v /var/run/docker.sock:/var/run/docker.sock \
-v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \
telegraf
Refer to the docker plugin documentation for more information.
Some plugins require additional packages to be installed. For example, the ntpq plugin requires ntpq command. It is recommended to create a custom derivative image to install any needed commands.
As an example this Dockerfile add the mtr-tiny image to the stock image and save it as telegraf-mtr.docker:
FROM telegraf:1.12.3
RUN apt-get update && apt-get install -y --no-install-recommends mtr-tiny && \
rm -rf /var/lib/apt/lists/*
Build the derivative image:
$ docker build -t telegraf-mtr:1.12.3 - < telegraf-mtr.docker
Create a telegraf.conf configuration file:
[[inputs.exec]]
interval = "60s"
commands=["mtr -C -n example.org"]
timeout = "40s"
data_format = "csv"
csv_skip_rows = 1
csv_column_names=["", "", "status", "dest", "hop", "ip", "loss", "snt", "", "", "avg", "best", "worst", "stdev"]
name_override = "mtr"
csv_tag_columns = ["dest", "hop", "ip"]
[[outputs.file]]
files = ["stdout"]
Run your derivative image:
$ docker run --name telegraf --rm -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf telegraf-mtr:1.12.3
The telegraf images come in many flavors, each designed for a specific use case.
telegraf:<version>This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
telegraf:<version>-alpineThis image is based on the popular Alpine Linux project, available in the alpine official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use musl libc instead of glibc and friends, so software will often run into issues depending on the depth of their libc requirements/assumptions. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
To minimize image size, it's uncommon for additional related tools (such as git or bash) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the alpine image description for examples of how to install packages if you are unfamiliar).
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info repository's telegraf/ directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.