Skip to content

Commit

Permalink
give metrics different names
Browse files Browse the repository at this point in the history
  • Loading branch information
W-A-James committed Nov 7, 2023
1 parent 24cdfde commit ff282dc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/bson-bench/src/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,27 +118,27 @@ export class Task {
},
metrics: [
{
name: 'megabytes_per_second',
name: 'mean_megabytes_per_second',
type: 'MEAN',
value: meanThroughputMBps
},
{
name: 'megabytes_per_second',
name: 'median_megabytes_per_second',
type: 'MEDIAN',
value: medianThroughputMBps
},
{
name: 'megabytes_per_second',
name: 'min_megabytes_per_second',
type: 'MIN',
value: minThroughputMBps
},
{
name: 'megabytes_per_second',
name: 'max_megabytes_per_second',
type: 'MAX',
value: maxThroughputMBps
},
{
name: 'megabytes_per_second',
name: 'stddev_megabytes_per_second',
type: 'STANDARD_DEVIATION',
value: throughputMBpsStddev
}
Expand Down

0 comments on commit ff282dc

Please sign in to comment.