-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
fields.yml
407 lines (348 loc) · 16 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
- name: stats
type: group
release: beta
description: Enterprise Search stats.
fields:
- name: connectors
type: group
description: Workplace Search connectors subsystem stats.
fields:
- name: job_store
type: group
description: Workplace Search connectors job store stats.
fields:
- name: waiting
type: long
description: Number of connectors jobs waiting to be processed.
- name: working
type: long
description: Number of connectors jobs currently being processed.
- name: job_types
type: group
description: Breakdown of connectors jobs by types.
fields:
- name: delete
type: long
description: Number of delete jobs in the jobs store.
- name: full
type: long
description: Number of full sync jobs in the jobs store.
- name: incremental
type: long
description: Number of incremental sync jobs in the jobs store.
- name: permissions
type: long
description: Number of permissions sync jobs in the jobs store.
- name: pool
type: group
description: Workplace Search worker pools stats.
fields:
- name: extract_worker_pool
type: group
description: Status information for the extractor workers pool.
fields:
- name: size
type: long
description: Worker pool size.
- name: busy
type: long
description: Number of busy workers.
- name: queue_depth
type: long
description: Number of items waiting to be processed.
- name: idle
type: long
description: Number of idle workers.
- name: total_completed
type: long
description: Number of jobs completed since the start.
- name: total_scheduled
type: long
description: Number of jobs scheduled since the start.
- name: subextract_worker_pool
type: group
description: Status information for the sub-extractor workers pool.
fields:
- name: size
type: long
description: Worker pool size.
- name: busy
type: long
description: Number of busy workers.
- name: queue_depth
type: long
description: Number of items waiting to be processed.
- name: idle
type: long
description: Number of idle workers.
- name: total_completed
type: long
description: Number of jobs completed since the start.
- name: total_scheduled
type: long
description: Number of jobs scheduled since the start.
- name: publish_worker_pool
type: group
description: Status information for the publish workers pool.
fields:
- name: size
type: long
description: Worker pool size.
- name: busy
type: long
description: Number of busy workers.
- name: queue_depth
type: long
description: Number of items waiting to be processed.
- name: idle
type: long
description: Number of idle workers.
- name: total_completed
type: long
description: Number of jobs completed since the start.
- name: total_scheduled
type: long
description: Number of jobs scheduled since the start.
- name: http
type: group
description: Incoming HTTP request metrics.
fields:
- name: connections
type: group
description: Incoming HTTP connection statistics.
fields:
- name: current
type: long
description: Current number of HTTP connections opened to the Enterprise Search instance.
- name: max
type: long
description: Maximum number of concurrent HTTP connections open to the Enterprise Search instance since the start.
- name: total
type: long
description: Total number of HTTP connections opened to the Enterprise Search instance since the start.
- name: network
type: group
description: Network traffic metrics.
fields:
- name: received.bytes
type: long
format: bytes
description: Total number of bytes received by the Enterprise Search instance since the start.
- name: sent.bytes
type: long
format: bytes
description: Total number of bytes sent by the Enterprise Search instance since the start.
- name: received.bytes_per_sec
type: long
format: bytes
description: Average number of bytes received by the Enterprise Search instance per second since the start.
- name: sent.bytes_per_sec
type: long
format: bytes
description: Average number of bytes sent by the Enterprise Search instance per second since the start.
- name: request_duration
type: group
description: Aggregate HTTP request duration statistics.
fields:
- name: max.ms
type: long
description: Longest HTTP connection duration since the start of the instance.
- name: mean.ms
type: long
description: Average HTTP connection duration since the start of the instance.
- name: std_dev.ms
type: long
description: Standard deviation for HTTP connection duration values since the start of the instance.
- name: responses
type: group
description: Aggregate HTTP response counts broken down by HTTP status type.
fields:
- name: 1xx
type: long
description: Total number of HTTP requests finished with a 1xx response code since the start of the instance.
- name: 2xx
type: long
description: Total number of HTTP requests finished with a 2xx response code since the start of the instance.
- name: 3xx
type: long
description: Total number of HTTP requests finished with a 3xx response code since the start of the instance.
- name: 4xx
type: long
description: Total number of HTTP requests finished with a 4xx response code since the start of the instance.
- name: 5xx
type: long
description: Total number of HTTP requests finished with a 5xx response code since the start of the instance.
- name: queues
type: group
description: Aggregate stats on the functioning of the background jobs processing pipeline within Enterprise Search.
fields:
- name: engine_destroyer.count
type: long
description: Total number of jobs processed via the engine_destroyer queue since the start of the instance.
- name: mailer.count
type: long
description: Total number of jobs processed via the mailer queue since the start of the instance.
- name: process_crawl.count
type: long
description: Total number of jobs processed via the process_crawl queue since the start of the instance.
- name: failed.count
type: long
description: Total number of jobs waiting in the failed queue.
- name: crawler
type: group
description: Aggregate stats on the functioning of the crawler subsystem within Enterprise Search.
fields:
- name: global
type: group
description: Global deployment-wide metrics for the crawler.
fields:
- name: crawl_requests
type: group
description: Crawl request summary for the deployment.
fields:
- name: pending
type: long
description: Total number of crawl requests waiting to be processed.
- name: active
type: long
description: Total number of crawl requests currently being processed (running crawls).
- name: successful
type: long
description: Total number of crawl requests that have succeeded.
- name: failed
type: long
description: Total number of failed crawl requests.
- name: node
type: group
description: Node-level statistics for the crawler.
fields:
- name: pages_visited
type: long
description: Total number of pages visited by the crawler since the instance start.
- name: urls_allowed
type: long
description: Total number of URLs allowed by the crawler during discovery since the instance start.
- name: urls_denied
type: group
description: Total number of URLs denied by the crawler during discovery since the instance start, broken down by deny reason.
fields:
- name: already_seen
type: long
description: Total number of URLs not followed because of URL de-duplication (each URL is visited only once).
- name: domain_filter_denied
type: long
description: Total number of URLs denied because of an unknown domain.
- name: incorrect_protocol
type: long
description: Total number of URLs with incorrect/invalid/unsupported protocols.
- name: link_too_deep
type: long
description: Total number of URLs not followed due to crawl depth limits.
- name: nofollow
type: long
description: Total number of URLs denied due to a nofollow meta tag or an HTML link attribute.
- name: unsupported_content_type
type: long
description: Total number of URLs denied due to an unsupported content type.
- name: status_codes
type: group
description: HTTP request result counts, by status code.
fields:
- name: "200"
type: long
description: Total number of HTTP 200 responses seen by the crawler since the instance start.
- name: "301"
type: long
description: Total number of HTTP 301 responses seen by the crawler since the instance start.
- name: "302"
type: long
description: Total number of HTTP 302 responses seen by the crawler since the instance start.
- name: "400"
type: long
description: Total number of HTTP 400 responses seen by the crawler since the instance start.
- name: "401"
type: long
description: Total number of HTTP 401 responses seen by the crawler since the instance start.
- name: "402"
type: long
description: Total number of HTTP 402 responses seen by the crawler since the instance start.
- name: "403"
type: long
description: Total number of HTTP 403 responses seen by the crawler since the instance start.
- name: "404"
type: long
description: Total number of HTTP 404 responses seen by the crawler since the instance start.
- name: "405"
type: long
description: Total number of HTTP 405 responses seen by the crawler since the instance start.
- name: "410"
type: long
description: Total number of HTTP 410 responses seen by the crawler since the instance start.
- name: "422"
type: long
description: Total number of HTTP 422 responses seen by the crawler since the instance start.
- name: "429"
type: long
description: Total number of HTTP 429 responses seen by the crawler since the instance start.
- name: "500"
type: long
description: Total number of HTTP 500 responses seen by the crawler since the instance start.
- name: "501"
type: long
description: Total number of HTTP 501 responses seen by the crawler since the instance start.
- name: "502"
type: long
description: Total number of HTTP 502 responses seen by the crawler since the instance start.
- name: "503"
type: long
description: Total number of HTTP 503 responses seen by the crawler since the instance start.
- name: "504"
type: long
description: Total number of HTTP 504 responses seen by the crawler since the instance start.
- name: queue_size
type: group
description: Total current URL queue size for the instance.
fields:
- name: primary
type: long
description: Total number of URLs waiting to be crawled by the instance.
- name: purge
type: long
description: Total number of URLs waiting to be checked by the purge crawl phase.
- name: active_threads
type: long
description: Total number of crawler worker threads currently active on the instance.
- name: workers
type: group
description: Crawler workers information for the instance.
fields:
- name: pool_size
type: long
description: Total size of the crawl workers pool (number of concurrent crawls possible) for the instance.
- name: active
type: long
description: Total number of currently active crawl workers (running crawls) for the instance.
- name: available
type: long
description: Total number of currently available (free) crawl workers for the instance.
- name: product_usage
type: group
description: Aggregate product usage statistics for the Enterprise Search deployment.
fields:
- name: app_search
type: group
description: App Search product usage statistics.
fields:
- name: total_engines
type: long
description: Current number of App Search engines within the deployment.
- name: workplace_search
type: group
description: Workplace Search product usage statistics.
fields:
- name: total_org_sources
type: long
description: Current number of Workplace Search org-wide content sources within the deployment.
- name: total_private_sources
type: long
description: Current number of Workplace Search private content sources within the deployment.