-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathmetadata.yaml
More file actions
67 lines (63 loc) · 1.73 KB
/
metadata.yaml
File metadata and controls
67 lines (63 loc) · 1.73 KB
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
display_name: NGINX Receiver
type: nginx
description: |
This receiver can fetch stats from a NGINX instance using the `ngx_http_stub_status_module` module's `status`
endpoint.
status:
class: receiver
stability:
beta: [metrics]
distributions: [contrib]
codeowners:
active: [colelaven, ishleenk17]
emeritus: [djaglowski]
attributes:
state:
description: The state of a connection
type: string
enum:
- active
- reading
- writing
- waiting
metrics:
nginx.connections_accepted:
enabled: true
description: The total number of accepted client connections
stability: development
unit: connections
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: []
nginx.connections_current:
enabled: true
description: The current number of nginx connections by state
stability: development
unit: connections
sum:
value_type: int
monotonic: false
aggregation_temporality: cumulative
attributes: [state]
nginx.connections_handled:
enabled: true
description: The total number of handled connections. Generally, the parameter value is the same as nginx.connections_accepted unless some resource limits have been reached (for example, the worker_connections limit).
stability: development
unit: connections
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: []
nginx.requests:
enabled: true
description: Total number of requests made to the server since it started
stability: development
unit: requests
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: []