-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.go
231 lines (191 loc) · 5.05 KB
/
app.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"sort"
"strings"
"time"
"github.com/prometheus/common/model"
)
type ErrorType string
type ApiResponse struct {
Status string `json:"status"`
Data json.RawMessage `json:"data"`
ErrorType ErrorType `json:"errorType,omitempty"`
Error string `json:"error,omitempty"`
}
type QueryResult struct {
Type model.ValueType `json:"resultType"`
Result json.RawMessage `json:"result"`
// The decoded value.
// v model.Value
}
type LabelResult []*string
//Define a new structure that represents out API response (response status and body)
type HTTPResponse struct {
status string
//matrix model.Matrix
result []byte
}
func (r ApiResponse) Successful() bool {
return string(r.Status) == "success"
}
func main() {
h := http.HandlerFunc(proxyHandler)
log.Fatal(http.ListenAndServe(":6789", h))
}
func proxyHandler(w http.ResponseWriter, r *http.Request) {
log.Println("Received:", r.URL)
urlParts := strings.Split(r.RequestURI, `/`)
api := strings.Split(urlParts[3], `?`)[0]
var ch chan HTTPResponse = make(chan HTTPResponse)
servers := os.Args[1:]
for _, server := range servers {
go DoHTTPGet(fmt.Sprintf("%s%s", server, r.URL), ch)
}
remote := make([]ApiResponse, 0)
for range servers {
response := <-ch
if strings.HasPrefix(response.status, `200`) {
remote = append(remote, ParseResponse(response.result))
} else {
log.Println("Ignoring response with status", response.status)
}
}
merged := Merge(api, remote)
asJson, err := json.Marshal(merged)
if err != nil {
log.Println("error marshalling back", err)
}
fmt.Fprintf(w, "%s", asJson)
}
func DoHTTPGet(url string, ch chan<- HTTPResponse) {
timeout := time.Duration(5 * time.Second)
client := http.Client{
Timeout: timeout,
}
log.Println("Getting", url)
httpResponse, err := client.Get(url)
if err != nil {
log.Println("Error in response", err)
ch <- HTTPResponse{`failed`, []byte(err.Error())}
} else {
defer httpResponse.Body.Close()
httpBody, _ := ioutil.ReadAll(httpResponse.Body)
//Send an HTTPResponse back to the channel
ch <- HTTPResponse{httpResponse.Status, httpBody}
}
}
func ParseResponse(body []byte) ApiResponse {
var ar ApiResponse
err := json.Unmarshal(body, &ar)
if err != nil {
log.Println("Error unmarshalling JSON api response", err, body)
return ApiResponse{Status: "error"}
}
return ar
}
func Merge(api string, responses []ApiResponse) ApiResponse {
var qr QueryResult
var ar ApiResponse
if len(responses) == 0 {
log.Println("No responses received")
return ApiResponse{Status: "failure"}
} else {
ar = responses[0]
}
switch api {
case `label`:
return MergeArrays(responses)
case `series`:
return MergeSeries(responses)
case `query_range`:
err := json.Unmarshal(ar.Data, &qr)
if err != nil {
log.Println("Error unmarshalling JSON query result", err, string(ar.Data))
log.Println("Full response:", string(ar.Data))
return ApiResponse{}
}
switch qr.Type {
case model.ValMatrix:
return MergeMatrices(responses)
default:
log.Println("Did not recognize the response type of", qr.Type)
}
}
log.Println("Full response:", string(ar.Data))
return ApiResponse{}
}
func MergeSeries(responses []ApiResponse) ApiResponse {
merged := make([]map[string]string, 0)
for _, ar := range responses {
var result []map[string]string
err := json.Unmarshal(ar.Data, &result)
if err != nil {
log.Println("Unmarshal problem got", err)
}
for _, r := range result {
merged = append(merged, r)
}
}
log.Println("result", merged)
m, err := json.Marshal(merged)
if err != nil {
log.Println("error marshalling series back", err)
}
return ApiResponse{Status: "success", Data: m}
}
func MergeArrays(responses []ApiResponse) ApiResponse {
set := make(map[string]struct{})
for _, ar := range responses {
var labels LabelResult
err := json.Unmarshal(ar.Data, &labels)
if err != nil {
log.Println("Error unmarshalling labels", err)
}
for _, label := range labels {
set[*label] = struct{}{}
}
}
keys := make([]string, 0, len(set))
for k := range set {
keys = append(keys, k)
}
sort.Strings(keys)
m, err := json.Marshal(keys)
if err != nil {
log.Println("error marshalling labels back", err)
}
return ApiResponse{Status: "success", Data: m}
}
func MergeMatrices(responses []ApiResponse) ApiResponse {
samples := make([]*model.SampleStream, 0)
for _, r := range responses {
matrix := ExtractMatrix(r)
for _, s := range matrix {
samples = append(samples, s)
}
}
mj, _ := json.Marshal(samples)
qr := QueryResult{model.ValMatrix, mj}
qrj, _ := json.Marshal(qr)
r := ApiResponse{Status: "success", Data: qrj}
return r
}
func ExtractMatrix(ar ApiResponse) model.Matrix {
var qr QueryResult
err := json.Unmarshal(ar.Data, &qr)
if err != nil {
log.Println("Error unmarshalling JSON query result", err, string(ar.Data))
}
var m model.Matrix
err = json.Unmarshal(qr.Result, &m)
if err != nil {
log.Println("Error unmarshalling a matrix", err, string(qr.Result))
}
return m
}