-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractProfiler.php
More file actions
193 lines (158 loc) · 5.05 KB
/
AbstractProfiler.php
File metadata and controls
193 lines (158 loc) · 5.05 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
<?php
declare(strict_types=1);
namespace Perfbase\Symfony\Profiling;
use Perfbase\Symfony\Support\PerfbaseClientProvider;
use Perfbase\Symfony\Support\PerfbaseErrorHandler;
use Perfbase\SDK\Perfbase;
use Perfbase\SDK\SubmitResult;
abstract class AbstractProfiler
{
protected PerfbaseClientProvider $clientProvider;
protected PerfbaseErrorHandler $errorHandler;
/** @var array<string, mixed> */
protected array $config;
/** @var array<string, string> */
protected array $attributes = [];
protected string $environment;
protected string $appVersion;
protected string $spanName;
private ?Perfbase $client = null;
private bool $started = false;
/**
* @param array<string, mixed> $config
*/
public function __construct(
string $spanName,
PerfbaseClientProvider $clientProvider,
PerfbaseErrorHandler $errorHandler,
array $config,
string $environment,
string $appVersion
) {
$this->spanName = $spanName;
$this->clientProvider = $clientProvider;
$this->errorHandler = $errorHandler;
$this->config = $config;
$this->environment = $environment;
$this->appVersion = $appVersion;
}
public function startProfiling(): void
{
if ($this->started) {
return;
}
try {
$this->client = $this->clientProvider->getClient();
if ($this->client === null) {
return;
}
if (!$this->passesSampleRateCheck() || !$this->shouldProfile()) {
return;
}
if (!$this->client->isExtensionAvailable()) {
return;
}
$this->client->startTraceSpan($this->spanName);
$this->setDefaultAttributes();
$this->started = true;
} catch (\Throwable $throwable) {
$this->started = false;
$this->errorHandler->handle($throwable, 'start_profiling');
}
}
public function stopProfiling(): void
{
if (!$this->started || $this->client === null) {
return;
}
try {
foreach ($this->attributes as $key => $value) {
$this->client->setAttribute($key, $value);
}
if (!$this->client->stopTraceSpan($this->spanName)) {
return;
}
$result = $this->client->submitTrace();
if (!$result->isSuccess()) {
$this->errorHandler->handle(
new \RuntimeException(sprintf(
'Trace submission failed (%s): %s',
$result->getStatus(),
$result->getMessage()
)),
'submit_trace'
);
}
} catch (\Throwable $throwable) {
$this->errorHandler->handle($throwable, 'stop_profiling');
} finally {
$this->started = false;
}
}
public function setAttribute(string $key, string $value): void
{
$this->attributes[$key] = $value;
}
/**
* @param array<string, string> $attributes
*/
public function setAttributes(array $attributes): void
{
foreach ($attributes as $key => $value) {
$this->setAttribute($key, $value);
}
}
public function setException(\Throwable $throwable): void
{
$this->setAttribute('exception', $throwable->getMessage());
}
public function setExitCode(int $exitCode): void
{
$this->setAttribute('exit_code', (string) $exitCode);
}
public function hasStarted(): bool
{
return $this->started;
}
/**
* @param mixed $filters
* @return array<string>
*/
protected function normalizeFilters($filters): array
{
if (!is_array($filters)) {
return [];
}
return array_values(array_filter($filters, static function ($filter): bool {
return is_string($filter) && $filter !== '';
}));
}
protected function setDefaultAttributes(): void
{
$this->setAttributes([
'hostname' => gethostname() ?: '',
'environment' => $this->environment,
'app_version' => $this->appVersion,
'php_version' => phpversion() ?: '',
]);
}
protected function passesSampleRateCheck(): bool
{
$sampleRate = $this->config['sample_rate'] ?? 0.1;
if (!is_numeric($sampleRate)) {
throw new \RuntimeException('Configured perfbase sample_rate must be numeric.');
}
$sampleRate = (float) $sampleRate;
if ($sampleRate < 0.0 || $sampleRate > 1.0) {
throw new \RuntimeException('Configured perfbase sample_rate must be between 0.0 and 1.0.');
}
if ($sampleRate === 1.0) {
return true;
}
if ($sampleRate === 0.0) {
return false;
}
return (mt_rand() / mt_getrandmax()) <= $sampleRate;
}
abstract protected function shouldProfile(): bool;
}