forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpublish.go
71 lines (59 loc) · 1.51 KB
/
publish.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
package metrics
import (
"bytes"
"encoding/json"
"fmt"
"log"
"net/http"
"strconv"
"time"
)
type payload struct {
Name string `json:"name"`
Value int `json:"value"`
Interval int `json:"interval"`
MType string `json:"mtype"`
Time int64 `json:"time"`
}
// Publish publishes a set of metrics.
func Publish(metrics map[string]string, apiKey string) error {
log.Println("Publishing metrics")
t := time.Now().Unix()
data := []payload{}
for k, vS := range metrics {
v, err := strconv.Atoi(vS)
if err != nil {
return fmt.Errorf("key %q has value on invalid format: %q", k, vS)
}
data = append(data, payload{
Name: k,
Value: v,
Interval: 60,
MType: "gauge",
Time: t,
})
}
buf := bytes.Buffer{}
enc := json.NewEncoder(&buf)
if err := enc.Encode(data); err != nil {
return err
}
log.Printf("Publishing metrics to https://<user>:<pass>@graphite-us-central1.grafana.net/metrics, JSON: %s",
buf.String())
u := fmt.Sprintf("https://6371:%[email protected]/metrics", apiKey)
//nolint:gosec
resp, err := http.Post(u, "application/json", &buf)
if err != nil {
return fmt.Errorf("metrics publishing failed: %w", err)
}
defer func() {
if err := resp.Body.Close(); err != nil {
log.Println("Error closing HTTP body", err)
}
}()
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
return fmt.Errorf("metrics publishing failed with status code %d", resp.StatusCode)
}
log.Printf("Metrics successfully published")
return nil
}