-
Notifications
You must be signed in to change notification settings - Fork 0
/
metric.go
74 lines (61 loc) · 1.44 KB
/
metric.go
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
package v1
import (
"bytes"
"encoding/json"
"time"
"gopkg.in/guregu/null.v3"
"github.com/ChipArtem/k6/metrics"
)
type NullMetricType struct {
Type metrics.MetricType
Valid bool
}
func (t NullMetricType) MarshalJSON() ([]byte, error) {
if !t.Valid {
return []byte("null"), nil
}
return t.Type.MarshalJSON()
}
func (t *NullMetricType) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte("null")) {
t.Valid = false
return nil
}
t.Valid = true
return json.Unmarshal(data, &t.Type)
}
type NullValueType struct {
Type metrics.ValueType
Valid bool
}
func (t NullValueType) MarshalJSON() ([]byte, error) {
if !t.Valid {
return []byte("null"), nil
}
return t.Type.MarshalJSON()
}
func (t *NullValueType) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte("null")) {
t.Valid = false
return nil
}
t.Valid = true
return json.Unmarshal(data, &t.Type)
}
type Metric struct {
Name string `json:"-" yaml:"name"`
Type NullMetricType `json:"type" yaml:"type"`
Contains NullValueType `json:"contains" yaml:"contains"`
Tainted null.Bool `json:"tainted" yaml:"tainted"`
Sample map[string]float64 `json:"sample" yaml:"sample"`
}
// NewMetric constructs a new Metric
func NewMetric(m *metrics.Metric, t time.Duration) Metric {
return Metric{
Name: m.Name,
Type: NullMetricType{m.Type, true},
Contains: NullValueType{m.Contains, true},
Tainted: m.Tainted,
Sample: m.Sink.Format(t),
}
}