-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfluxStatsdClient.php
148 lines (115 loc) · 3.59 KB
/
InfluxStatsdClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
class InfluxStatsdClient {
private $host;
private $port;
private $mtu;
private $data;
private $tags;
// --------------------------------------------------------------------
// CONSTRUCTION
public function __construct ($host = 'localhost', $port = '8125', $mtu = null) {
$this->host = $host;
$this->port = $port;
$this->mtu = $mtu;
$this->data = array();
}
public function setGlobalTags ($tags) {
$this->tags = $tags;
}
// --------------------------------------------------------------------
// POINT COLLECTION
/**
* Records a value, generally a time duration.
* Stores its statistical distribution as well as its mean.
*/
public function timing ($variable, $time, $tags = array()) {
$this->data[] = sprintf('%s%s:%s|ms', $variable, $this->buildTagString(array_merge($this->tags, $tags)), $time);
}
/**
* Increments a counter.
*/
public function increment ($variable, $tags = array()) {
$this->data[] = $variable.$this->buildTagString(array_merge($this->tags, $tags)).':1|c';
}
/**
* Decrements a counter.
*/
public function decrement ($variable, $tags = array()) {
$this->data[] = $variable.$this->buildTagString(array_merge($this->tags, $tags)).':-1|c';
}
/**
* Add value to a counter.
*/
public function measure ($variable, $value, $tags = array()) {
$this->data[] = sprintf('%s%s:%s|c', $variable, $this->buildTagString(array_merge($this->tags, $tags)), $value);
}
/**
* Record a sample value into a gauge.
* A gauge is stores relative amounts, whereas a counter stores absolute amounts.
*/
public function gauge ($variable, $value, $tags = array()) {
$this->data[] = sprintf('%s%s:%s|g', $variable, $this->buildTagString(array_merge($this->tags, $tags)), $value);
}
/**
* Record an integer index.
* Stores number of unique indexes.
*/
public function set ($variable, $value, $tags = array()) {
$this->data[] = sprintf('%s%s:%s|s', $variable, $this->buildTagString(array_merge($this->tags, $tags)), $value);
}
// --------------------------------------------------------------------
// FLUSHING
public function flush () {
if (!$this->data) {
return;
}
$fp = fsockopen('udp://'.$this->host, $this->port, $errno, $errstr, 1.0);
if (!$fp) {
return;
}
if (empty($this->mtu)) {
$this->sendMetricsUnitarily($fp);
} else {
$this->sendMetricsInBatches($fp);
}
fclose($fp);
$this->data = array();
}
// --------------------------------------------------------------------
// HELPERS
protected function buildTagString ($tags) {
$tagString = http_build_query($tags, '', ',');
$tagString = (strlen($tagString) > 0 ? ','.$tagString : $tagString);
return $tagString;
}
protected function buildUdpPacket ($packet, $metric) {
if (empty($packet))
return $metric;
else
return $packet . "\n" . $metric;
}
protected function sendMetricsUnitarily ($fp) {
$level = error_reporting(0);
foreach ($this->data as $line) {
fwrite($fp, $line);
}
error_reporting($level);
}
protected function sendMetricsInBatches ($fp) {
$packet = '';
$level = error_reporting(0);
foreach ($this->data as $line) {
$potentialPacket = $this->buildUdpPacket($packet, $line);
if (strlen($potentialPacket) > $this->mtu) {
fwrite($fp, $packet);
$packet = $this->buildUdpPacket('', $line);
} else {
$packet = $potentialPacket;
}
}
if (! empty($packet)) {
fwrite($fp, $packet);
}
error_reporting($level);
}
}