perf-mysql.inc.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. Released under both BSD license and Lesser GPL library license.
  5. Whenever there is any discrepancy between the two licenses,
  6. the BSD license will take precedence. See License.txt.
  7. Set tabs to 4 for best viewing.
  8. Latest version is available at http://adodb.sourceforge.net
  9. Library for basic performance monitoring and tuning
  10. */
  11. // security - hide paths
  12. if (!defined('ADODB_DIR')) die();
  13. class perf_mysql extends adodb_perf{
  14. var $tablesSQL = 'show table status';
  15. var $createTableSQL = "CREATE TABLE adodb_logsql (
  16. created datetime NOT NULL,
  17. sql0 varchar(250) NOT NULL,
  18. sql1 text NOT NULL,
  19. params text NOT NULL,
  20. tracer text NOT NULL,
  21. timer decimal(16,6) NOT NULL
  22. )";
  23. var $settings = array(
  24. 'Ratios',
  25. 'MyISAM cache hit ratio' => array('RATIO',
  26. '=GetKeyHitRatio',
  27. '=WarnCacheRatio'),
  28. 'InnoDB cache hit ratio' => array('RATIO',
  29. '=GetInnoDBHitRatio',
  30. '=WarnCacheRatio'),
  31. 'data cache hit ratio' => array('HIDE', # only if called
  32. '=FindDBHitRatio',
  33. '=WarnCacheRatio'),
  34. 'sql cache hit ratio' => array('RATIO',
  35. '=GetQHitRatio',
  36. ''),
  37. 'IO',
  38. 'data reads' => array('IO',
  39. '=GetReads',
  40. 'Number of selects (Key_reads is not accurate)'),
  41. 'data writes' => array('IO',
  42. '=GetWrites',
  43. 'Number of inserts/updates/deletes * coef (Key_writes is not accurate)'),
  44. 'Data Cache',
  45. 'MyISAM data cache size' => array('DATAC',
  46. array("show variables", 'key_buffer_size'),
  47. '' ),
  48. 'BDB data cache size' => array('DATAC',
  49. array("show variables", 'bdb_cache_size'),
  50. '' ),
  51. 'InnoDB data cache size' => array('DATAC',
  52. array("show variables", 'innodb_buffer_pool_size'),
  53. '' ),
  54. 'Memory Usage',
  55. 'read buffer size' => array('CACHE',
  56. array("show variables", 'read_buffer_size'),
  57. '(per session)'),
  58. 'sort buffer size' => array('CACHE',
  59. array("show variables", 'sort_buffer_size'),
  60. 'Size of sort buffer (per session)' ),
  61. 'table cache' => array('CACHE',
  62. array("show variables", 'table_cache'),
  63. 'Number of tables to keep open'),
  64. 'Connections',
  65. 'current connections' => array('SESS',
  66. array('show status','Threads_connected'),
  67. ''),
  68. 'max connections' => array( 'SESS',
  69. array("show variables",'max_connections'),
  70. ''),
  71. false
  72. );
  73. function perf_mysql(&$conn)
  74. {
  75. $this->conn =& $conn;
  76. }
  77. function Explain($sql,$partial=false)
  78. {
  79. if (strtoupper(substr(trim($sql),0,6)) !== 'SELECT') return '<p>Unable to EXPLAIN non-select statement</p>';
  80. $save = $this->conn->LogSQL(false);
  81. if ($partial) {
  82. $sqlq = $this->conn->qstr($sql.'%');
  83. $arr = $this->conn->GetArray("select distinct sql1 from adodb_logsql where sql1 like $sqlq");
  84. if ($arr) {
  85. foreach($arr as $row) {
  86. $sql = reset($row);
  87. if (crc32($sql) == $partial) break;
  88. }
  89. }
  90. }
  91. $sql = str_replace('?',"''",$sql);
  92. if ($partial) {
  93. $sqlq = $this->conn->qstr($sql.'%');
  94. $sql = $this->conn->GetOne("select sql1 from adodb_logsql where sql1 like $sqlq");
  95. }
  96. $s = '<p><b>Explain</b>: '.htmlspecialchars($sql).'</p>';
  97. $rs = $this->conn->Execute('EXPLAIN '.$sql);
  98. $s .= rs2html($rs,false,false,false,false);
  99. $this->conn->LogSQL($save);
  100. $s .= $this->Tracer($sql);
  101. return $s;
  102. }
  103. function Tables()
  104. {
  105. if (!$this->tablesSQL) return false;
  106. $rs = $this->conn->Execute($this->tablesSQL);
  107. if (!$rs) return false;
  108. $html = rs2html($rs,false,false,false,false);
  109. return $html;
  110. }
  111. function GetReads()
  112. {
  113. global $ADODB_FETCH_MODE;
  114. $save = $ADODB_FETCH_MODE;
  115. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  116. $rs = $this->conn->Execute('show status');
  117. $ADODB_FETCH_MODE = $save;
  118. if (!$rs) return 0;
  119. $val = 0;
  120. while (!$rs->EOF) {
  121. switch($rs->fields[0]) {
  122. case 'Com_select':
  123. $val = $rs->fields[1];
  124. $rs->Close();
  125. return $val;
  126. }
  127. $rs->MoveNext();
  128. }
  129. $rs->Close();
  130. return $val;
  131. }
  132. function GetWrites()
  133. {
  134. global $ADODB_FETCH_MODE;
  135. $save = $ADODB_FETCH_MODE;
  136. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  137. $rs = $this->conn->Execute('show status');
  138. $ADODB_FETCH_MODE = $save;
  139. if (!$rs) return 0;
  140. $val = 0.0;
  141. while (!$rs->EOF) {
  142. switch($rs->fields[0]) {
  143. case 'Com_insert':
  144. $val += $rs->fields[1]; break;
  145. case 'Com_delete':
  146. $val += $rs->fields[1]; break;
  147. case 'Com_update':
  148. $val += $rs->fields[1]/2;
  149. $rs->Close();
  150. return $val;
  151. }
  152. $rs->MoveNext();
  153. }
  154. $rs->Close();
  155. return $val;
  156. }
  157. function FindDBHitRatio()
  158. {
  159. // first find out type of table
  160. //$this->conn->debug=1;
  161. $rs = $this->conn->Execute('show table status');
  162. if (!$rs) return '';
  163. $type = strtoupper($rs->fields[1]);
  164. $rs->Close();
  165. switch($type){
  166. case 'MYISAM':
  167. case 'ISAM':
  168. return $this->DBParameter('MyISAM cache hit ratio').' (MyISAM)';
  169. case 'INNODB':
  170. return $this->DBParameter('InnoDB cache hit ratio').' (InnoDB)';
  171. default:
  172. return $type.' not supported';
  173. }
  174. }
  175. function GetQHitRatio()
  176. {
  177. //Total number of queries = Qcache_inserts + Qcache_hits + Qcache_not_cached
  178. $hits = $this->_DBParameter(array("show status","Qcache_hits"));
  179. $total = $this->_DBParameter(array("show status","Qcache_inserts"));
  180. $total += $this->_DBParameter(array("show status","Qcache_not_cached"));
  181. $total += $hits;
  182. if ($total) return ($hits*100)/$total;
  183. return 0;
  184. }
  185. /*
  186. Use session variable to store Hit percentage, because MySQL
  187. does not remember last value of SHOW INNODB STATUS hit ratio
  188. # 1st query to SHOW INNODB STATUS
  189. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  190. Buffer pool hit rate 1000 / 1000
  191. # 2nd query to SHOW INNODB STATUS
  192. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  193. No buffer pool activity since the last printout
  194. */
  195. function GetInnoDBHitRatio()
  196. {
  197. global $HTTP_SESSION_VARS;
  198. $rs = $this->conn->Execute('show innodb status');
  199. if (!$rs || $rs->EOF) return 0;
  200. $stat = $rs->fields[0];
  201. $rs->Close();
  202. $at = strpos($stat,'Buffer pool hit rate');
  203. $stat = substr($stat,$at,200);
  204. if (preg_match('!Buffer pool hit rate\s*([0-9]*) / ([0-9]*)!',$stat,$arr)) {
  205. $val = 100*$arr[1]/$arr[2];
  206. $HTTP_SESSION_VARS['INNODB_HIT_PCT'] = $val;
  207. return $val;
  208. } else {
  209. if (isset($HTTP_SESSION_VARS['INNODB_HIT_PCT'])) return $HTTP_SESSION_VARS['INNODB_HIT_PCT'];
  210. return 0;
  211. }
  212. return 0;
  213. }
  214. function GetKeyHitRatio()
  215. {
  216. $hits = $this->_DBParameter(array("show status","Key_read_requests"));
  217. $reqs = $this->_DBParameter(array("show status","Key_reads"));
  218. if ($reqs == 0) return 0;
  219. return ($hits/($reqs+$hits))*100;
  220. }
  221. }
  222. ?>