mirror of
https://github.com/dj-wasabi/ansible-telegraf.git
synced 2025-07-17 08:46:37 +00:00
Compare commits
9 Commits
0.14.2
...
8670792f6f
Author | SHA1 | Date | |
---|---|---|---|
8670792f6f | |||
4803b33f89 | |||
0c7f32937f | |||
2f2619580b | |||
9363cfd04b | |||
ff77201873 | |||
9febe3fa4c | |||
45ad4915eb | |||
b798c93a6a |
14
CHANGELOG.md
14
CHANGELOG.md
@ -2,7 +2,17 @@
|
||||
|
||||
## [Unreleased](https://github.com/dj-wasabi/ansible-telegraf/tree/HEAD)
|
||||
|
||||
[Full Changelog](https://github.com/dj-wasabi/ansible-telegraf/compare/0.14.1...HEAD)
|
||||
[Full Changelog](https://github.com/dj-wasabi/ansible-telegraf/compare/0.14.2...HEAD)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Better sub inputs handling [\#193](https://github.com/dj-wasabi/ansible-telegraf/pull/193) ([lisuml](https://github.com/lisuml))
|
||||
- Bump ansible-core from 2.18.0 to 2.18.1 [\#192](https://github.com/dj-wasabi/ansible-telegraf/pull/192) ([dependabot[bot]](https://github.com/apps/dependabot))
|
||||
- Bump ansible-core from 2.16.8 to 2.18.0 [\#191](https://github.com/dj-wasabi/ansible-telegraf/pull/191) ([dependabot[bot]](https://github.com/apps/dependabot))
|
||||
|
||||
## [0.14.2](https://github.com/dj-wasabi/ansible-telegraf/tree/0.14.2) (2024-11-26)
|
||||
|
||||
[Full Changelog](https://github.com/dj-wasabi/ansible-telegraf/compare/0.14.1...0.14.2)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
@ -172,7 +182,6 @@
|
||||
- Some changes for fixing FreeBSD [\#101](https://github.com/dj-wasabi/ansible-telegraf/pull/101) ([dj-wasabi](https://github.com/dj-wasabi))
|
||||
- basic FreeBSD support [\#100](https://github.com/dj-wasabi/ansible-telegraf/pull/100) ([langerma](https://github.com/langerma))
|
||||
- Added the use\_proxy argument to use a proxy \(or not\) [\#98](https://github.com/dj-wasabi/ansible-telegraf/pull/98) ([dj-wasabi](https://github.com/dj-wasabi))
|
||||
- Various small changes for molecule [\#97](https://github.com/dj-wasabi/ansible-telegraf/pull/97) ([dj-wasabi](https://github.com/dj-wasabi))
|
||||
|
||||
## [0.12.0](https://github.com/dj-wasabi/ansible-telegraf/tree/0.12.0) (2019-03-12)
|
||||
|
||||
@ -188,6 +197,7 @@
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Various small changes for molecule [\#97](https://github.com/dj-wasabi/ansible-telegraf/pull/97) ([dj-wasabi](https://github.com/dj-wasabi))
|
||||
- Add processors section in Telegraf config [\#94](https://github.com/dj-wasabi/ansible-telegraf/pull/94) ([ph4r5h4d](https://github.com/ph4r5h4d))
|
||||
- Updated to Telegraf 1.10.0;Different installation methods [\#93](https://github.com/dj-wasabi/ansible-telegraf/pull/93) ([dj-wasabi](https://github.com/dj-wasabi))
|
||||
- Updating Telegraf default to 1.9.5 [\#92](https://github.com/dj-wasabi/ansible-telegraf/pull/92) ([sdurrheimer](https://github.com/sdurrheimer))
|
||||
|
@ -10,6 +10,7 @@
|
||||
Diego Nava
|
||||
Emerson Knapp
|
||||
Farshad Nematdoust
|
||||
Frank Villaro-Dixon
|
||||
Greg
|
||||
Harald Kraemer
|
||||
Heckel, Robert J
|
||||
@ -26,6 +27,8 @@
|
||||
Markus Langer
|
||||
Matt
|
||||
Max Nasonov
|
||||
Michał Lisowski
|
||||
Mira
|
||||
Miro Prasil
|
||||
Miroslav Prasil
|
||||
NotDead
|
||||
@ -40,6 +43,7 @@
|
||||
Romain BUREAU
|
||||
Ryan Conway
|
||||
Simo Tuomisto
|
||||
Simon
|
||||
Slawomir Skowron
|
||||
Steve Durrheimer
|
||||
Steven Wirges
|
||||
@ -47,6 +51,7 @@
|
||||
Thomas Szymanski
|
||||
ThorstenHeck
|
||||
Troy Jendra
|
||||
Vinicius Freitas
|
||||
Werner Dijkerman
|
||||
Werner Dijkerman [GH bot]
|
||||
aroglian
|
||||
|
@ -342,13 +342,13 @@ sqs:
|
||||
- statistic_include = ["average"]
|
||||
sub_inputs:
|
||||
metrics:
|
||||
- names = [
|
||||
- names: [
|
||||
"ApproximateAgeOfOldestMessage",
|
||||
"ApproximateNumberOfMessagesVisible",
|
||||
]
|
||||
metrics.dimensions:
|
||||
- name = "QueueName"
|
||||
- value = "*"
|
||||
- name: "QueueName"
|
||||
value: "*"
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
@ -1,6 +1,6 @@
|
||||
ansible==9.7.0
|
||||
ansible-compat==24.10.0
|
||||
ansible-core==2.16.8
|
||||
ansible-core==2.18.1
|
||||
docker==7.1.0
|
||||
molecule==6.0.3
|
||||
molecule-docker==2.1.0
|
||||
|
@ -56,10 +56,16 @@
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% if item.value.sub_inputs is defined and item.value.sub_inputs is iterable %}
|
||||
{% for sub_input, config in item.value.sub_inputs.items() %}
|
||||
[[inputs.{{ item.value.plugin | default(item.key) }}.{{ sub_input }}]]
|
||||
{% for items in config %}
|
||||
{{ items }}
|
||||
{% for sub_input_key, sub_input_list in item.value.sub_inputs.items() %}
|
||||
{% for block in sub_input_list %}
|
||||
[[inputs.{{ item.value.plugin | default(item.key) }}.{{ sub_input_key }}]]
|
||||
{% for param_key, param_value in block.items() %}
|
||||
{% if param_value is sequence and param_value is not string %}
|
||||
{{ param_key }} = {{ param_value | to_json }}
|
||||
{% else %}
|
||||
{{ param_key }} = "{{ param_value }}"
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user