-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathTracingBuilder.php
176 lines (153 loc) · 4.29 KB
/
TracingBuilder.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
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
<?php
declare(strict_types=1);
namespace Zipkin;
use Psr\Log\NullLogger;
use Zipkin\Propagation\CurrentTraceContext;
use Zipkin\Reporters\Log;
use Zipkin\Samplers\BinarySampler;
class TracingBuilder
{
/**
* @var string
*/
private $localServiceName;
/**
* @var Endpoint
*/
private $localEndpoint;
/**
* @var Reporter
*/
private $reporter;
/**
* @var Sampler
*/
private $sampler;
/**
* @var bool
*/
private $usesTraceId128bits = false;
/**
* @var CurrentTraceContext
*/
private $currentTraceContext;
/**
* @var bool
*/
private $isNoop = false;
public static function create(): self
{
return new self();
}
/**
* Controls the name of the service being traced, while still using a default site-local IP.
* This is an alternative to {@link #localEndpoint(Endpoint)}.
*
* @param string $localServiceName name of the service being traced. Defaults to "unknown".
* @return $this
*/
public function havingLocalServiceName(string $localServiceName): self
{
$this->localServiceName = $localServiceName;
return $this;
}
/**
* @param Endpoint $endpoint Endpoint of the local service being traced. Defaults to site local.
* @return $this
*/
public function havingLocalEndpoint(Endpoint $endpoint): self
{
$this->localEndpoint = $endpoint;
return $this;
}
/**
* Controls how spans are reported. Defaults to logging, but often an {@link AsyncReporter}
* which batches spans before sending to Zipkin.
*
* The {@link AsyncReporter} includes a {@link Sender}, which is a driver for transports like
* http, kafka and scribe.
*
* <p>For example, here's how to batch send spans via http:
*
* <pre>{@code
* reporter = AsyncReporter.v2(URLConnectionSender.json("http://localhost:9411/api/v2/spans"));
*
* tracingBuilder.spanReporter(reporter);
* }</pre>
*
* <p>See https://github.com/openzipkin/zipkin-reporter-java
*
* @param Reporter $reporter
* @return $this
*/
public function havingReporter(Reporter $reporter): self
{
$this->reporter = $reporter;
return $this;
}
/**
* Sampler is responsible for deciding if a particular trace should be "sampled", i.e. whether
* the overhead of tracing will occur and/or if a trace will be reported to Zipkin.
*
* @param Sampler $sampler
* @return $this
*/
public function havingSampler(Sampler $sampler): self
{
$this->sampler = $sampler;
return $this;
}
/**
* When true, new root spans will have 128-bit trace IDs. Defaults to false (64-bit)
*
* @param bool $usesTraceId128bits
* @return $this
*/
public function havingTraceId128bits(bool $usesTraceId128bits): self
{
$this->usesTraceId128bits = $usesTraceId128bits;
return $this;
}
/**
* @param CurrentTraceContext $currentTraceContext
* @return $this
*/
public function havingCurrentTraceContext(CurrentTraceContext $currentTraceContext): self
{
$this->currentTraceContext = $currentTraceContext;
return $this;
}
/**
* @param bool $isNoop
* @return $this
*/
public function beingNoop(bool $isNoop = true): self
{
$this->isNoop = $isNoop;
return $this;
}
/**
* @return DefaultTracing
*/
public function build(): Tracing
{
$localEndpoint = $this->localEndpoint;
if ($this->localEndpoint === null) {
$localEndpoint = Endpoint::createFromGlobals();
if ($this->localServiceName !== null) {
$localEndpoint->withServiceName($this->localServiceName);
}
}
$reporter = $this->reporter ?? new Log(new NullLogger());
$sampler = $this->sampler ?? BinarySampler::createAsNeverSample();
$currentTraceContext = $this->currentTraceContext ?? CurrentTraceContext::create();
return new DefaultTracing(
$localEndpoint,
$reporter,
$sampler,
$this->usesTraceId128bits,
$currentTraceContext,
$this->isNoop
);
}
}