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
private void captureHttpStatusCount(HttpEntityEnclosingRequestBase httpRequestMethod, HttpResponse response) { String urlTag = "url=" + httpRequestMethod.getURI().getPath(); String statusCode = statusCode(response); String httpCodeTag = statusCode.equals("null") ? "status_code=" : "status_code=" + statusCode; getInstrumentation().captureCount(SINK_HTTP_RESPONSE_CODE_TOTAL, 1, httpCodeTag, urlTag); }
URL can be unbounded which can results into large number of series.
URL tag should not be sent.
Steps to reproduce the behavior.
Kubernetes
The text was updated successfully, but these errors were encountered:
8fe1934 fixed .
Sorry, something went wrong.
lavkesh
No branches or pull requests
🐛 Bug Report
URL can be unbounded which can results into large number of series.
Expected Behavior
URL tag should not be sent.
Steps to Reproduce
Steps to reproduce the behavior.
Environment
Kubernetes
The text was updated successfully, but these errors were encountered: