| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2011, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Check DB queries for filesorts and such and log em. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package SQLStatsPlugin | 
					
						
							| 
									
										
										
										
											2011-04-07 12:21:43 +02:00
										 |  |  |  * @maintainer Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | class SQLStatsPlugin extends Plugin | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     protected $queryCount = 0; | 
					
						
							|  |  |  |     protected $queryStart = 0; | 
					
						
							|  |  |  |     protected $queryTimes = array(); | 
					
						
							|  |  |  |     protected $queries    = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 22:04:01 +02:00
										 |  |  |     function onPluginVersion(array &$versions) | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $versions[] = array('name' => 'SQLStats', | 
					
						
							| 
									
										
										
										
											2013-11-01 13:51:41 +01:00
										 |  |  |                             'version' => GNUSOCIAL_VERSION, | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |                             'author' => 'Evan Prodromou', | 
					
						
							| 
									
										
										
										
											2016-01-22 16:38:42 +00:00
										 |  |  |                             'homepage' => 'https://git.gnu.io/gnu/gnu-social/tree/master/plugins/SQLStats', | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |                             'rawdescription' => | 
					
						
							| 
									
										
										
										
											2011-04-07 12:21:43 +02:00
										 |  |  |                             // TRANS: Plugin decription.
 | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |                             _m('Debug tool to watch for poorly indexed DB queries.')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function onStartDBQuery($obj, $query, &$result) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->queryStart = microtime(true); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function onEndDBQuery($obj, $query, &$result) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $endTime = microtime(true); | 
					
						
							|  |  |  |         $this->queryTimes[] = round(($endTime - $this->queryStart) * 1000); | 
					
						
							|  |  |  |         $this->queries[] = trim(preg_replace('/\s/', ' ', $query)); | 
					
						
							|  |  |  |         $this->queryStart = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function cleanup() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-04-10 18:32:09 -04:00
										 |  |  |         if (count($this->queryTimes) == 0) { | 
					
						
							|  |  |  |             $this->log(LOG_INFO, sprintf('0 queries this hit.')); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->log(LOG_INFO, sprintf('%d queries this hit (total = %d, avg = %d, max = %d, min = %d)', | 
					
						
							|  |  |  |                                          count($this->queryTimes), | 
					
						
							|  |  |  |                                          array_sum($this->queryTimes), | 
					
						
							|  |  |  |                                          array_sum($this->queryTimes)/count($this->queryTimes), | 
					
						
							|  |  |  |                                          max($this->queryTimes), | 
					
						
							|  |  |  |                                          min($this->queryTimes))); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $verbose = common_config('sqlstats', 'verbose'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($verbose) { | 
					
						
							|  |  |  |             foreach ($this->queries as $query) { | 
					
						
							|  |  |  |                 $this->log(LOG_INFO, $query); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |