move usv telegraf info collection to influxdb host
This commit is contained in:
parent
c8dd809057
commit
afa1e4abb7
2 changed files with 44 additions and 37 deletions
|
@ -151,43 +151,6 @@ nodes['home.router'] = {
|
||||||
'172.19.138.0/23',
|
'172.19.138.0/23',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'telegraf': {
|
|
||||||
'input_plugins': {
|
|
||||||
'builtin': {
|
|
||||||
'snmp': [
|
|
||||||
{
|
|
||||||
'agents': ['udp://172.19.138.2'],
|
|
||||||
'agent_host_tag': 'host',
|
|
||||||
'table': [{'oid': 'IF-MIB::ifTable'}],
|
|
||||||
'interval': '10s',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'agents': ['udp://172.19.138.3'],
|
|
||||||
'agent_host_tag': 'host',
|
|
||||||
'field': [
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.3.0', 'name': 'battery_runtime_to_empty'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.4.0', 'name': 'battery_capacity'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.5.0', 'name': 'battery_voltage', 'conversion': 'float(1)'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.6.0', 'name': 'battery_current', 'conversion': 'float(1)'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.3.3.1.2.1', 'name': 'input_frequency', 'conversion': 'float(1)'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.3.3.1.3.1', 'name': 'input_voltage'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.2.0', 'name': 'output_frequency', 'conversion': 'float(1)'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.2.1', 'name': 'output_voltage'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.3.1', 'name': 'output_frequency', 'conversion': 'float(1)'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.4.1', 'name': 'output_watts'},
|
|
||||||
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.5.1', 'name': 'output_percent'},
|
|
||||||
],
|
|
||||||
'interval': '10s',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'agents': ['udp://172.19.138.41'],
|
|
||||||
'agent_host_tag': 'host',
|
|
||||||
'table': [{'oid': 'IF-MIB::ifTable'}],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'users': {
|
'users': {
|
||||||
'f2k1de': {
|
'f2k1de': {
|
||||||
'ssh_pubkey': {
|
'ssh_pubkey': {
|
||||||
|
|
|
@ -10,6 +10,13 @@ nodes['htz-cloud.influxdb'] = {
|
||||||
'webserver',
|
'webserver',
|
||||||
},
|
},
|
||||||
'metadata': {
|
'metadata': {
|
||||||
|
'apt': {
|
||||||
|
'packages': {
|
||||||
|
# for telegraf
|
||||||
|
'snmp': {},
|
||||||
|
'snmp-mibs-downloader': {},
|
||||||
|
},
|
||||||
|
},
|
||||||
'interfaces': {
|
'interfaces': {
|
||||||
'eth0': {
|
'eth0': {
|
||||||
'ips': {
|
'ips': {
|
||||||
|
@ -57,6 +64,43 @@ nodes['htz-cloud.influxdb'] = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'telegraf': {
|
||||||
|
'input_plugins': {
|
||||||
|
'builtin': {
|
||||||
|
'snmp': [
|
||||||
|
{
|
||||||
|
'agents': ['udp://172.19.138.2'],
|
||||||
|
'agent_host_tag': 'host',
|
||||||
|
'table': [{'oid': 'IF-MIB::ifTable'}],
|
||||||
|
'interval': '10s',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'agents': ['udp://172.19.138.3'],
|
||||||
|
'agent_host_tag': 'host',
|
||||||
|
'field': [
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.3.0', 'name': 'battery_runtime_to_empty'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.4.0', 'name': 'battery_capacity'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.5.0', 'name': 'battery_voltage', 'conversion': 'float(1)'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.2.6.0', 'name': 'battery_current', 'conversion': 'float(1)'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.3.3.1.2.1', 'name': 'input_frequency', 'conversion': 'float(1)'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.3.3.1.3.1', 'name': 'input_voltage'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.2.0', 'name': 'output_frequency', 'conversion': 'float(1)'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.2.1', 'name': 'output_voltage'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.3.1', 'name': 'output_frequency', 'conversion': 'float(1)'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.4.1', 'name': 'output_watts'},
|
||||||
|
{'oid': 'SNMPv2-SMI::mib-2.33.1.4.4.1.5.1', 'name': 'output_percent'},
|
||||||
|
],
|
||||||
|
'interval': '10s',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'agents': ['udp://172.19.138.41'],
|
||||||
|
'agent_host_tag': 'host',
|
||||||
|
'table': [{'oid': 'IF-MIB::ifTable'}],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
#'openssh': {
|
#'openssh': {
|
||||||
# 'restrict-to': {
|
# 'restrict-to': {
|
||||||
# 'versatel',
|
# 'versatel',
|
||||||
|
|
Loading…
Reference in a new issue