wip
This commit is contained in:
parent
02ca519489
commit
42fe3ecd7e
3 changed files with 37 additions and 1 deletions
|
@ -1,2 +1,6 @@
|
||||||
|
statistics-channels {
|
||||||
|
inet 127.0.0.1 port 8053;
|
||||||
|
};
|
||||||
|
|
||||||
include "/etc/bind/named.conf.options";
|
include "/etc/bind/named.conf.options";
|
||||||
include "/etc/bind/named.conf.local";
|
include "/etc/bind/named.conf.local";
|
||||||
|
|
|
@ -10,6 +10,17 @@ defaults = {
|
||||||
'bind': {
|
'bind': {
|
||||||
'zones': {},
|
'zones': {},
|
||||||
},
|
},
|
||||||
|
'telegraf': {
|
||||||
|
'config': {
|
||||||
|
'inputs': {
|
||||||
|
'bind': [{
|
||||||
|
'urls': ['http://localhost:8053/xml/v3'],
|
||||||
|
'gather_memory_contexts': False,
|
||||||
|
'gather_views': True,
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
root_password = repo.vault.password_for(f'{node.name} postgresql root')
|
||||||
|
|
||||||
defaults = {
|
defaults = {
|
||||||
'apt': {
|
'apt': {
|
||||||
'packages': {
|
'packages': {
|
||||||
|
@ -12,12 +14,13 @@ defaults = {
|
||||||
'postgresql': {
|
'postgresql': {
|
||||||
'roles': {
|
'roles': {
|
||||||
'root': {
|
'root': {
|
||||||
'password': repo.vault.password_for(f'{node.name} postgresql root'),
|
'password': root_password,
|
||||||
'superuser': True,
|
'superuser': True,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'databases': {},
|
'databases': {},
|
||||||
},
|
},
|
||||||
|
'grafana_rows': [],
|
||||||
}
|
}
|
||||||
|
|
||||||
if node.has_bundle('zfs'):
|
if node.has_bundle('zfs'):
|
||||||
|
@ -28,3 +31,21 @@ if node.has_bundle('zfs'):
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@metadata_reactor.provides(
|
||||||
|
'telegraf/config/inputs/postgresql',
|
||||||
|
)
|
||||||
|
def telegraf(metadata):
|
||||||
|
return {
|
||||||
|
'telegraf': {
|
||||||
|
'config': {
|
||||||
|
'inputs': {
|
||||||
|
'postgresql': [{
|
||||||
|
'address': f'postgres://root:{root_password}@localhost:5432/postgres',
|
||||||
|
'databases': sorted(list(node.metadata.get('postgresql/databases').keys())),
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue