File tree 2 files changed +12
-10
lines changed
2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,13 @@ name = "batch_span_processor"
98
98
harness = false
99
99
required-features = [" rt-tokio" , " testing" ]
100
100
101
- [[bench ]]
102
- name = " metric"
103
- harness = false
104
- required-features = [" metrics" ]
101
+ # TODO - this fails periodically on CI
102
+ # e.g. https://github.com/open-telemetry/opentelemetry-rust/actions/runs/13538892896/job/37835456869
103
+ # Work out why, and re-add.
104
+ # [[bench]]
105
+ # name = "metric"
106
+ # harness = false
107
+ # required-features = ["metrics"]
105
108
106
109
[[bench ]]
107
110
name = " log"
Original file line number Diff line number Diff line change @@ -338,16 +338,15 @@ fn benchmark_collect_histogram(b: &mut Bencher, n: usize) {
338
338
h. record ( 1 , & [ ] ) ;
339
339
}
340
340
341
- let mut _rm = ResourceMetrics {
341
+ let mut rm = ResourceMetrics {
342
342
resource : Resource :: builder_empty ( ) . build ( ) ,
343
343
scope_metrics : Vec :: new ( ) ,
344
344
} ;
345
345
346
- // TODO - this assertion fails intermittently. Work out why!
347
- // b.iter(|| {
348
- // let _ = r.collect(&mut rm);
349
- // assert_eq!(rm.scope_metrics[0].metrics.len(), n);
350
- // })
346
+ b. iter ( || {
347
+ let _ = r. collect ( & mut rm) ;
348
+ assert_eq ! ( rm. scope_metrics[ 0 ] . metrics. len( ) , n) ;
349
+ } )
351
350
}
352
351
353
352
criterion_group ! ( benches, counters, histograms) ;
You can’t perform that action at this time.
0 commit comments