1 class PrometheusConfig
{
2 constructor(config
= { prometheus
: { enabled
: false } }) {
3 this.config
= config
.prometheus
;
7 return this.config
.enabled
;
11 return this.config
.port
;
15 return this.config
.host
;
19 return this.config
.path
;
23 export { PrometheusConfig
};