diff options
author | Lasse Haugen <haugen.lasse@gmail.com> | 2023-04-05 22:35:38 +0200 |
---|---|---|
committer | Lasse Haugen <haugen.lasse@gmail.com> | 2023-04-07 18:43:03 +0200 |
commit | 4cf3c338ad7bc5b171eb3b7d18c8d5494ac1a6df (patch) | |
tree | ae7bc513d81c0abb6cba7f8c7f530cf569ee72fd /include/config.local.pm | |
parent | 73712230cccb52757abdf3b3197b441ee301638a (diff) |
tg23 fixtg23
Diffstat (limited to 'include/config.local.pm')
-rw-r--r-- | include/config.local.pm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/config.local.pm b/include/config.local.pm new file mode 100644 index 0000000..821391c --- /dev/null +++ b/include/config.local.pm @@ -0,0 +1,19 @@ +#! /usr/bin/perl +use strict; +use warnings; +package nms::config; + +# DB +our $db_name = "nms"; +our $db_host = "localhost"; +our $db_username = "nms"; +our $db_password = "<REDACTED>"; +our $graphite_host = "graphite"; +our $graphite_port = "2003"; + +# Influx +our $influx_host = "http://localhost:8086"; +our $influx_username = "gondulWrite"; +our $influx_password = "<REDACTED>"; +our $influx_database = "gondul"; + |