Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Metrics: Add direct listen #4409

Merged
merged 2 commits into from
Feb 18, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
loginfo
  • Loading branch information
Fangliding authored Feb 18, 2025
commit 1d8f43c69c386f6fbd198202e2a7a4ca62dec0dc
2 changes: 1 addition & 1 deletion app/metrics/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (p *MetricsHandler) Start() error {
return err
}
p.tcpListener = TCPlistener
errors.LogDebug(context.Background(), "Metrics server listening on ", p.listen)
errors.LogInfo(context.Background(), "Metrics server listening on ", p.listen)

go func() {
if err := http.Serve(TCPlistener, http.DefaultServeMux); err != nil {
Expand Down