Rename port setting

This commit is contained in:
Lars Strojny 2022-11-08 14:26:08 +01:00
parent fbb67783e9
commit 900f528b95
2 changed files with 6 additions and 6 deletions

View file

@ -17,7 +17,7 @@
"required": false,
"default": false
},
"probe_port": {
"port": {
"title": "Probe server port",
"description": "TCP port for the prometheus probe server to listen to",
"type": "integer",

View file

@ -22,16 +22,16 @@ export class PrometheusExporterPlatform implements IndependentPlatformPlugin {
}
})
this.log.debug('Starting probe HTTP server on port %d', this.config.probe_port)
this.log.debug('Starting probe HTTP server on port %d', this.config.port)
this.httpServer = new PrometheusServer(this.config.probe_port, this.log, this.config.debug)
this.httpServer = new PrometheusServer(this.config.port, this.log, this.config.debug)
serve(this.httpServer)
.then((httpServerController) => {
this.log.debug('HTTP server started on port %d', this.config.probe_port)
this.log.debug('HTTP server started on port %d', this.config.port)
this.httpServerController = httpServerController
})
.catch((e) => {
this.log.error('Failed to start probe HTTP server on port %d: %o', this.config.probe_port, e)
this.log.error('Failed to start probe HTTP server on port %d: %o', this.config.port, e)
})
this.api.on('didFinishLaunching', () => {
@ -46,7 +46,7 @@ export class PrometheusExporterPlatform implements IndependentPlatformPlugin {
}
this.config.debug = this.config.debug ?? false
this.config.probe_port = this.config.probe_port ?? 36123
this.config.port = this.config.port ?? 36123
this.config.refresh_interval = this.config.refresh_interval || 60
this.config.request_timeout = this.config.request_timeout || 10
this.config.discovery_timeout = this.config.discovery_timeout || 20