Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 10 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
StatsdFormatter | |
0.00% |
0 / 10 |
|
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 1 |
getFormattedSamples | |
0.00% |
0 / 10 |
|
0.00% |
0 / 1 |
20 |
1 | <?php |
2 | /** |
3 | * This program is free software; you can redistribute it and/or modify |
4 | * it under the terms of the GNU General Public License as published by |
5 | * the Free Software Foundation; either version 2 of the License, or |
6 | * (at your option) any later version. |
7 | * |
8 | * This program is distributed in the hope that it will be useful, |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 | * GNU General Public License for more details. |
12 | * |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
16 | * http://www.gnu.org/copyleft/gpl.html |
17 | * @file |
18 | */ |
19 | |
20 | declare( strict_types=1 ); |
21 | |
22 | namespace Wikimedia\Stats\Formatters; |
23 | |
24 | use Wikimedia\Stats\Metrics\MetricInterface; |
25 | |
26 | /** |
27 | * StatsD Wire Format Implementation |
28 | * |
29 | * @author Cole White |
30 | * @since 1.41 |
31 | */ |
32 | class StatsdFormatter implements FormatterInterface { |
33 | /** @inheritDoc */ |
34 | public function getFormattedSamples( string $prefix, MetricInterface $metric ): array { |
35 | $output = []; |
36 | |
37 | // append component to prefix if set |
38 | if ( $metric->getComponent() !== '' ) { |
39 | $prefix .= ".{$metric->getComponent()}"; |
40 | } |
41 | |
42 | foreach ( $metric->getSamples() as $sample ) { |
43 | // dot-separate prefix, component, name, and label values `prefix.component.name.value1.value2` |
44 | $stat = implode( '.', array_merge( [ $prefix, $metric->getName() ], $sample->getLabelValues() ) ); |
45 | |
46 | // merge value with separator `:42` |
47 | $value = ':' . $sample->getValue(); |
48 | |
49 | // merge type indicator with separator `|c` |
50 | $type = '|' . $metric->getTypeIndicator(); |
51 | |
52 | // blank string if samplerate is 1.0, otherwise add samplerate indicator `|@0.5` |
53 | $sampleRate = $metric->getSampleRate() !== 1.0 ? '|@' . $metric->getSampleRate() : ''; |
54 | |
55 | // combine and append to output `prefix.component.name.value1.value2:42|c|@0.5` |
56 | $output[] = $stat . $value . $type . $sampleRate; |
57 | } |
58 | return $output; |
59 | } |
60 | } |