29 lines
1.0 KiB
Bash
29 lines
1.0 KiB
Bash
# Template .env for API grabber
|
|
|
|
# PostgreSQL connection [DEPRECATED]
|
|
DB_HOST = "ip.addr.postgresql.server"
|
|
DB_USER = "db_user"
|
|
DB_PASSWORD = "db_user_password"
|
|
DB_DBNAME = "db_name"1
|
|
|
|
# Prometheus-Exporter info
|
|
EXPORTER_URL = "http(s)://ip.ip.ip.ip:port"
|
|
|
|
# VINTEO Jitter puller (needed to init Jitter native grab)
|
|
VINTEO_API_KEY = "6fe8b0db-62b4-4065-9c1e-441ec4228341.9acec20bd17d7178f332896f8c006452877a22b8627d089105ed39c5baef9711"
|
|
|
|
# Status Model API support
|
|
# > if exists, ignore `EXPORTER_URL` var
|
|
STATUS_SYSTEM_URL = "http://192.168.2.39:9999/api/input"
|
|
|
|
# eNODE.Monitoring configuration
|
|
ENODE_MONITORING_IP = "ip.ip.ip.ip"
|
|
ENODE_MONITORING_LOGIN = "admin_user_enode_monitoring" # admin user is required
|
|
ENODE_MONITORING_PASSWORD = "admin_password_enode_monitoring" # # admin password is required
|
|
|
|
# IM configuration for max level of logging info
|
|
# for example DEBUG, INFO, WARN, ERROR, TRACE
|
|
IM_LOG_INFO = "INFO"
|
|
# IM configuration for setting up API connetion
|
|
# timeout (in secs). Default value - 10
|
|
IM_CONNECTION_TIMEOUT = "10" |