@@ -126,7 +126,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
126126 " type" ,
127127 HTTP_OK ,
128128 false ,
129- true ,
129+ false ,
130130 " baz" ,
131131 []
132132 ), _) >> { MetricKey key , AggregateMetric value ->
@@ -197,7 +197,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
197197 features. supportsMetrics() >> true
198198 features. peerTags() >>> [[" country" ], [" country" , " georegion" ],]
199199 ConflatingMetricsAggregator aggregator = new ConflatingMetricsAggregator (empty,
200- features, sink, writer, 10 , queueSize, reportingInterval, SECONDS )
200+ features, HealthMetrics . NO_OP , sink, writer, 10 , queueSize, reportingInterval, SECONDS )
201201 aggregator. start()
202202
203203 when :
@@ -256,7 +256,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
256256 features. supportsMetrics() >> true
257257 features. peerTags() >> [" peer.hostname" , " _dd.base_service" ]
258258 ConflatingMetricsAggregator aggregator = new ConflatingMetricsAggregator (empty,
259- features, sink, writer, 10 , queueSize, reportingInterval, SECONDS )
259+ features, HealthMetrics . NO_OP , sink, writer, 10 , queueSize, reportingInterval, SECONDS )
260260 aggregator. start()
261261
262262 when :
@@ -327,7 +327,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
327327 " type" ,
328328 HTTP_OK ,
329329 false ,
330- topLevel ,
330+ false ,
331331 " baz" ,
332332 []
333333 ), { AggregateMetric value ->
@@ -444,7 +444,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
444444 " type" ,
445445 HTTP_OK ,
446446 false ,
447- true ,
447+ false ,
448448 " baz" ,
449449 []
450450 ), _) >> { MetricKey key , AggregateMetric value ->
@@ -458,7 +458,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
458458 " type" ,
459459 HTTP_OK ,
460460 false ,
461- true ,
461+ false ,
462462 " baz" ,
463463 []
464464 ), _)
@@ -503,7 +503,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
503503 " type" ,
504504 HTTP_OK ,
505505 false ,
506- true ,
506+ false ,
507507 " baz" ,
508508 []
509509 ), { AggregateMetric value ->
@@ -534,7 +534,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
534534 " type" ,
535535 HTTP_OK ,
536536 false ,
537- true ,
537+ false ,
538538 " baz" ,
539539 []
540540 ), { AggregateMetric value ->
@@ -548,7 +548,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
548548 " type" ,
549549 HTTP_OK ,
550550 false ,
551- true ,
551+ false ,
552552 " baz" ,
553553 []
554554 ), _)
@@ -593,7 +593,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
593593 " type" ,
594594 HTTP_OK ,
595595 false ,
596- true ,
596+ false ,
597597 " quux" ,
598598 []
599599 ), { AggregateMetric value ->
@@ -631,7 +631,7 @@ class ConflatingMetricAggregatorTest extends DDSpecification {
631631 CountDownLatch latch = new CountDownLatch (1 )
632632 for (int i = 0 ; i < 5 ; ++ i) {
633633 aggregator. publish([
634- new SimpleSpan (" service" + i, " operation" , " resource" , " type" , false , true , false , 0 , duration, HTTP_OK )
634+ new SimpleSpan (" service" + i, " operation" , " resource" , " type" , false , true , false , 0 , duration, HTTP_OK , true )
635635 .setTag(SPAN_KIND , " garply" )
636636 ])
637637 }
0 commit comments