Telegraf Module - Initial Commit

This commit is contained in:
Mike Reeves
2018-11-16 14:12:24 -05:00
parent 80310eb461
commit 64beb29149
3 changed files with 2347 additions and 0 deletions

View File

@@ -144,6 +144,27 @@ enable_masternode_ES_9300_{{ip}}:
- position: 1
- save: True
enable_masternode_influxdb_8083_{{ip}}:
iptables.insert:
- table: filter
- chain: DOCKER-USER
- jump: ACCEPT
- proto: tcp
- source: {{ ip }}
- dport: 8083
- position: 1
- save: True
enable_masternode_influxdb_8086_{{ip}}:
iptables.insert:
- table: filter
- chain: DOCKER-USER
- jump: ACCEPT
- proto: tcp
- source: {{ ip }}
- dport: 8086
- position: 1
- save: True
{% endfor %}
@@ -194,6 +215,30 @@ enable_salt_minions_3142_{{ip}}:
- position: 1
- save: True
# Allow Influx DB access to minions so they can send in stats
enable_minion_influxdb_8083_{{ip}}:
iptables.insert:
- table: filter
- chain: DOCKER-USER
- jump: ACCEPT
- proto: tcp
- source: {{ ip }}
- dport: 8083
- position: 1
- save: True
enable_minions_influxdb_8086_{{ip}}:
iptables.insert:
- table: filter
- chain: DOCKER-USER
- jump: ACCEPT
- proto: tcp
- source: {{ ip }}
- dport: 8086
- position: 1
- save: True
{% endfor %}
# Allow Forward Nodes to send their beats traffic