This repository was archived by the owner on Jun 12, 2020. It is now read-only.
File tree 1 file changed +23
-13
lines changed
1 file changed +23
-13
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ type EmailReport struct {
7
7
8
8
type Meta struct {
9
9
Id uint
10
- Uuid string
10
+ Uuid string
11
11
TimeZone string
12
12
Begin string
13
13
End string
@@ -55,16 +55,26 @@ type Queries struct {
55
55
}
56
56
57
57
type Query struct {
58
- Distillate string
59
- Checksum string
60
- Fingerprint string
61
- FirstSeen string
62
- LastSeen string
63
- ClassId string
64
- MetricSum float64
65
- MetricPct95 float64
66
- MetricAvg float64
67
- MetricMin float64
68
- MetricMax float64
69
- MetricCount int64
58
+ Distillate string
59
+ Checksum string
60
+ Fingerprint string
61
+ FirstSeen string
62
+ LastSeen string
63
+ ClassId int
64
+ Rank string // +x, -x, 0, new
65
+ MetricSum float64
66
+ MetricSumChange float64
67
+ MetricPct95 float64
68
+ MetricPct95Change float64
69
+ MetricAvg float64
70
+ MetricAvgChange float64
71
+ MetricMin float64
72
+ MetricMinChange float64
73
+ MetricMax float64
74
+ MetricMaxChange float64
75
+ MetricCount int64
76
+ MetricCountChange float64
77
+ Load float64 // Load of the query
78
+ LoadPct float64 // Load of the query vs total load in given period
79
+ LoadChange float64 // Change in load vs previous period
70
80
}
You can’t perform that action at this time.
0 commit comments