forked from DiceDB/dice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathping.go
63 lines (52 loc) · 1.61 KB
/
ping.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
package observability
import (
"bytes"
"context"
"encoding/json"
"log/slog"
"net/http"
"time"
"github.com/dicedb/dice/config"
)
type PingPayload struct {
Date string `json:"date"`
HardwareConfig HardwareConfig `json:"hardware_config"`
DBConfig DBConfig `json:"db_config"`
Version string `json:"version"`
InstanceID string `json:"instance_id"`
Err error `json:"error"`
}
const (
token = "p.eyJ1IjogIjhjNWQxMjdlLTczZmYtNGRjZS04Mzk5LTQyMDU0MThhYjc2OSIsI" +
"CJpZCI6ICJhZjcxNGExNC0xZWQyLTQ3ZDktOTM0MS0xMzgwNWNiOWFhNDYiLCAiaG9zdCI6ICJ1cy1lYXN0LWF3cyJ9.o9LqZqTZ9YkhbcusZOltsm95RzVQUzJLQOHV2YA7L0E"
url = "https://api.us-east.aws.tinybird.co/v0/events?name=ping2"
)
type DBConfig struct {
}
func Ping() {
hwConfig, err := GetHardwareMeta()
if err != nil {
return
}
payload := &PingPayload{
HardwareConfig: hwConfig,
InstanceID: config.DiceConfig.InstanceID,
Version: config.DiceConfig.Version,
Err: err,
Date: time.Now().UTC().Format("2006-01-02 15:04:05"),
DBConfig: DBConfig{},
}
b, _ := json.Marshal(payload)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
req, _ := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(b))
req.Header.Set("Authorization", "Bearer "+token)
req.Header.Set("Content-Type", "application/json")
client := &http.Client{Timeout: time.Second * 5}
resp, err := client.Do(req)
if err != nil {
slog.Error("Error reporting observability metrics.", slog.Any("error", err))
return
}
_ = resp.Body.Close()
}