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

instrumentation: add internal metrics server #121

Merged
merged 1 commit into from
Jul 20, 2022

Conversation

squat
Copy link
Member

@squat squat commented Jul 11, 2022

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]

@squat squat requested a review from simonpasquier July 11, 2022 14:29
Copy link
Contributor

@simonpasquier simonpasquier left a 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

@squat squat force-pushed the internal_metrics_server branch from 30b969a to a9f1745 Compare July 19, 2022 15:23
@squat
Copy link
Member Author

squat commented Jul 19, 2022

Just tested locally and everything starts and stops as expected. HTTP metrics are now exposed :)

Copy link
Contributor

@simonpasquier simonpasquier left a 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()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
l.Close()
srv.Close()

main.go Outdated
Comment on lines 144 to 146
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 {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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]>
@squat squat force-pushed the internal_metrics_server branch from a9f1745 to bdbb122 Compare July 20, 2022 12:59
@squat
Copy link
Member Author

squat commented Jul 20, 2022

Yes, absolutely good point. Just cleaned this up.

Copy link
Contributor

@simonpasquier simonpasquier left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@simonpasquier simonpasquier merged commit 1975124 into main Jul 20, 2022
@simonpasquier simonpasquier deleted the internal_metrics_server branch July 20, 2022 15:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants