File tree 1 file changed +3
-3
lines changed
google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/it
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public class BuiltinMetricsIT {
51
51
"retry_count" ,
52
52
"attempt_latencies" ,
53
53
"connectivity_error_count" ,
54
- "application_latencies "
54
+ "application_blocking_latencies "
55
55
};
56
56
57
57
@ BeforeClass
@@ -125,9 +125,9 @@ public void testBuiltinMetrics() throws Exception {
125
125
// Verify that metrics are published for ReadRows request
126
126
metricFilter =
127
127
String .format (
128
- "metric.type=\" bigtable.googleapis.com/client/operation_latencies \" "
128
+ "metric.type=\" bigtable.googleapis.com/client/%s \" "
129
129
+ "AND resource.labels.instance=\" %s\" AND metric.labels.method=\" Bigtable.ReadRows\" " ,
130
- testEnvRule .env ().getInstanceId ());
130
+ view , testEnvRule .env ().getInstanceId ());
131
131
requestBuilder .setFilter (metricFilter );
132
132
response = metricClient .listTimeSeriesCallable ().call (requestBuilder .build ());
133
133
assertThat (response .getTimeSeriesCount ()).isGreaterThan (0 );
You can’t perform that action at this time.
0 commit comments