summaryrefslogtreecommitdiff
path: root/vendor/liuggio/statsd-php-client/src/Liuggio/StatsdClient/Service/StatsdService.php
blob: 061e35101c452aee41d0b55010a53dfcc0c5ea71 (plain)
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
<?php

namespace Liuggio\StatsdClient\Service;

use Liuggio\StatsdClient\Entity\StatsdDataInterface;
use Liuggio\StatsdClient\Factory\StatsdDataFactory;
use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
use Liuggio\StatsdClient\StatsdClient;
use Liuggio\StatsdClient\Entity\StatsdData;

/**
 * Simplifies access to StatsD client and factory, buffers all data.
 */
class StatsdService implements StatsdDataFactoryInterface
{
    /**
     * @var \Liuggio\StatsdClient\StatsdClient
     */
    protected $client;

    /**
     * @var \Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface
     */
    protected $factory;

    /**
     * @var StatsdData[]
     */
    protected $buffer = array();

    /**
     * @var float
     */
    protected $samplingRate;

    private $samplingFunction;

    /**
     * @param StatsdClient               $client
     * @param StatsdDataFactoryInterface $factory
     * @param float                      $samplingRate see setSamplingRate
     */
    public function __construct(
        StatsdClient $client,
        StatsdDataFactoryInterface $factory = null,
        $samplingRate = 1
    ) {
        $this->client = $client;
        if (is_null($factory)) {
            $factory = new StatsdDataFactory();
        }
        $this->factory = $factory;
        $this->setSamplingRate($samplingRate);
    }

    /**
     * Actually defines the sampling rate used by the service.
     * If set to 0.1, the service will automatically discard 10%
     * of the incoming metrics. It will also automatically flag these
     * as sampled data to statsd.
     *
     * @param float $samplingRate
     */
    public function setSamplingRate($samplingRate)
    {
        if ($samplingRate <= 0.0 || 1.0 < $samplingRate) {
            throw new \LogicException('Sampling rate shall be within ]0, 1]');
        }
        $this->samplingRate = $samplingRate;
        $this->samplingFunction = function($min, $max){
            return rand($min, $max);
        };
    }

    /**
     * @return float
     */
    public function getSamplingRate()
    {
        return $this->samplingRate;
    }

    /**
     * {@inheritdoc}
     */
    public function timing($key, $time)
    {
        $this->appendToBuffer(
            $this->factory->timing($key, $time)
        );

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    public function gauge($key, $value)
    {
        $this->appendToBuffer(
            $this->factory->gauge($key, $value)
        );

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    public function set($key, $value)
    {
        $this->appendToBuffer(
            $this->factory->set($key, $value)
        );

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    public function increment($key)
    {
        $this->appendToBuffer(
            $this->factory->increment($key)
        );

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    public function decrement($key)
    {
        $this->appendToBuffer(
            $this->factory->decrement($key)
        );

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    public function updateCount($key, $delta)
    {
        $this->appendToBuffer(
            $this->factory->updateCount($key, $delta)
        );

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    public function produceStatsdData($key, $value = 1, $metric = StatsdDataInterface::STATSD_METRIC_COUNT)
    {
        throw new \BadFunctionCallException('produceStatsdData is not implemented');
    }

    /**
     * @param callable $samplingFunction rand() function by default.
     */
    public function setSamplingFunction(\Closure $samplingFunction)
    {
        $this->samplingFunction = $samplingFunction;
    }

    private function appendToBuffer(StatsdData $data)
    {
        if($this->samplingRate < 1){
            $data->setSampleRate($this->samplingRate);
            $result = call_user_func($this->samplingFunction, 0 , floor(1 / $this->samplingRate));
            if ($result == 0) {
                array_push($this->buffer, $data);
            };
        } else {
            array_push($this->buffer, $data);
        }
    }

    /**
     * Send all buffered data to statsd.
     *
     * @return $this
     */
    public function flush()
    {
        $this->client->send($this->buffer);
        $this->buffer = array();

        return $this;
    }
}