-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathfields.yml
147 lines (123 loc) · 4.48 KB
/
fields.yml
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
- name: health
type: group
release: beta
description: Enterprise Search health
fields:
- name: name
type: keyword
description: Host name for the Enterprise Search node
- name: version
type: group
description: Enterprise Search version information
fields:
- name: number
type: keyword
description: Enterprise Search version number using the semantic versioning format
- name: build_hash
type: keyword
description: A unique build hash for the Enterprise Search package
- name: process
type: group
description: Enterprise Search process information
fields:
- name: pid
type: long
description: Process ID for the Enterprise Search instance
- name: uptime.sec
type: long
description: Process uptime for the Enterprise Search instance
- name: filebeat
type: group
description: Health information for the embedded Filebeat instance
fields:
- name: pid
type: long
description: Process ID for the embedded Filebeat instance
- name: restart_count
type: long
description: Number of times embedded Filebeat instance had to be restarted due to some issues
- name: time_since_last_restart.sec
type: long
description: Time since the last embedded Filebeat instance restart (-1 if never restarted)
- name: jvm
type: group
description: JVM health
fields:
- name: version
type: keyword
description: JVM version used to run Enterprise Search
- name: gc
type: group
description: Java garbage collection metrics
fields:
- name: collection_count
type: long
description: Total number of Java garbage collector invocations since the start of the process
- name: collection_time.ms
type: long
description: Total time spent running Java garbage collector since the start of the process
- name: memory_usage
type: group
description: Memory usage
fields:
- name: heap_init.bytes
type: long
format: bytes
description: Heap init used by the JVM in bytes.
- name: heap_used.bytes
type: long
format: bytes
description: Heap used by the JVM in bytes.
- name: heap_committed.bytes
type: long
format: bytes
description: Committed heap to the JVM in bytes.
- name: heap_max.bytes
type: long
format: bytes
description: Max heap used by the JVM in bytes
- name: non_heap_init.bytes
type: long
format: bytes
description: Non-Heap initial memory used by the JVM in bytes.
- name: non_heap_committed.bytes
type: long
format: bytes
description: Non-Heap committed memory used by the JVM in bytes.
- name: object_pending_finalization_count
type: long
description: >
Displays the approximate number of objects for which finalization is pending.
- name: threads
type: group
description: Threads information
fields:
- name: current
type: long
description: Current number of live threads.
- name: daemon
type: long
description: Current number of live daemon threads.
- name: max
type: long
description: Peak live thread count since the JVM started or the peak was reset.
- name: total_started
type: long
description: Total number of threads created and/or started since the JVM started.
- name: crawler
type: group
description: Crawler health
fields:
- name: workers
type: group
description: Crawler workers
fields:
- name: pool_size
type: long
description: Workers pool size.
- name: active
type: long
description: Number of active workers.
- name: available
type: long
description: Number of available workers.