Skip to content

Commit 0c5097b

Browse files
removed unused metrics
1 parent 853d23d commit 0c5097b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/com/getindata/connectors/http/internal/retry/HttpClientWithRetry.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ public class HttpClientWithRetry {
3939

4040
public void registerMetrics(MetricGroup metrics){
4141
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());
4642
group.gauge("success_calls_with_retry_attempt",
4743
() -> retry.getMetrics().getNumberOfSuccessfulCallsWithRetryAttempt());
4844
group.gauge("success_calls_without_retry_attempt",

0 commit comments

Comments
 (0)