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

Fix open connections metric #9656

Merged
merged 4 commits into from
Mar 20, 2023

Conversation

mpl
Copy link
Collaborator

@mpl mpl commented Jan 10, 2023

What does this PR do?

This PR removes the (broken) "Open connections" metric from the entryPoint, router, and service, and replaces them with a new (correct) metric at the server/global level.

As a notable side-effect, this is now the first metric that can be considered a TCP metric.

Motivation

The previous metric Open connections was incorrect as it was computed. It was done at the ServeHTTP level, and was therefore basically computing the number of inflight requests instead of the number of connections.

This PR therefore fixes the implementation so that it matches the intended meaning, and computes the metric at the TCP level, where/when the connections are opened and closed.

Consequently, it does not make any sense to keep labels related to the application/HTTP layer, such as the protocol (as it was before) and the method. There is still a protocol label, but its meaning will now be to differentiate the transport (TCP VS UDP).

More

  • Added/updated tests
  • Added/updated documentation

Additional Notes

Addresses #7575
Fixes #4226

Co-authored-by: Romain rtribotte@users.noreply.github.com

Copy link
Member

@rtribotte rtribotte left a comment

Choose a reason for hiding this comment

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

LGTM 👌

Copy link
Member

@juliens juliens left a comment

Choose a reason for hiding this comment

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

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants