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
32 * Aggregator for wfIncrStats() that batches updates per request.
33 * This avoids spamming the collector many times for the same key.
35 * @ingroup StatCounter
39 protected $deltas = array(); // (key => count)
41 protected function __construct() {}
46 public static function singleton() {
47 static $instance = null;
49 $instance = new self();
55 * Increment a key by delta $count
58 * @param integer $count
61 public function incr( $key, $count = 1 ) {
62 $this->deltas
[$key] = isset( $this->deltas
[$key] ) ?
$this->deltas
[$key] : 0;
63 $this->deltas
[$key] +
= $count;
64 if ( PHP_SAPI
=== 'cli' ) {
70 * Flush all pending deltas to persistent storage
74 public function flush() {
75 global $wgStatsMethod;
77 $deltas = array_filter( $this->deltas
); // remove 0 valued entries
78 if ( $wgStatsMethod === 'udp' ) {
79 $this->sendDeltasUDP( $deltas );
80 } elseif ( $wgStatsMethod === 'cache' ) {
81 $this->sendDeltasMemc( $deltas );
85 $this->deltas
= array();
88 protected function sendDeltasUDP( array $deltas ) {
89 global $wgUDPProfilerHost, $wgUDPProfilerPort, $wgAggregateStatsID;
91 $id = strlen( $wgAggregateStatsID ) ?
$wgAggregateStatsID : wfWikiID();
94 foreach ( $deltas as $key => $count ) {
95 $lines[] = "stats/{$id} - {$count} 1 1 1 1 {$key}\n";
98 if ( count( $lines ) ) {
99 static $socket = null;
101 $socket = socket_create( AF_INET
, SOCK_DGRAM
, SOL_UDP
);
102 array_unshift( $lines, "stats/{$id} - 1 1 1 1 1 -total\n" );
106 foreach ( $lines as $line ) {
107 if ( ( strlen( $packet ) +
strlen( $line ) ) > 1450 ) {
108 $packets[] = $packet;
113 if ( $packet != '' ) {
114 $packets[] = $packet;
116 foreach ( $packets as $packet ) {
117 wfSuppressWarnings();
131 protected function sendDeltasMemc( array $deltas ) {
134 foreach ( $deltas as $key => $count ) {
135 $ckey = wfMemcKey( 'stats', $key );
136 if ( $wgMemc->incr( $ckey, $count ) === null ) {
137 $wgMemc->add( $ckey, $count );