-
Notifications
You must be signed in to change notification settings - Fork 7
/
metrics.json
90 lines (90 loc) · 2.88 KB
/
metrics.json
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
{
"NGINX_ACTIVE_CONNECTIONS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Active connections to nginx",
"displayName": "Nginx Active Connections ",
"displayNameShort": "nginx-conns",
"unit": "number"
},
"NGINX_HANDLED": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Connections handled by nginx",
"displayName": "Nginx Connections Handled",
"displayNameShort": "nginx-handled",
"unit": "number"
},
"NGINX_NOT_HANDLED": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Connections accepted, but not handled",
"displayName": "Nginx Connections Not Handled",
"displayNameShort": "nginx-not-handled",
"unit": "number"
},
"NGINX_READING": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Connections with Nginx reading request headers",
"displayName": "Nginx Reads",
"displayNameShort": "nginx-reads",
"unit": "number"
},
"NGINX_REQUESTS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Requests to nginx",
"displayName": "Nginx Requests",
"displayNameShort": "nginx-reqs",
"unit": "number"
},
"NGINX_REQUESTS_PER_CONNECTION": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Requests per handled connections for nginx",
"displayName": "Nginx Requests per Connection",
"displayNameShort": "nginx-per-conn-reqs",
"unit": "number"
},
"NGINX_RESPONSES": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Number of responses sent on a specific server zone.",
"displayName": "Nginx Responses",
"displayNameShort": "Nginx Responses",
"unit": "number"
},
"NGINX_TRAFFIC_RECEIVED": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Total traffic received by a specific server zone.",
"displayName": "Nginx Traffic Received",
"displayNameShort": "Nginx Traffic Rcvd",
"unit": "bytecount"
},
"NGINX_TRAFFIC_SENT": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Total traffic sent from a specific server zone.",
"displayName": "Nginx Traffic Sent",
"displayNameShort": "Nginx Traffic Sent",
"unit": "bytecount"
},
"NGINX_WAITING": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Keep-alive connections with Nginx in a wait state",
"displayName": "Nginx Waiting",
"displayNameShort": "nginx-waiting",
"unit": "number"
},
"NGINX_WRITING": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "Connections with Nginx reading request body, processing request or writing response to client.",
"displayName": "Nginx Writes",
"displayNameShort": "nginx-writes",
"unit": "number"
}
}