Merge lp:~rodrigo-gadea-percona/percona-ganglia-mysql/graphs into lp:percona-ganglia-mysql

Proposed by Rodrigo Gadea
Status: Merged
Approved by: Vadim Tkachenko
Approved revision: 14
Merged at revision: 15
Proposed branch: lp:~rodrigo-gadea-percona/percona-ganglia-mysql/graphs
Merge into: lp:percona-ganglia-mysql
Diff against target: 1348 lines (+679/-555)
11 files modified
METRICS (+564/-493)
conf/default.json (+50/-1)
graph.d/innodb_io.json (+1/-1)
graph.d/innodb_log.json (+7/-0)
graph.d/innodb_log_activity.json (+0/-7)
graph.d/innodb_transaction_activity.json (+6/-9)
graph.d/innodb_transactions_report.json (+0/-21)
graph.d/mysql_files_tables.json (+7/-0)
graph.d/mysql_network_traffic.json (+0/-22)
graph.d/mysql_replication.json (+1/-1)
graph.d/mysql_threads.json (+43/-0)
To merge this branch: bzr merge lp:~rodrigo-gadea-percona/percona-ganglia-mysql/graphs
Reviewer Review Type Date Requested Status
Vadim Tkachenko Approve
Review via email: mp+69163@code.launchpad.net

Description of the change

Improvements on documentation (METRICS, INSTALL), graphs and added conf/.

To post a comment you must log in.
Revision history for this message
Vadim Tkachenko (vadim-tk) wrote :

ok to merge

Revision history for this message
Vadim Tkachenko (vadim-tk) :
review: Approve
15. By Rodrigo Gadea

Fixed title in graph and removed file manager's temp files

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'METRICS'
--- METRICS 2011-06-24 06:41:11 +0000
+++ METRICS 2011-07-25 22:42:07 +0000
@@ -2,497 +2,568 @@
2METRICS2METRICS
3=======3=======
44
5 - 'Key_read_requests'5 - InnoDB Active/Locked Transactions (innodb_transactions_active_locked)
6 The number of reads of a key block from the cache (operations per second). 6
77 - 'active_transactions'
8 - 'Key reads'8 The number of active transactions in the server. Active transactions are those that are currently open (between BEGIN and COMMIT and also whilst a query is running).
9 The number of physical reads of a key block from disk (operations per second).9
1010 - 'locked_transactions'
11 - 'Key_write_requests'11 The number of locked transactions in the server. Locked transactions are those in LOCK WAIT status (waiting for a row lock, a table lock or an auto-increment lock).
12 The number of writes of a key block to the cache (operations per second). 12
1313 - InnoDB Adaptive Hash Index (innodb_adaptative_hash_index)
14 - 'Key_write'14
15 The number of physical writes of a key block to disk (operations per second).15 - 'hash_index_cells_total'
1616 The total number of Adaptative Hash Index cells of InnoDB.
17 - 'history_list'17
18 The length of the history list shows how old the oldest unpurged transaction is (transactions).18 - 'hash_index_cells_used'
1919 The number of cells Adaptative Hash Index cells used by InnoDB.
20 - 'innodb_transactions'20
21 The number of transactions done by the server (internal transaction counter).21 - InnoDB Buffer Pool (innodb_buffer_pool)
22
23 - 'pool_size'
24 The total size of buffer pool, in pages.
25
26 - 'database_pages'
27 The number of used pages in the buffer pool.
28
29 - 'free_pages'
30 The number of free pages in the buffer pool.
31
32 - 'modified_pages'
33 The number of modified (dirty) pages in the buffer pool.
34
35 - InnoDB Buffer Pool Activity (innodb_buffer_pool_activity)
36
37 - 'pages_created'
38 The number of created pages per second.
39
40 - 'pages_read'
41 The number of logical reads of pages that the engine could not satisfy from the buffer pool, and had to read directly from the disk (pages per second).
42
43 - 'pages_written'
44 The number of pages written per second.
45
46 - InnoDB Checkpoint Age (innodb_checkpoint_age)
47
48 - 'uncheckpointed_bytes'
49 The number of uncheckpointed bytes: the amount of recovery that'll have to be performed if there's a crash.
22 50
23 - 'read_views'51 - InnoDB Current Lock Waiting Time (innodb_current_lock_waits)
24 The number of read views open shows how many transactions have a consistent snapshot of the database's contents, which is achieved by MVCC (transactions).52
2553 - 'innodb_lock_wait_secs'
26 - 'current_transactions'54
27 The total number of transactions currently in the server, no matter what status (ACTIVE, LOCK WAIT, not started, etc).55 The total number of seconds that InnoDB transactions have been waiting for locks.
2856
29 - 'locked_transactions'57 - InnoDB Insert Buffer (innodb_insert_buffer)
30 The number of locked transactions in the server. Locked transactions are those in LOCK WAIT status (waiting for a row lock, a table lock or an auto-increment lock).58
3159 - 'ibuf_inserts'
32 - 'active_transactions'60 The number of INSERT operations per second in the InnoDB Insert Buffer.
33 The number of active transactions in the server. Active transactions are those that are currently open (between BEGIN and COMMIT and also whilst a query is running).61
3462 - 'ibuf_merged'
35 - 'pool_size'63 The number of MERGED RECORD operations per second in the InnoDB Insert Buffer.
36 The total size of buffer pool, in pages.64
3765 - 'ibuf_merges'
38 - free_pages 'free_pages'66 The number of MERGE operations per second in the InnoDB Insert Buffer.
39 The number of free pages in the buffer pool.67
4068 - InnoDB Insert Buffer Usage (innodb_insert_buffer_usage)
41 - 'database_pages'69
42 The number of used pages in the buffer pool.70 - 'ibuf_free_cells'
4371 The number of free cells of the Insert Buffer.
44 - 'modified_pages' 72
45 The number of modified (dirty) pages in the buffer pool.73 - 'ibuf_used_cells'
4674 The number of cells of the Insert Buffer being used.
47 - 'pages_read' 75
48 The number of logical reads of pages that the engine could not satisfy from the buffer pool, and had to read directly from the disk (pages per second). 76 - 'ibuf_cell_count'
4977 The number of cells allocated for the Insert Buffer.
50 - 'pages_created'78
51 The number of created pages per second.79 - InnoDB Internal Hash Memory Usage (innodb_internal_hash_struct)
5280
53 - 'pages_written'81 - 'adaptive_hash_memory'
54 The number of pages written per second.82 The amount of memory in bytes used by InnoDB Adaptive Hash Index
5583
56 - 'file_fsyncs'84 - 'page_hash_memory'
57 The number of fsync() calls per second (operations per second).85 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.
5886
59 - 'file_reads'87 - 'dictionary_cache_memory'
60 The number of file reads per second (operations per second).88 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.
6189
62 - 'file_writes'90 - 'file_system_memory'
63 The amount of InnoDB's file writes per second (operations per second).91 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.
6492
65 - 'log_writes'93 - 'lock_system_memory'
66 The number of physical writes per second to the log file (operations per second).94 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.
6795
68 - 'pending_aio_log_ios'96 - 'recovery_system_memory'
69 The number of total pending I/O operations to the log file (IO).97 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.
7098
71 - * 'pending_aio_sync_ios'99 - 'thread_hash_memory'
72 The number of pending asynchronous fsync() operations in the data files (IO).100 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.
73101
74 - 'pending_buf_pool_flushes'102 - InnoDB I/O Activity (innodb_io)
75 The number of pending buffer pool page-flush requests (IO).103
76104 - 'file_fsyncs'
77 - 'pending_chkp_writes'105 The number of fsync() calls per second (operations per second).
78 The number of pending checkpoints writes (IO).106
79107 - 'file_reads'
80 - 'pending_ibuf_aio_reads'108 The number of file reads per second (operations per second).
81 The number of pending asynchronous Insert Buffer reads (IO).109
82110 - 'file_writes'
83 - 'pending_log_flushes'111 The amount of InnoDB's file writes per second (operations per second).
84 The number of pending flushes to the log file (IO).112
85113 - 'log_writes'
86 - 'pending_log_writes'114 The number of physical writes per second to the log file (operations per second).
87 The number of pending log file writes (IO).115
88116 - InnoDB I/O Pending (innodb_io_pending)
89 - 'pending_normal_aio_reads'117
90 The number of pending asynchronous normal reads (IO).118 - 'pending_aio_log_ios'
91119 The number of total pending I/O operations to the log file (IO).
92 - 'pending_normal_aio_writes'120
93 The number of pending asynchronous normal writes (IO).121 - 'pending_aio_sync_ios'
94122 The number of pending asynchronous fsync() operations in the data files (IO).
95 - 'ibuf_inserts'123
96 The number of INSERT operations per second in the InnoDB Insert Buffer.124 - 'pending_buf_pool_flushes'
97125 The number of pending buffer pool page-flush requests (IO).
98 - 'ibuf_merged' 126
99 The number of MERGED RECORD operations per second in the InnoDB Insert Buffer.127 - 'pending_chkp_writes'
100128 The number of pending checkpoints writes (IO).
101 - 'ibuf_merges' 129
102 The number of MERGE operations per second in the InnoDB Insert Buffer.130 - 'pending_ibuf_aio_reads'
103131 The number of pending asynchronous Insert Buffer reads (IO).
104 - 'spin_waits'132
105 The number of spin waits per second done by threads.133 - 'pending_log_flushes'
106134 The number of pending flushes to the log file (IO).
107 - 'spin_rounds'135
108 The number of spin rounds per seconds done by threads.136 - 'pending_log_writes'
109137 The number of pending log file writes (IO).
110 - 'os_waits'138
111 The number of OS waits per second done by threads.139 - 'pending_normal_aio_reads'
112140 The number of pending asynchronous normal reads (IO).
113 - 'rows_inserted' 141
114 The number of rows per second inserted into InnoDB tables.142 - 'pending_normal_aio_writes'
115143 The number of pending asynchronous normal writes (IO).
116 - 'rows_updated' 144
117 The number of rows updated per second in InnoDB tables. 145 - InnoDB Lock Structures (innodb_lock_structures)
118146
119 - 'rows_deleted'147 - 'innodb_lock_structs'
120 The number of rows deleted per second from InnoDB tables.148 The number of internal lock structures InnoDB has (locks).
121149
122 - 'rows_read'150 - InnoDB Log Size (innodb_log)
123 The number of rows reads per second from InnoDB tables. 151
124152 - 'innodb_log_buffer_size'
125 - 'Table_locks_waited'153 The size in bytes of the memory buffer InnoDB uses to cache data and indexes of its tables.
126 The number of times per second that a request for a table lock could not be granted immediately and a wait was needed (locks per second).154
127155 - 'unflushed_log'
128 - 'Table_locks_immediate'156 The amount in kilobytes of InnoDB logs that hasn't been flushed.
129 The number of times per second that a request for a table lock could be granted immediately (locks per second).157
130158 - InnoDB Log Activity (innodb_log_activity)
131 - 'Slow_queries'159
132 The number of queries per second that have taken more than 'long_query_time' seconds.160 - 'log_bytes_flushed'
133161 The amount in bytes of InnoDB logs that has been flushed per second.
134 - 'Open_files'162
135 The number of files that are open per second. This count includes regular files opened by the server. It does not include other types of files such as sockets or pipes. Also, the count does not include files that storage engines open using their own internal functions rather than asking the server level to do so. 163 - 'log_bytes_written'
136 164 The amount in bytes of InnoDB logs that hasn't been flushed per second.
137 - 'Open_tables'165
138 The number of tables that are open per second. 166 - InnoDB Memory Allocation (innodb_memory_allocation)
139167
140 - 'Opened_tables'168 - 'total_mem_alloc'
141 The number of tables per second that have been opened with my_open() (a 'mysys' library function). Parts of the server that open files without using this function do not increment the count. 169 The total amount of memory allocated by InnoDB in bytes.
142170
143 - 'innodb_open_files'171 - 'additional_pool_alloc'
144 The number of files per second that are open by InnoDB using its own internal functions rather than asking the server level to do so. 172 The amount of memory allocated in the additional pool by InnoDB.
145173
146 - 'open_files_limit'174 - InnoDB Row Operations (innodb_row_operations)
147 The number of open files that the server can have.175
148176 - 'rows_inserted'
149 - 'table_cache'177 The number of rows per second inserted into InnoDB tables.
150 The number of tables been cached.178
151179 - 'rows_updated'
152 - 'Aborted_clients'180 The number of rows updated per second in InnoDB tables.
153 The number of connections per second that were aborted because the client died without closing the connection properly. 181
154182 - 'rows_deleted'
155 - 'Aborted_connects'183 The number of rows deleted per second from InnoDB tables.
156 The number of failed attempts per second to connect to the MySQL server.184
157185 - 'rows_read'
158 - 'Max_used_connections'186 The number of rows reads per second from InnoDB tables.
159 The maximum number of connections that have been in use simultaneously since the server started. 187
160188 - InnoDB Row Lock Acquiring Time (innodb_row_lock_time)
161 - 'Slow_launch_threads'189
162 The number of threads that have taken more than 'slow_launch_time' seconds to create. 190 - 'Innodb_row_lock_time'
163191 The total time spent in acquiring row locks, in milliseconds.
164 - 'Threads_cached'192
165 The number of threads in the thread cache. 193 - InnoDB Row Lock Waits (innodb_row_lock_waits)
166194
167 - 'Threads_connected'195 - 'Innodb_row_lock_waits'
168 The number of currently open connections per second. 196 The number of times per second a row lock had to be waited for (waits per second).
169197
170 - 'Threads_created'198 - InnoDB Semaphores (innodb_semaphores)
171 The number of threads per second created to handle connections.199
172200 - 'spin_waits'
173 - 'Threads_running'201 The number of spin waits per second done by threads.
174 The number of threads that are not sleeping. 202
175203 - 'spin_rounds'
176 - 'max_connections'204 The number of spin rounds per seconds done by threads.
177 The number of connections permitted in the server.205
178206 - 'os_waits'
179 - 'thread_cache_size'207 The number of OS waits per second done by threads.
180 How many threads the server should cache for reuse.208
181209 - InnoDB Semaphore Waits (innodb_semaphore_waits)
182 - 'Connections'210
183 The number of connection attempts per second (successful or not) to the server (connections per second). 211 - 'innodb_sem_waits'
184212 The total number of InnoDB semaphore waits per second.
185 - 'slave_running'213
186 This is 1 (ON) if this server is a replication slave that is connected to a replication master, and both the I/O and SQL threads are running; otherwise, it is 0 (OFF).214 - InnoDB Semaphore Waiting Time (innodb_semaphore_wait_time)
187215
188 - 'slave_stopped'216 - 'innodb_sem_wait_time_ms'
189 This is 1 if this server is NOT a replication slave and neither both of the I/O and SQL threads are running; otherwise, it is 0.217 The total number of milliseconds waited for semaphores.
190218
191 - 'Slave_retried_transactions'219 - InnoDB Tables In Use (innodb_tables_in_use)
192 The total number of times since startup that the replication slave SQL thread has retried transactions (transactions). 220
193221 - 'innodb_tables_in_use'
194 - 'slave_lag' 222 The number of InnoDB tables in use.
195 The number of seconds (estimation) of the lag between the master and the slave in a replication environment.223
196224 - 'innodb_locked_tables'
197 - 'Slave_open_temp_tables'225 The number of InnoDB tables that are locked.
198 The number of temporary tables that the slave SQL thread currently has open.226
199227 - InnoDB Transactions (innodb_transactions_report)
200 - 'Qcache_free_blocks'228
201 The number of free memory blocks in the query cache. 229 - 'innodb_transactions'
202230 The number of transactions done by the server (internal transaction counter).
203 - 'Qcache_free_memory'231
204 The amount of free memory in bytes for the query cache.232 - InnoDB Transaction Activity (innodb_transaction_activity)
205233
206 - 'Qcache_hits'234 - 'history_list'
207 The number of query cache hits per second. 235 The length of the history list shows how old the oldest unpurged transaction is (transactions).
208236
209 - 'Qcache_inserts'237 - 'read_views'
210 The number of queries per second added to the query cache.238 The number of read views open shows how many transactions have a consistent snapshot of the database's contents, which is achieved by MVCC (transactions).
211239
212 - 'Qcache_lowmem_prunes'240 - 'current_transactions'
213 The number of queries per second that were deleted from the query cache because of low memory.241 The total number of transactions currently in the server, no matter what status (ACTIVE, LOCK WAIT, not started, etc).
214242
215 - 'Qcache_not_cached'243 - MySQL Threads (mysql_threads)
216 The number of non-cached queries per second (not cacheable, or not cached due to the 'query_cache_type' setting). 244
217245 - 'Threads_created'
218 - 'Qcache_queries_in_cache'246 The number of threads per second created to handle connections.
219 The number of queries per second registered in the query cache.247
220248 - 'Threads_cached'
221 - 'Qcache_total_blocks'249 The number of threads in the thread cache.
222 The total number of blocks in the query cache. 250
223251 - 'Threads_running'
224 - 'query_cache_size'252 The number of threads that are not sleeping.
225 The amount of memory allocated for caching query results.253
226254 - 'thread_cache_size'
227 - 'Questions'255 How many threads the server should be cached for reuse.
228 The number of statements per second executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. This variable does not count COM_PING, COM_STATISTICS, COM_STMT_PREPARE, COM_STMT_CLOSE, or COM_STMT_RESET commands (queries per second).256
229257 - 'Slow_launch_threads'
230 - 'Com_update'258 The number of threads that have taken more than 'slow_launch_time' seconds to create.
231 The number of UPDATE statements per second executed (queries per second).259
232260 - MyISAM indexes (myisam_indexes)
233 - 'Com_insert'261
234 The number of INSERT statements per second executed (queries per second).262 - 'Key_read_requests'
235263 The number of reads of a key block from the cache (operations per second).
236 - 'Com_select'264
237 The number of SELECT statements per second executed (queries per second).265 - 'Key reads'
238266 The number of physical reads of a key block from disk (operations per second).
239 - 'Com_delete'267
240 The number of DELETE statements per second executed (queries per second).268 - 'Key_write_requests'
241269 The number of writes of a key block to the cache (operations per second).
242 - 'Com_replace'270
243 The number of REPLACE statements per second executed (queries per second).271 - 'Key_write'
244272 The number of physical writes of a key block to disk (operations per second).
245 - 'Com_load'273
246 The number of LOAD statements per second executed (queries per second).274 - MyISAM Key Cache (myisam_key_cache)
247275
248 - 'Com_update_multi'276 - 'Key_buf_bytes_unflushed'
249 The number of UPDATE statements on multiple columns (???) per second executed (queries per second).277 The amount of memory in bytes used for the key cache that have changed but have not yet been flushed to disk.
250278
251 - 'Com_insert_select'279 - 'Key_buf_bytes_used'
252 The number of INSERT ... SELECT statements per second executed (queries per second).280 The amount of memory in bytes used for buffering index blocks (MyISAM tables).
253281
254 - 'Com_delete_multi'282 - 'key_buffer_size'
255 The number of DELETE statements on multiple rows (??) per second executed (queries per second).283 The amount of memory in bytes designated for buffering index blocks for MyISAM tables.
256284
257 - 'Com_replace_select'285 - MySQL Binary and Relay Logs (mysql_binary_relay_logs)
258 The number of REPLACE ... SELECT statements per second executed (queries per second).286
259287 - 'binary_log_space'
260 - 'Select_full_join'288 The total size in bytes of all existing binary log files.
261 The number of joins per second that perform table scans because they do not use indexes (queries per second).289
262290 - 'relay_log_space'
263 - 'Select_full_range_join'291 The total combined size in bytes of all existing relay log files.
264 The number of joins per second that used a range search on a reference table (queries per second).292
265 293 - 'Binlog_cache_disk_use'
266 - 'Select_range'294 The amount in bytes of the binary log cache in disk used by transactions: when the value of 'binlog_cache_size' is exceeded, a temporary file is used to store changes from the transaction.
267 The number of joins per second that used ranges on the first table (queries per second).295
268296 - 'Binlog_cache_use'
269 - 'Select_range_check'297 The amount in bytes of the binary log cache used by transactions.
270 The number of joins without keys per second that checked for key usage after each row (queries per second).298
271299 - MySQL Command Counters (mysql_command_counters)
272 - 'Select_scan'300
273 The number of joins statements that did a full scan of the first table (queries per second). 301 - 'Questions'
274302 The number of statements per second executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. This variable does not count COM_PING, COM_STATISTICS, COM_STMT_PREPARE, COM_STMT_CLOSE, or COM_STMT_RESET commands (queries per second).
275 - 'Sort_merge_passes'303
276 The number of merge passes per second that the sort algorithm has had to do (queries per second).304 - 'Com_update'
277305 The number of UPDATE statements per second executed (queries per second).
278 - 'Sort_range'306
279 The number of sorts per second that were done using ranges (queries per second). 307 - 'Com_insert'
280308 The number of INSERT statements per second executed (queries per second).
281 - 'Sort_rows'309
282 The number of sorted rows per second (rows per second).310 - 'Com_select'
283311 The number of SELECT statements per second executed (queries per second).
284 - 'Sort_scan'312
285 The number of sorts per second that were done by scanning the table (queries per second). 313 - 'Com_delete'
286314 The number of DELETE statements per second executed (queries per second).
287 - 'Created_tmp_tables'315
288 The number of internal temporary tables per second created by the server while executing statements.316 - 'Com_replace'
289317 The number of REPLACE statements per second executed (queries per second).
290 - 'Created_tmp_disk_tables'318
291 The number of internal on-disk temporary tables created per second by the server while executing statements. 319 - 'Com_load'
292320 The number of LOAD statements per second executed (queries per second).
293 - 'Created_tmp_files'321
294 The number of temporary files per second that the server has created. 322 - 'Com_update_multi'
295323 The number of UPDATE statements on multiple columns (???) per second executed (queries per second).
296 - 'Bytes_sent'324
297 The number of bytes per second sent to all clients. 325 - 'Com_insert_select'
298326 The number of INSERT ... SELECT statements per second executed (queries per second).
299 - 'Bytes_received'327
300 The number of bytes per second received from all clients. 328 - 'Com_delete_multi'
301329 The number of DELETE statements on multiple rows (??) per second executed (queries per second).
302 - 'innodb_log_buffer_size'330
303 The size in bytes of the memory buffer InnoDB uses to cache data and indexes of its tables.331 - 'Com_replace_select'
304332 The number of REPLACE ... SELECT statements per second executed (queries per second).
305 - 'unflushed_log'333
306 The amount in kilobytes of InnoDB logs that hasn't been flushed. 334 - MySQL Connections (mysql_connections)
307335
308 - 'log_bytes_flushed'336 - 'max_connections'
309 The amount in bytes of InnoDB logs that has been flushed per second.337 The number of connections permitted in the server.
310338
311 - 'log_bytes_written'339 - 'Max_used_connections'
312 The amount in bytes of InnoDB logs that hasn't been flushed per second.340 The maximum number of connections that have been in use simultaneously since the server started.
313341
314 - 'relay_log_space'342 - MySQL Connections Types (mysql_connections_types)
315 The total combined size in bytes of all existing relay log files.343
316344 - 'Connections'
317 - 'binlog_cache_size'345 The number of connection attempts per second (successful or not) to the server (connections per second).
318 The size in bytes of the cache to hold changes to the binary log during a transaction.346
319347 - 'Aborted_clients'
320 - 'Binlog_cache_disk_use'348 The number of connections per second that were aborted because the client died without closing the connection properly.
321 The amount in bytes of the binary log cache in disk used by transactions: when the value of 'binlog_cache_size' is exceeded, a temporary file is used to store changes from the transaction.349
322350 - 'Aborted_connects'
323 - 'Binlog_cache_use'351 The number of failed attempts per second to connect to the MySQL server.
324 The amount in bytes of the binary log cache used by transactions. 352
325353 - 'Threads_connected'
326 - 'binary_log_space'354 The number of currently open connections per second.
327 The total size in bytes of all existing binary log files.355
328356 - MySQL Files and Tables (mysql_files_tables)
329 - 'innodb_locked_tables'357
330 The number of InnoDB tables that are locked.358 - 'table_cache'
331359 The number of tables been cached.
332 - 'innodb_lock_structs'360
333 The number of internal lock structures InnoDB has (locks).361 - 'Open_files'
334362 The number of files that are open per second. This count includes regular files opened by the server. It does not include other types of files such as sockets or pipes. Also, the count does not include files that storage engines open using their own internal functions rather than asking the server level to do so.
335 - 'State_closing_tables'363
336 The number of threads being in 'closing_tables' state: the thread is flushing the changed table data to disk and closing the used tables.364 - 'Open_tables'
337365 The number of tables that are open per second.
338 - 'State_copying_to_tmp_table'366
339 The number of threads being in 'copying to tmp table' state: the thread is creating a temporary table in memory or on disk.367 - 'Opened_tables'
340368 The number of tables per second that have been opened with my_open() (a 'mysys' library function). Parts of the server that open files without using this function do not increment the count.
341 - 'State_end'369
342 The number of threads being in 'end' state: this occurs at the end but before the cleanup of ALTER TABLE, CREATE VIEW, DELETE, INSERT, SELECT, or UPDATE statements. 370 - MySQL Handlers (mysql_handlers)
343371
344 - 'State_freeing_items'372 - 'Handler_write'
345 The number of threads being in 'freeing items' state: the thread has executed a command. Some freeing of items done during this state involves the query cache.373 The number of requests per second to insert a row in a table (calls per second).
346374
347 - 'State_init'375 - 'Handler_update'
348 The number of threads per second being in 'init' state: this occurs before the initialization of ALTER TABLE, DELETE, INSERT, SELECT, or UPDATE statements. Actions taken by the server in this state include flushing the binary log, the InnoDB log, and some query cache cleanup operations. 376 The number of requests per second to update a row in a table (calls per second).
349377
350 - 'State_locked'378 - 'Handler_delete'
351 The number of threads being in 'locked' state: the query is locked by another query.379 The number of times that rows have been deleted from tables (calls per second).
352380
353 - 'State_login'381 - 'Handler_read_first'
354 The number of threads being in 'login' state: the initial state for a connection thread until the client has been authenticated successfully. 382 The number of times per second the first entry in an index was read (calls per second).
355383
356 - 'State_preparing'384 - 'Handler_read_key'
357 The number of threads being in 'preparing' state: this state occurs during query optimization. 385 The number of requests per second to read a row based on a key (calls per second).
358386
359 - 'State_reading_from_net'387 - 'Handler_read_next'
360 The number of threads being in 'reading form net' state: the server is reading a packet from the network. 388 The number of requests per second to read the next row in key order (calls per second).
361389
362 - 'State_sending_data'390 - 'Handler_read_prev'
363 The number of threads being in 'sending data' state: the thread is reading and processing rows for a SELECT statement, and sending data to the client.391 The number of requests per second to read the previous row in key order (calls per second).
364392
365 - 'State_sorting_result'393 - 'Handler_read_rnd'
366 The number of threads being in 'sorting result' state: for a SELECT statement, the thread is sorting index pages for more efficient access for nontemporary tables. 394 The number of requests per second to read a row based on a fixed position (calls per second).
367395
368 - 'State_statistics'396 - 'Handler_read_rnd_next'
369 The number of threads being in 'statistics' state: the server is calculating statistics to develop a query execution plan.397 The number of requests per second to read the next row in the data file (calls per second).
370398
371 - 'State_updating'399 - MySQL Network (mysql_network_report)
372 The number of threads being in 'updating' state: the thread is searching for rows to update and is updating them. 400
373401 - 'Bytes_sent'
374 - 'State_writing_to_net'402 The number of bytes per second sent to all clients.
375 The number of threads being in 'writing to net' state: the server is writing a packet to the network. 403
376404 - 'Bytes_received'
377 - 'State_none'405 The number of bytes per second received from all clients.
378 The number of threads being in 'none' state: (NULL??) this state is used for the SHOW PROCESSLIST state.406
379407 - MySQL Processlist (mysql_process_list)
380 - 'State_other'408
381 The number of threads being in other state than the previously specified.409 - 'State_closing_tables'
382410 The number of threads being in 'closing_tables' state: the thread is flushing the changed table data to disk and closing the used tables.
383 - 'Handler_commit'411
384 The number of internal COMMIT calls per second. 412 - 'State_copying_to_tmp_table'
385413 The number of threads being in 'copying to tmp table' state: the thread is creating a temporary table in memory or on disk.
386 - 'Handler_delete'414
387 The number of times that rows have been deleted from tables (calls per second). 415 - 'State_end'
388416 The number of threads being in 'end' state: this occurs at the end but before the cleanup of ALTER TABLE, CREATE VIEW, DELETE, INSERT, SELECT, or UPDATE statements.
389 - 'Handler_discover'417
390 The number of times per second that tables have been discovered asking the NDBCLUSTER storage engine.418 - 'State_freeing_items'
391419 The number of threads being in 'freeing items' state: the thread has executed a command. Some freeing of items done during this state involves the query cache.
392 - 'Handler_prepare'420
393 The number of prepare phases of two-phase commit operations (calls per second). 421 - 'State_init'
394422 The number of threads per second being in 'init' state: this occurs before the initialization of ALTER TABLE, DELETE, INSERT, SELECT, or UPDATE statements. Actions taken by the server in this state include flushing the binary log, the InnoDB log, and some query cache cleanup operations.
395 - 'Handler_read_first'423
396 The number of times per second the first entry in an index was read (calls per second).424 - 'State_locked'
397425 The number of threads being in 'locked' state: the query is locked by another query.
398 - 'Handler_read_key' 426
399 The number of requests per second to read a row based on a key (calls per second).427 - 'State_login'
400428 The number of threads being in 'login' state: the initial state for a connection thread until the client has been authenticated successfully.
401 - 'Handler_read_next'429
402 The number of requests per second to read the next row in key order (calls per second).430 - 'State_preparing'
403431 The number of threads being in 'preparing' state: this state occurs during query optimization.
404 - 'Handler_read_prev'432
405 The number of requests per second to read the previous row in key order (calls per second).433 - 'State_reading_from_net'
406434 The number of threads being in 'reading form net' state: the server is reading a packet from the network.
407 - 'Handler_read_rnd'435
408 The number of requests per second to read a row based on a fixed position (calls per second).436 - 'State_sending_data'
409437 The number of threads being in 'sending data' state: the thread is reading and processing rows for a SELECT statement, and sending data to the client.
410 - 'Handler_read_rnd_next'438
411 The number of requests per second to read the next row in the data file (calls per second).439 - 'State_sorting_result'
412440 The number of threads being in 'sorting result' state: for a SELECT statement, the thread is sorting index pages for more efficient access for nontemporary tables.
413 - 'Handler_rollback'441
414 The number of requests per second for a storage engine to perform a rollback operation (calls per second). 442 - 'State_statistics'
415443 The number of threads being in 'statistics' state: the server is calculating statistics to develop a query execution plan.
416 - 'Handler_savepoint'444
417 The number of requests per second for a storage engine to place a savepoint (calls per second). 445 - 'State_updating'
418446 The number of threads being in 'updating' state: the thread is searching for rows to update and is updating them.
419 - 'Handler_savepoint_rollback'447
420 The number of requests per second for a storage engine to roll back to a savepoint (calls per second). 448 - 'State_writing_to_net'
421449 The number of threads being in 'writing to net' state: the server is writing a packet to the network.
422 - 'Handler_update'450
423 The number of requests per second to update a row in a table (calls per second). 451 - 'State_none'
424452 The number of threads being in 'none' state: (NULL??) this state is used for the SHOW PROCESSLIST state.
425 - 'Handler_write'453
426 The number of requests per second to insert a row in a table (calls per second). 454 - 'State_other'
427455 The number of threads being in other state than the previously specified.
428 - 'innodb_tables_in_use'456
429 The number of InnoDB tables in use.457 - MySQL Query Cache (mysql_query_cache)
430458
431 - 'innodb_lock_wait_secs'459 - 'Qcache_hits'
432 The total number of seconds that InnoDB transactions have been waiting for locks.460 The number of query cache hits per second.
433461
434 - 'hash_index_cells_total'462 - 'Qcache_inserts'
435 The total number of Adaptative Hash Index cells of InnoDB.463 The number of queries per second added to the query cache.
436464
437 - 'hash_index_cells_used'465 - 'Qcache_lowmem_prunes'
438 The number of cells Adaptative Hash Index cells used by InnoDB.466 The number of queries per second that were deleted from the query cache because of low memory.
439467
440 - 'total_mem_alloc'468 - 'Qcache_not_cached'
441 The total amount of memory allocated by InnoDB in bytes.469 The number of non-cached queries per second (not cacheable, or not cached due to the 'query_cache_type' setting).
442470
443 - 'additional_pool_alloc'471 - 'Qcache_queries_in_cache'
444 The amount of memory allocated in the additional pool by InnoDB.472 The number of queries per second registered in the query cache.
445473
446 - 'uncheckpointed_bytes'474 - MySQL Query Cache Memory (mysql_query_cache_memory)
447 The number of uncheckpointed bytes: the amount of recovery that'll have to be performed if there's a crash.475
448476 - 'Qcache_free_blocks'
449 - 'ibuf_used_cells'477 The number of free memory blocks in the query cache.
450 The number of cells of the Insert Buffer being used.478
451479 - 'Qcache_free_memory'
452 - 'ibuf_free_cells'480 The amount of free memory in bytes for the query cache.
453 The number of free cells of the Insert Buffer.481
454482 - 'Qcache_total_blocks'
455 - 'ibuf_cell_count'483 The total number of blocks in the query cache.
456 The number of cells allocated for the Insert Buffer.484
457485 - 'query_cache_size'
458 - 'adaptive_hash_memory'486 The amount of memory allocated for caching query results.
459 The amount of memory in bytes used by InnoDB Adaptive Hash Index487
460488 - MySQL Replication Status (mysql_replication)
461 - 'page_hash_memory'489
462 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.490 - 'slave_running'
463491 This is 1 (ON) if this server is a replication slave that is connected to a replication master, and both the I/O and SQL threads are running; otherwise, it is 0 (OFF).
464 - 'dictionary_cache_memory'492
465 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.493 - 'slave_stopped'
466494 This is 1 if this server is NOT a replication slave and neither both of the I/O and SQL threads are running; otherwise, it is 0.
467 - 'file_system_memory'495
468 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.496 - 'Slave_retried_transactions'
469497 The total number of times since startup that the replication slave SQL thread has retried transactions (transactions).
470 - 'lock_system_memory'498
471 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.499 - 'slave_lag'
472500 The number of seconds (estimation) of the lag between the master and the slave in a replication environment.
473 - 'recovery_system_memory'501
474 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.502 - MySQL Select Types (mysql_select_types)
475503
476 - 'thread_hash_memory'504 - 'Select_full_join'
477 The amount of memory in bytes used in page hash by Percona-enhanced versions of InnoDB.505 The number of joins per second that perform table scans because they do not use indexes (queries per second).
478506
479 - 'innodb_sem_waits'507 - 'Select_full_range_join'
480 The total number of InnoDB semaphore waits per second.508 The number of joins per second that used a range search on a reference table (queries per second).
481509
482 - 'innodb_sem_wait_time_ms'510 - 'Select_range'
483 The total number of milliseconds waited for semaphores.511 The number of joins per second that used ranges on the first table (queries per second).
484512
485 - 'Key_buf_bytes_unflushed'513 - 'Select_range_check'
486 The amount of memory in bytes used for the key cache that have changed but have not yet been flushed to disk.514 The number of joins without keys per second that checked for key usage after each row (queries per second).
487515
488 - 'Key_buf_bytes_used'516 - 'Select_scan'
489 The amount of memory in bytes used for buffering index blocks (MyISAM tables).517 The number of joins statements that did a full scan of the first table (queries per second).
490518
491 - 'key_buffer_size'519 - MySQL Sorts (mysql_sorts)
492 The amount of memory in bytes designated for buffering index blocks for MyISAM tables.520
493521 - 'Sort_merge_passes'
494 - 'Innodb_row_lock_time'522 The number of merge passes per second that the sort algorithm has had to do (queries per second).
495 The total time spent in acquiring row locks, in milliseconds.523
496524 - 'Sort_range'
497 - 'Innodb_row_lock_waits'525 The number of sorts per second that were done using ranges (queries per second).
498 The number of times per second a row lock had to be waited for (waits per second). 526
527 - 'Sort_scan'
528 The number of sorts per second that were done by scanning the table (queries per second).
529
530 - MySQL Rows Sorted (mysql_rows_sorted)
531
532 - 'Sort_rows'
533 The number of sorted rows per second (rows per second).
534
535 - MySQL Table Locks (mysql_table_locks)
536
537 - 'Table_locks_waited'
538 The number of times per second that a request for a table lock could not be granted immediately and a wait was needed (locks per second).
539
540 - 'Table_locks_immediate'
541 The number of times per second that a request for a table lock could be granted immediately (locks per second).
542
543 - 'Slow_queries'
544 The number of queries per second that have taken more than 'long_query_time' seconds.
545
546 - MySQL Temporary Objects (mysql_temporary_objects)
547
548 - 'Created_tmp_tables'
549 The number of internal temporary tables per second created by the server while executing statements.
550
551 - 'Created_tmp_disk_tables'
552 The number of internal on-disk temporary tables created per second by the server while executing statements.
553
554 - 'Created_tmp_files'
555 The number of temporary files per second that the server has created.
556
557 - MySQL Transaction Handler (mysql_transaction_handler)
558
559 - 'Handler_commit'
560 The number of internal COMMIT calls per second.
561
562 - 'Handler_rollback'
563 The number of requests per second for a storage engine to perform a rollback operation (calls per second).
564
565 - 'Handler_savepoint'
566 The number of requests per second for a storage engine to place a savepoint (calls per second).
567
568 - 'Handler_savepoint_rollback'
569 The number of requests per second for a storage engine to roll back to a savepoint (calls per second).
499570
=== modified file 'conf/default.json'
--- conf/default.json 2011-07-22 02:16:54 +0000
+++ conf/default.json 2011-07-25 22:42:07 +0000
@@ -1,3 +1,52 @@
1{1{
2 "included_reports": ["load_report","mem_report","cpu_report","network_report","innodb_adaptative_hash_indexes","mysql_binary_relay_logs","innodb_buffer_pool_activity","innodb_buffer_pool","innodb_current_locks_wait","innodb_insert_buffer","innodb_insert_buffer_usage","innodb_internal_hash_struct","innodb_io","innodb_io_pending","innodb_lock_structures","innodb_log","innodb_memory_allocation","innodb_row_lock_time","innodb_row_lock_waits","innodb_row_operations","innodb_semaphores","innodb_semaphores_waits","innodb_semaphores_waits_times","innodb_tables_in_use","innodb_transactions_active_locked","innodb_transactions_report","myisam_indexes","myisam_key_cache","mysql_command_counters","mysql_connections","mysql_connections_types","mysql_files_tables","mysql_handlers","mysql_network_traffic","mysql_process_list","mysql_query_cache","mysql_query_cache_memory","mysql_replication","mysql_select_types","mysql_sorts","mysql_rows_sorted","mysql_table_locks","mysql_temporary_objects","mysql_transaction_handler"]2 "included_reports": [
3 "load_report",
4 "mem_report",
5 "cpu_report",
6 "network_report",
7 "innodb_transactions_active_locked",
8 "innodb_adaptative_hash_indexes",
9 "innodb_buffer_pool",
10 "innodb_buffer_pool_activity",
11 "innodb_checkpoint_age",
12 "innodb_current_locks_wait",
13 "innodb_insert_buffer",
14 "innodb_insert_buffer_usage",
15 "innodb_internal_hash_struct",
16 "innodb_io",
17 "innodb_io_pending",
18 "innodb_lock_structures",
19 "innodb_log",
20 "innodb_log_activity",
21 "innodb_memory_allocation",
22 "innodb_row_lock_time",
23 "innodb_row_lock_waits",
24 "innodb_row_operations",
25 "innodb_semaphores",
26 "innodb_semaphores_waits",
27 "innodb_semaphores_waits_times",
28 "innodb_tables_in_use",
29 "innodb_transactions_report",
30 "innodb_transaction_activity",
31 "myisam_indexes",
32 "myisam_key_cache",
33 "mysql_binary_relay_logs",
34 "mysql_command_counters",
35 "mysql_connections",
36 "mysql_connections_types",
37 "mysql_files_tables",
38 "mysql_handlers",
39 "mysql_network_traffic",
40 "mysql_process_list",
41 "mysql_query_cache",
42 "mysql_query_cache_memory",
43 "mysql_replication",
44 "mysql_select_types",
45 "mysql_sorts",
46 "mysql_rows_sorted",
47 "mysql_table_locks",
48 "mysql_temporary_objects",
49 "mysql_transaction_handler",
50 "mysql_threads"
51 ]
3}52}
453
=== modified file 'graph.d/innodb_io.json'
--- graph.d/innodb_io.json 2011-07-22 02:16:54 +0000
+++ graph.d/innodb_io.json 2011-07-25 22:42:07 +0000
@@ -1,5 +1,5 @@
1{1{
2 "report_name": "innodb_buffer_pool",2 "report_name": "innodb_io",
3 "report_type": "standard",3 "report_type": "standard",
4 "title": "- InnoDB I/O Activity @",4 "title": "- InnoDB I/O Activity @",
5 "vertical_label": "Ops/sec",5 "vertical_label": "Ops/sec",
66
=== modified file 'graph.d/innodb_log.json'
--- graph.d/innodb_log.json 2011-07-22 02:16:54 +0000
+++ graph.d/innodb_log.json 2011-07-25 22:42:07 +0000
@@ -9,6 +9,13 @@
9 "label": "Log Buffer Size",9 "label": "Log Buffer Size",
10 "color": "FF7F00",10 "color": "FF7F00",
11 "type": "stack"11 "type": "stack"
12 },
13 {
14 "metric": "unflushed_log",
15 "label": "Unflushed Log Bytes",
16 "color": "E41A1C",
17 "type": "line",
18 "line_width": "2"
12 }19 }
13 ]20 ]
14}21}
1522
=== modified file 'graph.d/innodb_log_activity.json'
--- graph.d/innodb_log_activity.json 2011-07-22 02:16:54 +0000
+++ graph.d/innodb_log_activity.json 2011-07-25 22:42:07 +0000
@@ -17,13 +17,6 @@
17 "color": "AB4253",17 "color": "AB4253",
18 "type": "line",18 "type": "line",
19 "line_width": "2"19 "line_width": "2"
20 },
21 {
22 "metric": "unflushed_log",
23 "label": "Unflushed Log Bytes",
24 "color": "AFECED",
25 "type": "stack",
26 "line_width": "2"
27 }20 }
28 ]21 ]
29}22}
3023
=== modified file 'graph.d/innodb_transaction_activity.json'
--- graph.d/innodb_transaction_activity.json 2011-07-22 02:16:54 +0000
+++ graph.d/innodb_transaction_activity.json 2011-07-25 22:42:07 +0000
@@ -4,29 +4,26 @@
4 "title": "- InnoDB Transaction Activity @",4 "title": "- InnoDB Transaction Activity @",
5 "vertical_label": "Transactions",5 "vertical_label": "Transactions",
6 "series": [6 "series": [
7 {
8 "metric": "innodb_transactions",
9 "label": "Total Transactions (Internal Transaction Counter)",
10 "color": "8F005C",
11 "type": "stack"
12 },
13 { 7 {
14 "metric": "current_transactions",8 "metric": "current_transactions",
15 "label": "Current Transactions",9 "label": "Current Transactions",
16 "color": "4444FF",10 "color": "4444FF",
17 "type": "stack"11 "type": "line",
12 "line_width": "2"
18 },13 },
19 { 14 {
20 "metric": "history_list",15 "metric": "history_list",
21 "label": "History List",16 "label": "History List",
22 "color": "FF7D00",17 "color": "FF7D00",
23 "type": "stack"18 "type": "line",
19 "line_width": "2"
24 },20 },
25 { 21 {
26 "metric": "read_views",22 "metric": "read_views",
27 "label": "Read Views",23 "label": "Read Views",
28 "color": "74C366",24 "color": "74C366",
29 "type": "stack"25 "type": "line",
26 "line_width": "2"
30 }27 }
31 ]28 ]
32}29}
3330
=== modified file 'graph.d/innodb_transactions_report.json'
--- graph.d/innodb_transactions_report.json 2011-07-22 02:16:54 +0000
+++ graph.d/innodb_transactions_report.json 2011-07-25 22:42:07 +0000
@@ -10,27 +10,6 @@
10 "color": "8F005C",10 "color": "8F005C",
11 "type": "line",11 "type": "line",
12 "line_width": "2"12 "line_width": "2"
13 },
14 {
15 "metric": "current_transactions",
16 "label": "Current Transactions",
17 "color": "4444FF",
18 "type": "line",
19 "line_width": "2"
20 },
21 {
22 "metric": "history_list",
23 "label": "History List",
24 "color": "FF7D00",
25 "type": "line",
26 "line_width": "2"
27 },
28 {
29 "metric": "read_views",
30 "label": "Read Views",
31 "color": "74C366",
32 "type": "line",
33 "line_width": "2"
34 }13 }
35 ]14 ]
36}15}
3716
=== modified file 'graph.d/mysql_files_tables.json'
--- graph.d/mysql_files_tables.json 2011-07-22 02:16:54 +0000
+++ graph.d/mysql_files_tables.json 2011-07-25 22:42:07 +0000
@@ -5,6 +5,13 @@
5 "vertical_label": "Objects/sec",5 "vertical_label": "Objects/sec",
6 "series": [6 "series": [
7 {7 {
8 "metric": "table_cache",
9 "label": "Table Cache",
10 "color": "984EA3",
11 "type": "line",
12 "line_width": "2"
13 },
14 {
8 "metric": "Open_tables",15 "metric": "Open_tables",
9 "label": "Open Tables",16 "label": "Open Tables",
10 "color": "33A02C",17 "color": "33A02C",
1118
=== removed file 'graph.d/mysql_network_traffic.json'
--- graph.d/mysql_network_traffic.json 2011-07-22 02:16:54 +0000
+++ graph.d/mysql_network_traffic.json 1970-01-01 00:00:00 +0000
@@ -1,22 +0,0 @@
1{
2 "report_name": "mysql_network_traffic",
3 "report_type": "standard",
4 "title": "- MySQL Network Traffic @",
5 "vertical_label": "Bytes/sec",
6 "series": [
7 {
8 "metric": "Bytes_received",
9 "label": "In",
10 "color": "1F78B4",
11 "type": "line",
12 "line_width": "2"
13 },
14 {
15 "metric": "Bytes_sent",
16 "label": "Out",
17 "color": "33A02C",
18 "type": "line",
19 "line_width": "2"
20 }
21 ]
22}
230
=== modified file 'graph.d/mysql_replication.json'
--- graph.d/mysql_replication.json 2011-07-22 02:16:54 +0000
+++ graph.d/mysql_replication.json 2011-07-25 22:42:07 +0000
@@ -1,7 +1,7 @@
1{1{
2 "report_name": "mysql_replication",2 "report_name": "mysql_replication",
3 "report_type": "standard",3 "report_type": "standard",
4 "title": "- MySQL Replication @",4 "title": "- MySQL Replication Status @",
5 "vertical_label": "MISC",5 "vertical_label": "MISC",
6 "series": [6 "series": [
7 {7 {
88
=== added file 'graph.d/mysql_threads.json'
--- graph.d/mysql_threads.json 1970-01-01 00:00:00 +0000
+++ graph.d/mysql_threads.json 2011-07-25 22:42:07 +0000
@@ -0,0 +1,43 @@
1{
2 "report_name": "mysql_threads",
3 "report_type": "standard",
4 "title": "- MySQL Threads @",
5 "vertical_label": "Threads",
6 "series": [
7 {
8 "metric": "Threads_created",
9 "label": "Threads Created",
10 "color": "377EB8",
11 "type": "line",
12 "line_width": "2"
13 },
14 {
15 "metric": "Threads_cached",
16 "label": "Threads Cached",
17 "color": "4DAF4A",
18 "type": "line",
19 "line_width": "2"
20 },
21 {
22 "metric": "Threads_running",
23 "label": "Threads Running",
24 "color": "984EA3",
25 "type": "line",
26 "line_width": "2"
27 },
28 {
29 "metric": "thread_cache_size",
30 "label": "Thread Cache Size",
31 "color": "FF7F00",
32 "type": "line",
33 "line_width": "2"
34 },
35 {
36 "metric": "Slow_launch_threads",
37 "label": "Slow Launch Threads",
38 "color": "FFFF33",
39 "type": "line",
40 "line_width": "2"
41 }
42 ]
43}

Subscribers

People subscribed via source and target branches