Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
greedybro committed Jan 10, 2020
1 parent 9cc73c5 commit 02ad34f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: manala
name: roles

# The version of the collection. Must be compatible with semantic versioning
version: 0.1.13
version: 0.1.16

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README_COLLECTION.md
Expand Down
10 changes: 10 additions & 0 deletions roles/telegraf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.0.4] - 2020-01-10
### Added
- Fix typo in template "input_docker"

## [2.0.3] - 2020-01-09
### Added
- Fix typo in template "input_docker"

## [2.0.2] - 2020-01-09
### Added
- Configs template "input_docker"

Expand Down
3 changes: 1 addition & 2 deletions roles/telegraf/templates/configs/input_docker.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## Docker Endpoint
## To use TCP, set endpoint = "tcp://[ip]:[port]"
## To use environment variables (ie, docker-machine), set endpoint = "ENV"
{{ macros.config_row(config, 'endpoint', 'endpoint = "unix:///var/run/docker.sock', 0, true) }}
{{ macros.config_row(config, 'endpoint', 'endpoint = "unix:///var/run/docker.sock"', 0, true) }}

## Set to true to collect Swarm metrics(desired_replicas, running_replicas)
## Note: configure this in one of the manager nodes in a Swarm cluster.
Expand All @@ -17,7 +17,6 @@
## Only collect metrics for these containers. Values will be appended to
## container_name_include.
## Deprecated (1.4.0), use container_name_include
container_names = []
{{ macros.config_row(config, 'container_names', 'container_names = []', 0, true) }}

## Set the source tag for the metrics to the container ID hostname, eg first 12 chars
Expand Down

0 comments on commit 02ad34f

Please sign in to comment.