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: docs/spec/v2/span.json
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,34 @@
22
22
},
23
23
"minItems": 0
24
24
},
25
+
"composite": {
26
+
"description": "Composite holds details on a group of spans represented by a single one.",
27
+
"type": [
28
+
"null",
29
+
"object"
30
+
],
31
+
"properties": {
32
+
"compression_strategy": {
33
+
"description": "A string value indicating which compression strategy was used. The valid values are `exact_match` and `same_kind`.",
34
+
"type": "string"
35
+
},
36
+
"count": {
37
+
"description": "Count is the number of compressed spans the composite span represents. The minimum count is 2, as a composite span represents at least two spans.",
38
+
"type": "integer",
39
+
"minimum": 2
40
+
},
41
+
"sum": {
42
+
"description": "Sum is the durations of all compressed spans this composite span represents in milliseconds. Thus sum is the net duration of all the compressed spans while duration is the gross duration, including \"whitespace\" between the spans.",
43
+
"type": "number",
44
+
"minimum": 0
45
+
}
46
+
},
47
+
"required": [
48
+
"count",
49
+
"sum",
50
+
"compression_strategy"
51
+
]
52
+
},
25
53
"context": {
26
54
"description": "Context holds arbitrary contextual information for the event.",
0 commit comments