We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 853d23d commit 0c5097bCopy full SHA for 0c5097b
src/main/java/com/getindata/connectors/http/internal/retry/HttpClientWithRetry.java
@@ -39,10 +39,6 @@ public class HttpClientWithRetry {
39
40
public void registerMetrics(MetricGroup metrics){
41
var group = metrics.addGroup("http_lookup_connector");
42
- group.gauge("failed_calls_with_retry_attempt_count",
43
- () -> retry.getMetrics().getNumberOfFailedCallsWithRetryAttempt());
44
- group.gauge("failed_calls_without_retry_attempt_count",
45
- () -> retry.getMetrics().getNumberOfFailedCallsWithoutRetryAttempt());
46
group.gauge("success_calls_with_retry_attempt",
47
() -> retry.getMetrics().getNumberOfSuccessfulCallsWithRetryAttempt());
48
group.gauge("success_calls_without_retry_attempt",
0 commit comments