EDDN/contrib/monitor/js/EXAMPLE-eddn-config.js
Athanasius e01b81b3b9
monitor: Move eddn-config.js to only an example, and make it such
We won't want the live config copied in/overwritten on each invocation
of 'python setup.py install'.
2022-08-18 15:20:16 +01:00

23 lines
490 B
JavaScript

/* vim: wrapmargin=0 textwidth=0 tabstop=4 softtabstop=4 expandtab shiftwidth=4
*/
var eddn_config = {
updateInterval: 60000,
eddn_host: 'eddn.edcd.io',
monitorEndPoint: 'https://eddn.edcd.io/dev/monitor/',
gatewayStats: '/dev/stats/',
relayStats: '/dev/relay/stats/',
relayBottlePort: 9110,
gateways: [
'eddn.edcd.io'
], //TODO: Must find a way to bind them to monitor
relays: [
'eddn.edcd.io'
] //TODO: Must find a way to bind them to monitor
};