File size: 1,928 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { Interface } from '../index.js'
import { formatUnit } from '../units.js'
import { writeFile } from 'fs/promises'

function filterProp(
  prop: Record<string, string | number | boolean | null>
): Record<string, string | number | boolean> {
  const filteredProp: Record<string, string | number | boolean> = {}
  for (const [key, value] of Object.entries(prop)) {
    if (value !== null) {
      filteredProp[key] = value
    }
  }
  return filteredProp
}

export default function createInterface(
  file: string = (() => {
    const file = process.env.JSON_OUTPUT_FILE
    if (!file) {
      throw new Error('env var JSON_OUTPUT_FILE is not set')
    }
    return file
  })()
): Interface {
  const metrics = new Map<
    string,
    {
      key: Record<string, string | number>
      value: number
      unit: string
      count: number
      relativeTo?: string
    }
  >()
  const iface: Interface = {
    measurement: async (scenario, props, name, value, unit, relativeTo) => {
      const keyObject = {
        scenario: scenario,
        ...filterProp(props),
        name: name,
      }
      const key = JSON.stringify(keyObject)
      const current = metrics.get(key)
      if (current) {
        current.value += value
        current.count++
      } else {
        metrics.set(key, {
          key: keyObject,
          value,
          unit: unit,
          count: 1,
          relativeTo,
        })
      }
    },
    finish: async () => {
      await writeFile(
        file,
        JSON.stringify(
          [...metrics.values()].map(
            ({ key, value, unit, count, relativeTo }) => {
              return {
                key,
                value: value / count,
                unit,
                text: formatUnit(value / count, unit),
                datapoints: count,
                relativeTo,
              }
            }
          )
        )
      )
    },
  }

  return iface
}