forked from comnetgmbh/cmkbeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmkbeat.template.json
86 lines (86 loc) · 1.75 KB
/
cmkbeat.template.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
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
{
"mappings": {
"_default_": {
"_all": {
"enabled": false
},
"dynamic_templates": [
{
"str_to_kw": {
"mapping": {
"ignore_above": 1024,
"type": "keyword",
"norms": false
},
"match_mapping_type": "string"
}
},
{
"perfdata_as_num": {
"mapping": {
"type": "float"
},
"path_match": "[metrics][*][*]"
}
}
],
"numeric_detection": true,
"properties": {
"@timestamp": {
"type": "date"
},
"beat": {
"properties": {
"hostname": {
"ignore_above": 1024,
"type": "keyword"
},
"name": {
"ignore_above": 1024,
"type": "keyword"
}
}
},
"host_name": {
"norms": false,
"type": "keyword"
},
"display_name": {
"norms": false,
"type": "keyword"
},
"state": {
"type": "short"
},
"plugin_output": {
"norms": false,
"type": "text"
},
"long_plugin_output": {
"norms": false,
"type": "text"
},
"percent_state_change": {
"type": "float"
},
"perf_data": {
"norms": false,
"type": "text"
},
"tags": {
"ignore_above": 1024,
"type": "keyword"
}
}
}
},
"order": 0,
"settings": {
"index.refresh_interval": "5s",
"index.mapping.coerce": true,
"index.mapping.ignore_malformed": true,
"index.mapping.total_fields.limit": 5000,
"index.mapping.nested_fields.limit": 2500
},
"template": "cmkbeat-*"
}