-
Notifications
You must be signed in to change notification settings - Fork 773
/
SpanBuilderShim.cs
323 lines (270 loc) · 10.2 KB
/
SpanBuilderShim.cs
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
// <copyright file="SpanBuilderShim.cs" company="OpenTelemetry Authors">
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
using OpenTelemetry.Internal;
using OpenTelemetry.Trace;
using OpenTracing;
namespace OpenTelemetry.Shims.OpenTracing
{
/// <summary>
/// Adapts OpenTracing ISpanBuilder to an underlying OpenTelemetry ISpanBuilder.
/// </summary>
/// <remarks>Instances of this class are not thread-safe.</remarks>
/// <seealso cref="ISpanBuilder" />
internal sealed class SpanBuilderShim : ISpanBuilder
{
/// <summary>
/// The tracer.
/// </summary>
private readonly Tracer tracer;
/// <summary>
/// The span name.
/// </summary>
private readonly string spanName;
/// <summary>
/// The OpenTelemetry links. These correspond loosely to OpenTracing references.
/// </summary>
private readonly List<Link> links = new();
/// <summary>
/// The OpenTelemetry attributes. These correspond to OpenTracing Tags.
/// </summary>
private readonly List<KeyValuePair<string, object>> attributes = new();
/// <summary>
/// The parent as an TelemetrySpan, if any.
/// </summary>
private TelemetrySpan parentSpan;
/// <summary>
/// The parent as an SpanContext, if any.
/// </summary>
private SpanContext parentSpanContext;
/// <summary>
/// The explicit start time, if any.
/// </summary>
private DateTimeOffset? explicitStartTime;
private bool ignoreActiveSpan;
private SpanKind spanKind;
private bool error;
public SpanBuilderShim(Tracer tracer, string spanName)
{
Guard.ThrowIfNull(tracer);
Guard.ThrowIfNull(spanName);
this.tracer = tracer;
this.spanName = spanName;
this.ScopeManager = new ScopeManagerShim(this.tracer);
}
private IScopeManager ScopeManager { get; }
private bool ParentSet => this.parentSpan != null || this.parentSpanContext.IsValid;
/// <inheritdoc/>
public ISpanBuilder AsChildOf(ISpanContext parent)
{
if (parent == null)
{
return this;
}
return this.AddReference(References.ChildOf, parent);
}
/// <inheritdoc/>
public ISpanBuilder AsChildOf(ISpan parent)
{
if (parent == null)
{
return this;
}
if (!this.ParentSet)
{
this.parentSpan = GetOpenTelemetrySpan(parent);
return this;
}
return this.AsChildOf(parent.Context);
}
/// <inheritdoc/>
public ISpanBuilder AddReference(string referenceType, ISpanContext referencedContext)
{
if (referencedContext == null)
{
return this;
}
Guard.ThrowIfNull(referenceType);
// TODO There is no relation between OpenTracing.References (referenceType) and OpenTelemetry Link
var actualContext = GetOpenTelemetrySpanContext(referencedContext);
if (!this.ParentSet)
{
this.parentSpanContext = actualContext;
return this;
}
else
{
this.links.Add(new Link(actualContext));
}
return this;
}
/// <inheritdoc/>
public ISpanBuilder IgnoreActiveSpan()
{
this.ignoreActiveSpan = true;
return this;
}
/// <inheritdoc/>
public ISpan Start()
{
TelemetrySpan span = null;
// If specified, this takes precedence.
if (this.ignoreActiveSpan)
{
span = this.tracer.StartRootSpan(this.spanName, this.spanKind, default, this.links, this.explicitStartTime ?? default);
}
else if (this.parentSpan != null)
{
span = this.tracer.StartSpan(this.spanName, this.spanKind, this.parentSpan, default, this.links, this.explicitStartTime ?? default);
}
else if (this.parentSpanContext.IsValid)
{
span = this.tracer.StartSpan(this.spanName, this.spanKind, this.parentSpanContext, default, this.links, this.explicitStartTime ?? default);
}
if (span == null)
{
span = this.tracer.StartSpan(this.spanName, this.spanKind, default(SpanContext), default, null, this.explicitStartTime ?? default);
}
foreach (var kvp in this.attributes)
{
span.SetAttribute(kvp.Key, kvp.Value.ToString());
}
if (this.error)
{
span.SetStatus(Status.Error);
}
return new SpanShim(span);
}
/// <inheritdoc/>
public IScope StartActive() => this.StartActive(true);
/// <inheritdoc/>
public IScope StartActive(bool finishSpanOnDispose)
{
var span = this.Start();
return this.ScopeManager.Activate(span, finishSpanOnDispose);
}
/// <inheritdoc/>
public ISpanBuilder WithStartTimestamp(DateTimeOffset timestamp)
{
this.explicitStartTime = timestamp;
return this;
}
/// <inheritdoc/>
public ISpanBuilder WithTag(string key, string value)
{
// see https://opentracing.io/specification/conventions/ for special key handling.
if (global::OpenTracing.Tag.Tags.SpanKind.Key.Equals(key, StringComparison.Ordinal))
{
this.spanKind = value switch
{
global::OpenTracing.Tag.Tags.SpanKindClient => SpanKind.Client,
global::OpenTracing.Tag.Tags.SpanKindServer => SpanKind.Server,
global::OpenTracing.Tag.Tags.SpanKindProducer => SpanKind.Producer,
global::OpenTracing.Tag.Tags.SpanKindConsumer => SpanKind.Consumer,
_ => SpanKind.Internal,
};
}
else if (global::OpenTracing.Tag.Tags.Error.Key.Equals(key, StringComparison.Ordinal) && bool.TryParse(value, out var booleanValue))
{
this.error = booleanValue;
}
else
{
// Keys must be non-null.
// Null values => string.Empty.
if (key != null)
{
this.attributes.Add(new KeyValuePair<string, object>(key, value ?? string.Empty));
}
}
return this;
}
/// <inheritdoc/>
public ISpanBuilder WithTag(string key, bool value)
{
if (global::OpenTracing.Tag.Tags.Error.Key.Equals(key, StringComparison.Ordinal))
{
this.error = value;
}
else
{
this.attributes.Add(new KeyValuePair<string, object>(key, value));
}
return this;
}
/// <inheritdoc/>
public ISpanBuilder WithTag(string key, int value)
{
this.attributes.Add(new KeyValuePair<string, object>(key, value));
return this;
}
/// <inheritdoc/>
public ISpanBuilder WithTag(string key, double value)
{
this.attributes.Add(new KeyValuePair<string, object>(key, value));
return this;
}
/// <inheritdoc/>
public ISpanBuilder WithTag(global::OpenTracing.Tag.BooleanTag tag, bool value)
{
Guard.ThrowIfNull(tag?.Key);
return this.WithTag(tag.Key, value);
}
/// <inheritdoc/>
public ISpanBuilder WithTag(global::OpenTracing.Tag.IntOrStringTag tag, string value)
{
Guard.ThrowIfNull(tag?.Key);
if (int.TryParse(value, out var result))
{
return this.WithTag(tag.Key, result);
}
return this.WithTag(tag.Key, value);
}
/// <inheritdoc/>
public ISpanBuilder WithTag(global::OpenTracing.Tag.IntTag tag, int value)
{
Guard.ThrowIfNull(tag?.Key);
return this.WithTag(tag.Key, value);
}
/// <inheritdoc/>
public ISpanBuilder WithTag(global::OpenTracing.Tag.StringTag tag, string value)
{
Guard.ThrowIfNull(tag?.Key);
return this.WithTag(tag.Key, value);
}
/// <summary>
/// Gets an implementation of OpenTelemetry TelemetrySpan from the OpenTracing ISpan.
/// </summary>
/// <param name="span">The span.</param>
/// <returns>an implementation of OpenTelemetry TelemetrySpan.</returns>
/// <exception cref="ArgumentException">span is not a valid SpanShim object.</exception>
private static TelemetrySpan GetOpenTelemetrySpan(ISpan span)
{
var shim = Guard.ThrowIfNotOfType<SpanShim>(span);
return shim.Span;
}
/// <summary>
/// Gets the OpenTelemetry SpanContext.
/// </summary>
/// <param name="spanContext">The span context.</param>
/// <returns>the OpenTelemetry SpanContext.</returns>
/// <exception cref="ArgumentException">context is not a valid SpanContextShim object.</exception>
private static SpanContext GetOpenTelemetrySpanContext(ISpanContext spanContext)
{
var shim = Guard.ThrowIfNotOfType<SpanContextShim>(spanContext);
return shim.SpanContext;
}
}
}