forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.go
99 lines (85 loc) · 2.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package osd_tree
import (
"encoding/json"
"strconv"
"strings"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)
type Node struct {
ID int64 `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
TypeID int64 `json:"type_id"`
Children []int64 `json:"children"`
CrushWeight float64 `json:"crush_weight"`
Depth int64 `json:"depth"`
Exist int64 `json:"exists"`
PrimaryAffinity float64 `json:"primary_affinity"`
Reweight float64 `json:"reweight"`
Status string `json:"status"`
DeviceClass string `json:"device_class"`
}
type Output struct {
Nodes []Node `json:"nodes"`
}
type OsdTreeRequest struct {
Status string `json:"status"`
Output Output `json:"output"`
}
func eventsMapping(content []byte) ([]common.MapStr, error) {
var d OsdTreeRequest
err := json.Unmarshal(content, &d)
if err != nil {
logp.Err("Error: ", err)
return nil, err
}
nodeList := d.Output.Nodes
//generate fatherNode and children map
fatherMap := make(map[string]string)
childrenMap := make(map[string]string)
for _, node := range nodeList {
if node.ID >= 0 {
//it's osd node
continue
}
childrenList := []string{}
for _, child := range node.Children {
childIDStr := strconv.FormatInt(child, 10)
childrenList = append(childrenList, childIDStr)
fatherMap[childIDStr] = node.Name
}
//generate bucket node's children list
childrenMap[node.Name] = strings.Join(childrenList, ",")
}
//osd node list
events := []common.MapStr{}
for _, node := range nodeList {
nodeInfo := common.MapStr{}
if node.ID < 0 {
//bucket node
nodeInfo["children"] = childrenMap[node.Name]
} else {
//osd node
nodeInfo["crush_weight"] = node.CrushWeight
nodeInfo["depth"] = node.Depth
nodeInfo["primary_affinity"] = node.PrimaryAffinity
nodeInfo["reweight"] = node.Reweight
nodeInfo["status"] = node.Status
nodeInfo["device_class"] = node.DeviceClass
if node.Exist > 0 {
nodeInfo["exists"] = true
} else {
nodeInfo["exists"] = false
}
}
nodeInfo["id"] = node.ID
nodeInfo["name"] = node.Name
nodeInfo["type"] = node.Type
nodeInfo["type_id"] = node.TypeID
idStr := strconv.FormatInt(node.ID, 10)
nodeInfo["father"] = fatherMap[idStr]
events = append(events, nodeInfo)
}
return events, nil
}