forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.go
54 lines (49 loc) · 1.21 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
package store
import (
"encoding/json"
"github.com/elastic/beats/libbeat/common"
s "github.com/elastic/beats/libbeat/common/schema"
c "github.com/elastic/beats/libbeat/common/schema/mapstriface"
)
var (
schema = s.Schema{
"gets": s.Object{
"success": c.Int("getsSuccess"),
"fail": c.Int("getsFail"),
},
"sets": s.Object{
"success": c.Int("setsSuccess"),
"fail": c.Int("setsFail"),
},
"delete": s.Object{
"success": c.Int("deleteSuccess"),
"fail": c.Int("deleteFail"),
},
"update": s.Object{
"success": c.Int("updateSuccess"),
"fail": c.Int("updateFail"),
},
"create": s.Object{
"success": c.Int("createSuccess"),
"fail": c.Int("createFail"),
},
"compareandswap": s.Object{
"success": c.Int("compareAndSwapSuccess"),
"fail": c.Int("compareAndSwapFail"),
},
"compareanddelete": s.Object{
"success": c.Int("compareAndDeleteSuccess"),
"fail": c.Int("compareAndDeleteFail"),
},
"expire": s.Object{
"count": c.Int("expireCount"),
},
"watchers": c.Int("watchers"),
}
)
func eventMapping(content []byte) common.MapStr {
var data map[string]interface{}
json.Unmarshal(content, &data)
event, _ := schema.Apply(data)
return event
}