diff options
author | Kristian Lyngstøl <kly@kly.no> | 2017-12-27 11:58:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 11:58:46 +0100 |
commit | 394893ce787840973021902f2dfb79a32399b35b (patch) | |
tree | 4d0b7fbbdbaa990beec3887b236d7135e212a7c1 /include/config.pm | |
parent | 1e1c6d13c3a1a7da9c1fe94bcbc7a5277d433ac1 (diff) | |
parent | 89820523f38764de506b9b43755bdaf247d38b33 (diff) |
Merge pull request #164 from msbone/influx
InfluxDB, charting and a few fixes to Ansible
Diffstat (limited to 'include/config.pm')
-rwxr-xr-x | include/config.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config.pm b/include/config.pm index c2beae7..9a881ed 100755 --- a/include/config.pm +++ b/include/config.pm @@ -11,6 +11,12 @@ our $db_password = "risbrod"; our $graphite_host = "graphite"; our $graphite_port = "2003"; +# Influx +our $influx_host = "http://localhost:8086"; +our $influx_username = "admin"; +our $influx_password = "admin"; +our $influx_database = "gondul"; + # Max SNMP polls to fire off at the same time. our $snmp_max = 20; |