We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The rest_client_reuqest_duration_seconds histogram produces some noisy cardinality due to the host label leaking parameters.
rest_client_reuqest_duration_seconds
host
For example: count by (host) (rest_client_duration_seconds_count) produces labels like this:
count by (host) (rest_client_duration_seconds_count)
{host="http://X.X.X.X:443/apis?timeout=32s"} {host="http://X.X.X.X:443/apis/v1/namespaces/%7Bnamespace%7D/events"}
This label should probably be reduced to just the target hostname:port. If an API type is desired a separate, limited, label should be added.
hostname:port
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
rest_client_reuqest_duration_seconds
histogram produces some noisy cardinality due to thehost
label leaking parameters.For example:
count by (host) (rest_client_duration_seconds_count)
produces labels like this:This label should probably be reduced to just the target
hostname:port
. If an API type is desired a separate, limited, label should be added.The text was updated successfully, but these errors were encountered: