-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelasticsearch.conf
124 lines (123 loc) · 2.57 KB
/
elasticsearch.conf
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
LoadPlugin match_regex
LoadPlugin target_set
PreCacheChain "RenameES"
<Chain "RenameES">
<Rule "rename_es">
<Match regex>
Plugin "^curl_json$"
PluginInstance "elasticsearch"
</Match>
<Target "set">
Plugin "elasticsearch"
PluginInstance "localhost"
</Target>
</Rule>
</Chain>
LoadPlugin "curl_json"
<Plugin curl_json>
<URL "{{ELASTICSEARCH_STATS_URL}}">
Instance "elasticsearch"
<Key "nodes/*/indices/docs/count">
Type "gauge"
</Key>
<Key "nodes/*/indices/docs/deleted">
Type "gauge"
</Key>
<Key "nodes/*/indices/store/size_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/indices/indexing/index_total">
Type "counter"
</Key>
<Key "nodes/*/indices/indexing/index_time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/indexing/delete_total">
Type "counter"
</Key>
<Key "nodes/*/indices/indexing/delete_time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/get/total">
Type "counter"
</Key>
<Key "nodes/*/indices/get/time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/get/exists_total">
Type "counter"
</Key>
<Key "nodes/*/indices/get/exists_time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/get/missing_total">
Type "counter"
</Key>
<Key "nodes/*/indices/get/missing_time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/search/query_total">
Type "counter"
</Key>
<Key "nodes/*/indices/search/query_time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/search/fetch_total">
Type "counter"
</Key>
<Key "nodes/*/indices/search/fetch_time_in_millis">
Type "counter"
</Key>
<Key "nodes/*/indices/filter_cache/memory_size_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/indices/filter_cache/evictions">
Type "counter"
</Key>
<Key "nodes/*/indices/fielddata/memory_size_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/indices/fielddata/evictions">
Type "counter"
</Key>
<Key "nodes/*/process/open_file_descriptors">
Type "gauge"
</Key>
<Key "nodes/*/jvm/mem/heap_used_percent">
Type "gauge"
</Key>
<Key "nodes/*/jvm/mem/heap_used_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/jvm/mem/heap_committed_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/jvm/mem/non_heap_used_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/jvm/mem/non_heap_committed_in_bytes">
Type "gauge"
</Key>
<Key "nodes/*/jvm/threads/count">
Type "gauge"
</Key>
<Key "nodes/*/jvm/threads/peak_count">
Type "gauge"
</Key>
<Key "nodes/*/jvm/gc/collection_count">
Type "counter"
</Key>
<Key "nodes/*/transport/rx_size_in_bytes">
Type "counter"
</Key>
<Key "nodes/*/transport/tx_size_in_bytes">
Type "counter"
</Key>
<Key "nodes/*/transport/server_open">
Type "gauge"
</Key>
<Key "nodes/*/http/current_open">
Type "gauge"
</Key>
</URL>
</Plugin>