You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: zipkin-api.yaml
+16
Original file line number
Diff line number
Diff line change
@@ -248,17 +248,33 @@ definitions:
248
248
properties:
249
249
traceId:
250
250
type: string
251
+
maxLength: 16
252
+
minLength: 16
253
+
description: 'Randomly generated, unique for a trace, set on all spans within it. 8-byte identifier encoded as 16 lowercase hex characters'
251
254
name:
252
255
type: string
256
+
description: 'Span name in lowercase (e.g. rpc method)'
257
+
parentId:
258
+
type: string
259
+
maxLength: 16
260
+
minLength: 16
261
+
description: 'Parent span id. 8-byte identifier encoded as 16 lowercase hex characters. Can be ommitted or set to nil if span is the root span of a trace.'
253
262
id:
254
263
type: string
264
+
maxLength: 16
265
+
minLength: 16
266
+
description: 'Id of current span, unique in context of traceId. 8-byte identifier encoded as 16 lowercase hex characters.'
255
267
timestamp:
256
268
type: integer
257
269
format: int64
270
+
description: 'Epoch **microseconds** of the start of this span, possibly absent if this an incomplete span.'
258
271
duration:
259
272
type: integer
273
+
format: int64
274
+
description: 'Duration in **microseconds** of the critical path, if known.'
260
275
debug:
261
276
type: boolean
277
+
description: 'Indicator whether this trace was sampled from standard traffic or forced. Usually coupled to the X-B3-Flags header, which when set to true is a request to store this span even if it overrides sampling policy.'
0 commit comments