forked from elastic/integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fields.yml
54 lines (54 loc) · 1.6 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
- name: nginx.stubstatus
type: group
fields:
- name: hostname
type: keyword
# Reason to add as a dimension field: This can be cluster url or single host. This is a good to have dimension.
dimension: true
description: |
Nginx hostname.
- name: active
type: long
metric_type: gauge
description: |
The current number of active client connections including Waiting connections.
- name: accepts
type: long
metric_type: counter
description: |
The total number of accepted client connections.
- name: handled
type: long
metric_type: counter
description: |
The total number of handled client connections.
- name: dropped
type: long
metric_type: counter
description: |
The total number of dropped client connections.
- name: requests
type: long
metric_type: counter
description: |
The total number of client requests.
- name: current
type: long
metric_type: gauge
description: |
The current number of client requests.
- name: reading
type: long
metric_type: gauge
description: |
The current number of connections where Nginx is reading the request header.
- name: writing
type: long
metric_type: gauge
description: |
The current number of connections where Nginx is writing the response back to the client.
- name: waiting
type: long
metric_type: gauge
description: |
The current number of idle client connections waiting for a request.