-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmetrics.json
114 lines (114 loc) · 3.57 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"MYSQL_ABORTED_CONNECTIONS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of failed connection attempts including those aborted by the client",
"displayName": "MySQL Aborted Connections",
"displayNameShort": "mysql-abrt-conn",
"unit": "number"
},
"MYSQL_BYTES_IN": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "bytes in",
"displayName": "MySQL Bytes In",
"displayNameShort": "mysql-bytes-in",
"unit": "bytecount"
},
"MYSQL_BYTES_OUT": {
"defaultAggregate": "SUM",
"defaultResolutionMS": 1000,
"description": "bytes out",
"displayName": "MySQL Bytes Out",
"displayNameShort": "mysql-bytes-out",
"unit": "bytecount"
},
"MYSQL_COMMITS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number commits",
"displayName": "MySQL Commits",
"displayNameShort": "mysql-commits",
"unit": "number"
},
"MYSQL_CONNECTIONS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of connection attempts",
"displayName": "MySQL Connections",
"displayNameShort": "mysql-conn",
"unit": "number"
},
"MYSQL_QCACHE_HITS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The percentage of queries from cache",
"displayName": "MySQL Query Cache Hits",
"displayNameShort": "mysql-qry-cache",
"unit": "percent"
},
"MYSQL_QCACHE_MEMORY": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The percentage of used query memory",
"displayName": "MySQL Query Memory",
"displayNameShort": "mysql-qry-mem",
"unit": "percent"
},
"MYSQL_QCACHE_PRUNES": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of queries delete from the query cache",
"displayName": "MySQL Query Cache Prunes",
"displayNameShort": "mysql-qry-prunes",
"unit": "number"
},
"MYSQL_ROLLBACKS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number rollbacks",
"displayName": "MySQL Rollback",
"displayNameShort": "mysql-rollback",
"unit": "number"
},
"MYSQL_ROW_MODIFICATIONS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of requests to insert/update/delete a row",
"displayName": "MySQL Row Modification",
"displayNameShort": "mysql-row-mods",
"unit": "number"
},
"MYSQL_ROW_READS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of requests to read a row",
"displayName": "MySQL Row Reads",
"displayNameShort": "mysql-row-reads",
"unit": "number"
},
"MYSQL_SLOW_QUERIES": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of queries that have taken more than long_query_time seconds",
"displayName": "MySQL Slow Queries",
"displayNameShort": "mysql-slow-queries",
"unit": "number"
},
"MYSQL_TABLE_LOCKS": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of table locks granted",
"displayName": "MySQL Table Locks",
"displayNameShort": "mysql-tbl-locks",
"unit": "number"
},
"MYSQL_TABLE_LOCKS_WAIT": {
"defaultAggregate": "AVG",
"defaultResolutionMS": 1000,
"description": "The number of table locks that required a wait",
"displayName": "MySQL Table Wait Locks",
"displayNameShort": "mysql-tbl-wait-locks",
"unit": "number"
}
}