Skip to content

Commit 198dea4

Browse files
authoredMar 31, 2025··
[server, bridge] Bind metrics apps to "127.0.0.1" instead of "localhost" (#20719)
Tool: gitpod/catfood.gitpod.cloud
1 parent 570d5c0 commit 198dea4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎components/server/src/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ export class Server {
365365
this.httpServer = httpServer;
366366

367367
if (this.monitoringApp) {
368-
this.monitoringHttpServer = this.monitoringApp.listen(MONITORING_PORT, "localhost", () => {
368+
this.monitoringHttpServer = this.monitoringApp.listen(MONITORING_PORT, "127.0.0.1", () => {
369369
log.info(
370370
`monitoring app listening on port: ${(<AddressInfo>this.monitoringHttpServer!.address()).port}`,
371371
);

‎components/ws-manager-bridge/src/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ export const start = async (container: Container) => {
4848
res.send(await mergedRegistry.metrics());
4949
});
5050
const metricsPort = 9500;
51-
const metricsHttpServer = metricsApp.listen(metricsPort, "localhost", () => {
52-
log.info(`prometheus metrics server running on: localhost:${metricsPort}`);
51+
const metricsHttpServer = metricsApp.listen(metricsPort, "127.0.0.1", () => {
52+
log.info(`prometheus metrics server running on: 127.0.0.1:${metricsPort}`);
5353
});
5454

5555
const debugApp = container.get<DebugApp>(DebugApp);

0 commit comments

Comments
 (0)
Please sign in to comment.