-
Notifications
You must be signed in to change notification settings - Fork 103
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
instrumentation: add internal metrics server #121
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when stopping the program, the logs look like there are errors
^C2022/07/18 17:18:02 Server stopped with accept tcp [::]:8080: use of closed network connection
2022/07/18 17:18:02 Internal server stopped with accept tcp [::]:8081: use of closed network connection
2022/07/18 17:18:02 Server stopped with received signal interrupt
30b969a
to
a9f1745
Compare
Just tested locally and everything starts and stops as expected. HTTP metrics are now exposed :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIIUC closing the net listener logs an error from the HTTP server. We need to close the server instead.
2022/07/20 14:23:24 Listening insecurely on [::]:8080
2022/07/20 14:23:24 Listening on [::]:8081 for metrics and pprof
^C2022/07/20 14:23:24 Server stopped with accept tcp [::]:8080: use of closed network connection
2022/07/20 14:23:24 Internal server stopped with accept tcp [::]:8081: use of closed network connection
2022/07/20 14:23:24 Caught signal; exiting gracefully...
main.go
Outdated
} | ||
return nil | ||
}, func(error) { | ||
l.Close() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
l.Close() | |
srv.Close() |
main.go
Outdated
g.Add(func() error { | ||
log.Printf("Listening on %v for metrics and pprof", l.Addr()) | ||
if err := http.Serve(l, h); err != nil && err != http.ErrServerClosed { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
g.Add(func() error { | |
log.Printf("Listening on %v for metrics and pprof", l.Addr()) | |
if err := http.Serve(l, h); err != nil && err != http.ErrServerClosed { | |
srv := &http.Server{Handler: h} | |
g.Add(func() error { | |
log.Printf("Listening on %v for metrics and pprof", l.Addr()) | |
if err := srv.Serve(l); err != nil && err != http.ErrServerClosed { |
main.go
Outdated
} | ||
return nil | ||
}, func(error) { | ||
l.Close() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
l.Close() | |
srv.Close() |
This commit adds an internal server to the prom-label-proxy that exposes HTTP metrics about all of the routes registered with the prom-label-proxy. The internal server also exposes pprof profiles. The internal server is only activated if the --internal-listen-address flag is provided. Signed-off-by: Lucas Servén Marín <[email protected]>
a9f1745
to
bdbb122
Compare
Yes, absolutely good point. Just cleaned this up. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
This commit adds an internal server to the prom-label-proxy that exposes
HTTP metrics about all of the routes registered with the
prom-label-proxy. The internal server also exposes pprof profiles. The
internal server is only activated if the --internal-listen-address flag
is provided.
Signed-off-by: Lucas Servén Marín [email protected]