-
Notifications
You must be signed in to change notification settings - Fork 0
/
events-mapping.json
45 lines (45 loc) · 1.49 KB
/
events-mapping.json
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
{
"properties": {
"application": { "type": "keyword", "ignore_above": 256 },
"action_name": { "type": "keyword", "ignore_above": 100 },
"client_id": { "type": "keyword", "ignore_above": 100 },
"message": { "type": "keyword", "ignore_above": 1024 },
"message_type": { "type": "keyword", "ignore_above": 100 },
"timestamp": {
"type": "date",
"format":"strict_date_time",
"ignore_malformed": true,
"doc_values": true
},
"event_attributes": {
"dynamic": true,
"properties": {
"position": {
"properties": {
"ordinal": { "type": "integer" },
"x": { "type": "integer" },
"y": { "type": "integer" },
"page_depth": { "type": "integer" },
"scroll_depth": { "type": "integer" },
"trail": { "type": "text",
"fields": { "keyword": { "type": "keyword", "ignore_above": 256 }
}
}
}
},
"object": {
"properties": {
"internal_id": { "type": "keyword" },
"object_id": { "type": "keyword", "ignore_above": 256 },
"object_id_field": { "type": "keyword", "ignore_above": 100 },
"name": { "type": "keyword", "ignore_above": 256 },
"description": { "type": "text",
"fields": { "keyword": { "type": "keyword", "ignore_above": 256 } }
},
"object_detail": { "type": "object" }
}
}
}
}
}
}