3 * @defgroup StatCounter StatCounter
5 * StatCounter is used to increment arbitrary keys for profiling reasons.
6 * The key/values are persisted in several possible ways (see $wgStatsMethod).
10 * Aggregator for wfIncrStats() that batches updates per request.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * http://www.gnu.org/copyleft/gpl.html
28 * @ingroup StatCounter
29 * @author Aaron Schulz
33 * Aggregator for wfIncrStats() that batches updates per request.
34 * This avoids spamming the collector many times for the same key.
36 * @ingroup StatCounter
40 protected $deltas = array(); // (key => count)
45 protected function __construct( Config
$config ) {
46 $this->config
= $config;
52 public static function singleton() {
53 static $instance = null;
56 ConfigFactory
::getDefaultInstance()->makeConfig( 'main' )
63 * Increment a key by delta $count
69 public function incr( $key, $count = 1 ) {
70 $this->deltas
[$key] = isset( $this->deltas
[$key] ) ?
$this->deltas
[$key] : 0;
71 $this->deltas
[$key] +
= $count;
72 if ( PHP_SAPI
=== 'cli' ) {
78 * Flush all pending deltas to persistent storage
82 public function flush() {
83 $statsMethod = $this->config
->get( 'StatsMethod' );
84 $deltas = array_filter( $this->deltas
); // remove 0 valued entries
85 if ( $statsMethod === 'udp' ) {
86 $this->sendDeltasUDP( $deltas );
87 } elseif ( $statsMethod === 'cache' ) {
88 $this->sendDeltasMemc( $deltas );
92 $this->deltas
= array();
96 * @param array $deltas
99 protected function sendDeltasUDP( array $deltas ) {
100 $aggregateStatsID = $this->config
->get( 'AggregateStatsID' );
101 $id = strlen( $aggregateStatsID ) ?
$aggregateStatsID : wfWikiID();
104 foreach ( $deltas as $key => $count ) {
105 $lines[] = sprintf( $this->config
->get( 'StatsFormatString' ), $id, $count, $key );
108 if ( count( $lines ) ) {
109 static $socket = null;
111 $socket = socket_create( AF_INET
, SOCK_DGRAM
, SOL_UDP
);
115 foreach ( $lines as $line ) {
116 if ( ( strlen( $packet ) +
strlen( $line ) ) > 1450 ) {
117 $packets[] = $packet;
122 if ( $packet != '' ) {
123 $packets[] = $packet;
125 foreach ( $packets as $packet ) {
126 wfSuppressWarnings();
132 $this->config
->get( 'UDPProfilerHost' ),
133 $this->config
->get( 'UDPProfilerPort' )
141 * @param array $deltas
144 protected function sendDeltasMemc( array $deltas ) {
147 foreach ( $deltas as $key => $count ) {
148 $ckey = wfMemcKey( 'stats', $key );
149 if ( $wgMemc->incr( $ckey, $count ) === null ) {
150 $wgMemc->add( $ckey, $count );