forked from trickstercache/trickster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.go
57 lines (49 loc) · 1.69 KB
/
model.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
package main
import (
"net/http"
"net/url"
"sync"
"github.com/prometheus/common/model"
)
// PrometheusVectorEnvelope represents a Vector response object from the Prometheus HTTP API
type PrometheusVectorEnvelope struct {
Status string `json:"status"`
Data PrometheusVectorData `json:"data"`
}
// PrometheusVectorData represents the Data body of a Vector response object from the Prometheus HTTP API
type PrometheusVectorData struct {
ResultType string `json:"resultType"`
Result model.Vector `json:"result"`
}
// PrometheusMatrixEnvelope represents a Matrix response object from the Prometheus HTTP API
type PrometheusMatrixEnvelope struct {
Status string `json:"status"`
Data PrometheusMatrixData `json:"data"`
}
// PrometheusMatrixData represents the Data body of a Matrix response object from the Prometheus HTTP API
type PrometheusMatrixData struct {
ResultType string `json:"resultType"`
Result model.Matrix `json:"result"`
}
// ClientRequestContext contains the objects needed to fulfull a client request
type ClientRequestContext struct {
Request *http.Request
Writer http.ResponseWriter
CacheKey string
CacheLookupResult string
Matrix PrometheusMatrixEnvelope
Origin PrometheusOriginConfig
RequestParams url.Values
RequestExtents MatrixExtents
OriginUpperExtents MatrixExtents
OriginLowerExtents MatrixExtents
StepParam string
StepMS int64
Time int64
WaitGroup sync.WaitGroup
}
// MatrixExtents describes the start and end epoch times (in ms) for a given range of data
type MatrixExtents struct {
Start int64
End int64
}