forked from premendrasingh/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.go
77 lines (67 loc) · 1.73 KB
/
data.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
package bucket
import (
"encoding/json"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)
type BucketQuota struct {
RAM int64 `json:"ram"`
RawRAM int64 `json:"rawRAM"`
}
type BucketBasicStats struct {
QuotaPercentUsed float64 `json:"quotaPercentUsed"`
OpsPerSec int64 `json:"opsPerSec"`
DiskFetches int64 `json:"diskFetches"`
ItemCount int64 `json:"itemCount"`
DiskUsed int64 `json:"diskUsed"`
DataUsed int64 `json:"dataUsed"`
MemUsed int64 `json:"memUsed"`
}
type Buckets []struct {
Name string `json:"name"`
BucketType string `json:"bucketType"`
Quota BucketQuota `json:"quota"`
BasicStats BucketBasicStats `json:"basicStats"`
}
func eventsMapping(content []byte) []common.MapStr {
var d Buckets
err := json.Unmarshal(content, &d)
if err != nil {
logp.Err("Error: ", err)
}
events := []common.MapStr{}
for _, Bucket := range d {
event := common.MapStr{
"name": Bucket.Name,
"type": Bucket.BucketType,
"data": common.MapStr{
"used": common.MapStr{
"bytes": Bucket.BasicStats.DataUsed,
},
},
"disk": common.MapStr{
"fetches": Bucket.BasicStats.DiskFetches,
"used": common.MapStr{
"bytes": Bucket.BasicStats.DiskUsed,
},
},
"memory": common.MapStr{
"used": common.MapStr{
"bytes": Bucket.BasicStats.MemUsed,
},
},
"quota": common.MapStr{
"ram": common.MapStr{
"bytes": Bucket.Quota.RAM,
},
"use": common.MapStr{
"pct": Bucket.BasicStats.QuotaPercentUsed,
},
},
"ops_per_sec": Bucket.BasicStats.OpsPerSec,
"item_count": Bucket.BasicStats.ItemCount,
}
events = append(events, event)
}
return events
}