@artilleryio/int-core 2.1.0-ba9baf5 → 2.1.0-be1e088

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/ssms.js +1 -0
  2. package/package.json +3 -2
package/lib/ssms.js CHANGED
@@ -626,6 +626,7 @@ function summarizeHistogram(h) {
626
626
  min: round(h.min, 1),
627
627
  max: round(h.max, 1),
628
628
  count: h.count,
629
+ mean: round(h.sum/h.count, 1),
629
630
  p50: round(h.getValueAtQuantile(0.5), 1),
630
631
  median: round(h.getValueAtQuantile(0.5), 1), // Here for compatibility
631
632
  p75: round(h.getValueAtQuantile(0.75), 1),
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@artilleryio/int-core",
3
- "version": "2.1.0-ba9baf5",
3
+ "version": "2.1.0-be1e088",
4
4
  "main": "./index.js",
5
+ "license": "MPL-2.0",
5
6
  "dependencies": {
6
- "@artilleryio/int-commons": "2.0.1-ba9baf5",
7
+ "@artilleryio/int-commons": "2.0.1-be1e088",
7
8
  "@artilleryio/sketches-js": "^2.1.1",
8
9
  "agentkeepalive": "^4.1.0",
9
10
  "arrivals": "^2.1.2",