forked from graphdat/plugin-redis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
metrics.json
66 lines (66 loc) · 2.16 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
{
"REDIS_COMMANDS_PROCESSED": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "Total number of commands processed by the server",
"displayName": "Redis Commands Processed",
"displayNameShort": "Redis Commands",
"unit": "number"
},
"REDIS_CONNECTED_CLIENTS": {
"defaultAggregate": "MAX",
"defaultResolutionMS": 1000,
"description": "Number of client connections (excluding connections from slaves)",
"displayName": "Redis Connected Clients",
"displayNameShort": "Redis Connections",
"unit": "number"
},
"REDIS_CONNECTIONS_RECEIVED": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "Total number of connections accepted by the server",
"displayName": "Redis Connections Received",
"displayNameShort": "Redis Connections",
"unit": "number"
},
"REDIS_KEYS_EXPIRED": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "Total number of key expiration events",
"displayName": "Redis Keys Expired",
"displayNameShort": "Redis Expired",
"unit": "number"
},
"REDIS_KEY_EVICTIONS": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "Number of evicted keys due to maxmemory limit",
"displayName": "Redis Key Evictions",
"displayNameShort": "Redis Evictions",
"unit": "number"
},
"REDIS_KEY_HITS": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "Number of successful lookup of keys in the main dictionary",
"displayName": "Redis Key Hits",
"displayNameShort": "Redis Hits",
"unit": "number"
},
"REDIS_KEY_MISSES": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "Number of failed lookup of keys in the main dictionary",
"displayName": "Redis Key Misses",
"displayNameShort": "Redis Misses",
"unit": "number"
},
"REDIS_USED_MEMORY": {
"defaultAggregate": "MAX",
"defaultResolutionMS": 1000,
"description": "Percentage of server memory used for the Redis instance",
"displayName": "Redis Used Memory",
"displayNameShort": "Redis Memory",
"unit": "percent"
}
}