Skip to content

Commit d719b3d

Browse files
committed
fix: update port for OTEL collector
1 parent eea9651 commit d719b3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/operations/dev/otel/collector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class OtelCollector {
5959
});
6060

6161
return new Promise<number>((resolve, reject) => {
62-
this.server!.listen(this.port, '0.0.0.0', () => {
62+
this.server!.listen(this.port, '127.0.0.1', () => {
6363
this.onLog?.('info', `OTEL collector listening on port ${this.port}`);
6464
if (this.persistDir) {
6565
this.onLog?.('info', `OTEL trace persistence enabled → ${this.persistDir}`);

0 commit comments

Comments
 (0)