From 8882ec1c8b43b4f0a8a842ed431a7a1ca4b3eabb Mon Sep 17 00:00:00 2001 From: hardikl Date: Tue, 2 Jul 2024 14:33:22 +0530 Subject: [PATCH] feat: remove service_time_latency counter from tests --- integration/test/dashboard_json_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/test/dashboard_json_test.go b/integration/test/dashboard_json_test.go index 34c8f704e..58d622241 100644 --- a/integration/test/dashboard_json_test.go +++ b/integration/test/dashboard_json_test.go @@ -147,7 +147,7 @@ func TestJsonExpression(t *testing.T) { now := time.Now() // QoS counters have the longest schedule so check for them before checking for any of the other counters - precheckCounters := []string{"qos_read_data", "qos_detail_service_time_latency"} + precheckCounters := []string{"qos_read_data"} for _, counter := range precheckCounters { if counterIsMissing(rest, counter, 7*time.Minute) { t.Fatalf("rest qos counters not found dur=%s", time.Since(now).Round(time.Millisecond).String())