aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.local.pm
blob: 821391c14f110ef395ab9028f711b079cb43e850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";