Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export class Server {
this.httpServer = httpServer;

if (this.monitoringApp) {
this.monitoringHttpServer = this.monitoringApp.listen(MONITORING_PORT, "localhost", () => {
this.monitoringHttpServer = this.monitoringApp.listen(MONITORING_PORT, "127.0.0.1", () => {
log.info(
`monitoring app listening on port: ${(<AddressInfo>this.monitoringHttpServer!.address()).port}`,
);
Expand Down
4 changes: 2 additions & 2 deletions components/ws-manager-bridge/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export const start = async (container: Container) => {
res.send(await mergedRegistry.metrics());
});
const metricsPort = 9500;
const metricsHttpServer = metricsApp.listen(metricsPort, "localhost", () => {
log.info(`prometheus metrics server running on: localhost:${metricsPort}`);
const metricsHttpServer = metricsApp.listen(metricsPort, "127.0.0.1", () => {
log.info(`prometheus metrics server running on: 127.0.0.1:${metricsPort}`);
});

const debugApp = container.get<DebugApp>(DebugApp);
Expand Down
Loading