This repository was archived by the owner on Oct 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathAPC.php
More file actions
300 lines (268 loc) · 9.86 KB
/
APC.php
File metadata and controls
300 lines (268 loc) · 9.86 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<?php
namespace Prometheus\Storage;
use Prometheus\MetricFamilySamples;
class APC implements Adapter
{
const PROMETHEUS_PREFIX = 'prom';
/**
* @return boolean
*/
public function initialized()
{
return !apc_add(self::PROMETHEUS_PREFIX . ":initialized", true);
}
/**
* @return MetricFamilySamples[]
*/
public function collect()
{
$metrics = $this->collectHistograms();
$metrics = array_merge($metrics, $this->collectGauges());
$metrics = array_merge($metrics, $this->collectCounters());
return $metrics;
}
public function updateHistogram(array $data)
{
// Initialize the sum
$sumKey = $this->histogramBucketValueKey($data, 'sum');
$new = apc_add($sumKey, $this->toInteger(0));
// If sum does not exist, assume a new histogram and store the metadata
if ($new) {
apc_store($this->metaKey($data), json_encode($this->metaData($data)));
}
// Atomically increment the sum
// Taken from https://github.com/prometheus/client_golang/blob/66058aac3a83021948e5fb12f1f408ff556b9037/prometheus/value.go#L91
$done = false;
while (!$done) {
$old = apc_fetch($sumKey);
$done = apc_cas($sumKey, $old, $this->toInteger($this->fromInteger($old) + $data['value']));
}
// Figure out in which bucket the observation belongs
$bucketToIncrease = '+Inf';
foreach ($data['buckets'] as $bucket) {
if ($data['value'] <= $bucket) {
$bucketToIncrease = $bucket;
break;
}
}
// Initialize and increment the bucket
apc_add($this->histogramBucketValueKey($data, $bucketToIncrease), 0);
apc_inc($this->histogramBucketValueKey($data, $bucketToIncrease));
}
public function updateGauge(array $data)
{
$valueKey = $this->valueKey($data);
if ($data['command'] == Adapter::COMMAND_SET) {
apc_store($valueKey, $this->toInteger($data['value']));
apc_store($this->metaKey($data), json_encode($this->metaData($data)));
} else {
$new = apc_add($valueKey, $this->toInteger(0));
if ($new) {
apc_store($this->metaKey($data), json_encode($this->metaData($data)));
}
// Taken from https://github.com/prometheus/client_golang/blob/66058aac3a83021948e5fb12f1f408ff556b9037/prometheus/value.go#L91
$done = false;
while (!$done) {
$old = apc_fetch($valueKey);
$done = apc_cas($valueKey, $old, $this->toInteger($this->fromInteger($old) + $data['value']));
}
}
}
public function updateCounter(array $data)
{
$new = apc_add($this->valueKey($data), 0);
if ($new) {
apc_store($this->metaKey($data), json_encode($this->metaData($data)));
}
apc_inc($this->valueKey($data), $data['value']);
}
public function flushAPC()
{
apc_clear_cache('user');
}
/**
* @param array $data
* @return string
*/
private function metaKey(array $data)
{
return implode(':', array(self::PROMETHEUS_PREFIX, $data['type'], $data['name'], 'meta'));
}
/**
* @param array $data
* @return string
*/
private function valueKey(array $data)
{
return implode(':', array(self::PROMETHEUS_PREFIX, $data['type'], $data['name'], json_encode($data['labelValues']), 'value'));
}
/**
* @param array $data
* @return string
*/
private function histogramBucketValueKey(array $data, $bucket)
{
return implode(':', array(self::PROMETHEUS_PREFIX, $data['type'], $data['name'], json_encode($data['labelValues']), $bucket, 'value'));
}
/**
* @param array $data
* @return array
*/
private function metaData(array $data)
{
$metricsMetaData = $data;
unset($metricsMetaData['value']);
unset($metricsMetaData['command']);
unset($metricsMetaData['labelValues']);
return $metricsMetaData;
}
/**
* @return array
*/
private function collectCounters()
{
$counters = array();
foreach (new \APCIterator('user', '/^prom:counter:.*:meta/') as $counter) {
$metaData = json_decode($counter['value'], true);
$data = array(
'name' => $metaData['name'],
'help' => $metaData['help'],
'type' => $metaData['type'],
'labelNames' => $metaData['labelNames'],
);
foreach (new \APCIterator('user', '/^prom:counter:' . $metaData['name'] . ':.*:value/') as $value) {
$parts = explode(':', $value['key']);
$labelValues = $parts[3];
$data['samples'][] = array(
'name' => $metaData['name'],
'labelNames' => array(),
'labelValues' => json_decode($labelValues),
'value' => $value['value']
);
}
$this->sortSamples($data['samples']);
$counters[] = new MetricFamilySamples($data);
}
return $counters;
}
/**
* @return array
*/
private function collectGauges()
{
$gauges = array();
foreach (new \APCIterator('user', '/^prom:gauge:.*:meta/') as $gauge) {
$metaData = json_decode($gauge['value'], true);
$data = array(
'name' => $metaData['name'],
'help' => $metaData['help'],
'type' => $metaData['type'],
'labelNames' => $metaData['labelNames'],
);
foreach (new \APCIterator('user', '/^prom:gauge:' . $metaData['name'] . ':.*:value/') as $value) {
$parts = explode(':', $value['key']);
$labelValues = $parts[3];
$data['samples'][] = array(
'name' => $metaData['name'],
'labelNames' => array(),
'labelValues' => json_decode($labelValues),
'value' => $this->fromInteger($value['value'])
);
}
$this->sortSamples($data['samples']);
$gauges[] = new MetricFamilySamples($data);
}
return $gauges;
}
/**
* @return array
*/
private function collectHistograms()
{
$histograms = array();
foreach (new \APCIterator('user', '/^prom:histogram:.*:meta/') as $histogram) {
$metaData = json_decode($histogram['value'], true);
$data = array(
'name' => $metaData['name'],
'help' => $metaData['help'],
'type' => $metaData['type'],
'labelNames' => $metaData['labelNames'],
'buckets' => $metaData['buckets']
);
// Add the Inf bucket so we can compute it later on
$data['buckets'][] = '+Inf';
$histogramBuckets = array();
foreach (new \APCIterator('user', '/^prom:histogram:' . $metaData['name'] . ':.*:value/') as $value) {
$parts = explode(':', $value['key']);
$labelValues = $parts[3];
$bucket = $parts[4];
// Key by labelValues
$histogramBuckets[$labelValues][$bucket] = $value['value'];
}
// Compute all buckets
$labels = array_keys($histogramBuckets);
sort($labels);
foreach ($labels as $labelValues) {
$acc = 0;
$decodedLabelValues = json_decode($labelValues);
foreach ($data['buckets'] as $bucket) {
$bucket = (string) $bucket;
if (!isset($histogramBuckets[$labelValues][$bucket])) {
$data['samples'][] = array(
'name' => $metaData['name'] . '_bucket',
'labelNames' => array('le'),
'labelValues' => array_merge($decodedLabelValues, array($bucket)),
'value' => $acc
);
} else {
$acc += $histogramBuckets[$labelValues][$bucket];
$data['samples'][] = array(
'name' => $metaData['name'] . '_' . 'bucket',
'labelNames' => array('le'),
'labelValues' => array_merge($decodedLabelValues, array($bucket)),
'value' => $acc
);
}
}
// Add the count
$data['samples'][] = array(
'name' => $metaData['name'] . '_count',
'labelNames' => array(),
'labelValues' => $decodedLabelValues,
'value' => $acc
);
// Add the sum
$data['samples'][] = array(
'name' => $metaData['name'] . '_sum',
'labelNames' => array(),
'labelValues' => $decodedLabelValues,
'value' => $this->fromInteger($histogramBuckets[$labelValues]['sum'])
);
}
$histograms[] = new MetricFamilySamples($data);
}
return $histograms;
}
/**
* @param mixed $val
* @return int
*/
private function toInteger($val)
{
return unpack('Q', pack('d', $val))[1];
}
/**
* @param mixed $val
* @return int
*/
private function fromInteger($val)
{
return unpack('d', pack('Q', $val))[1];
}
private function sortSamples(array &$samples)
{
usort($samples, function($a, $b){
return strcmp(implode("", $a['labelValues']), implode("", $b['labelValues']));
});
}
}