3 * Profiler sending messages over UDP.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * ProfilerSimpleUDP class, that sends out messages for 'udpprofile' daemon
26 * (see http://git.wikimedia.org/tree/operations%2Fsoftware.git/master/udpprofile)
31 class ProfilerOutputUdp
extends ProfilerOutput
{
32 /** @var int port to send profiling data to */
35 /** @var string host to send profiling data to */
36 private $host = '127.0.0.1';
38 /** @var string format string for profiling data */
39 private $format = "%s - %d %f %f %f %f %s\n";
41 public function __construct( Profiler
$collector, array $params ) {
42 parent
::__construct( $collector, $params );
43 global $wgUDPProfilerPort, $wgUDPProfilerHost, $wgUDPProfilerFormatString;
45 // Initialize port, host, and format from config, back-compat if available
46 if ( isset( $this->params
['udpport'] ) ) {
47 $this->port
= $this->params
['udpport'];
48 } elseif ( $wgUDPProfilerPort ) {
49 $this->port
= $wgUDPProfilerPort;
52 if ( isset( $this->params
['udphost'] ) ) {
53 $this->host
= $this->params
['udphost'];
54 } elseif ( $wgUDPProfilerHost ) {
55 $this->host
= $wgUDPProfilerHost;
58 if ( isset( $this->params
['udpformat'] ) ) {
59 $this->format
= $this->params
['udpformat'];
60 } elseif ( $wgUDPProfilerFormatString ) {
61 $this->format
= $wgUDPProfilerFormatString;
65 public function canUse() {
66 # Sockets are not enabled
67 return function_exists( 'socket_create' );
70 public function log( array $stats ) {
71 $sock = socket_create( AF_INET
, SOCK_DGRAM
, SOL_UDP
);
74 foreach ( $stats as $pfdata ) {
75 $pfline = sprintf( $this->format
,
76 $this->collector
->getProfileID(),
78 $pfdata['cpu'] / 1000, // ms => sec
79 0.0, // sum of CPU^2 for each invocation (unused)
80 $pfdata['real'] / 1000, // ms => sec
81 0.0, // sum of real^2 for each invocation (unused)
85 $length = strlen( $pfline );
86 if ( $length +
$plength > 1400 ) {
87 socket_sendto( $sock, $packet, $plength, 0, $this->host
, $this->port
);
94 socket_sendto( $sock, $packet, $plength, 0x100, $this->host
, $this->port
);