Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Telegraf slice issue #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:

telegraf:
image: telegraf:1.16
image: telegraf:1.22
container_name: telegraf
restart: always
volumes:
Expand All @@ -19,7 +19,7 @@ services:
- tick

influxdb:
image: influxdb:1.8
image: influxdb:1.8.10
container_name: influxdb
restart: always
volumes:
Expand All @@ -30,7 +30,7 @@ services:
- tick

chronograf:
image: chronograf:1.8
image: chronograf:1.9.4
container_name: chronograf
restart: always
environment:
Expand Down
8 changes: 8 additions & 0 deletions telegraf/telegraf.conf
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@
# ## To use TCP, set endpoint = "tcp://[ip]:[port]"
# ## To use environment variables (ie, docker-machine), set endpoint = "ENV"
endpoint = "unix:///var/run/docker.sock"
container_names = []
container_name_include = []
container_name_exclude = []
timeout = "5s"
perdevice = true
docker_label_include = []
docker_label_exclude = []


# Read metrics about cpu usage
[[inputs.cpu]]
Expand Down