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/fields.asciidoc
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -740,6 +740,16 @@ format: url
740
740
The transaction ID.
741
741
742
742
743
+
--
744
+
745
+
*`transaction.sampled`*::
746
+
+
747
+
--
748
+
type: boolean
749
+
750
+
Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context.
751
+
752
+
743
753
--
744
754
745
755
@@ -1527,16 +1537,6 @@ type: object
1527
1537
1528
1538
--
1529
1539
1530
-
*`transaction.sampled`*::
1531
-
+
1532
-
--
1533
-
type: boolean
1534
-
1535
-
Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context. Defaults to true.
Copy file name to clipboardExpand all lines: docs/spec/errors/v2_error.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,16 @@
27
27
"description": "Hex encoded 64 random bits ID of the parent transaction or span. Must be present if trace_id and transaction_id are set.",
28
28
"type": ["string", "null"],
29
29
"maxLength": 1024
30
+
},
31
+
"transaction": {
32
+
"type": ["object", "null"],
33
+
"description": "Data for correlating errors with transactions",
34
+
"properties": {
35
+
"sampled": {
36
+
"type": ["boolean", "null"],
37
+
"description": "Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have 'spans' or 'context'. Defaults to true."
Copy file name to clipboardExpand all lines: model/error/generated/schema/error.go
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -445,6 +445,16 @@ const ModelSchema = `{
445
445
"description": "Hex encoded 64 random bits ID of the parent transaction or span. Must be present if trace_id and transaction_id are set.",
446
446
"type": ["string", "null"],
447
447
"maxLength": 1024
448
+
},
449
+
"transaction": {
450
+
"type": ["object", "null"],
451
+
"description": "Data for correlating errors with transactions",
452
+
"properties": {
453
+
"sampled": {
454
+
"type": ["boolean", "null"],
455
+
"description": "Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have 'spans' or 'context'. Defaults to true."
Copy file name to clipboardExpand all lines: model/transaction/_meta/fields.yml
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -51,10 +51,6 @@
51
51
scaling_factor: 1000000
52
52
dynamic: true
53
53
54
-
- name: sampled
55
-
type: boolean
56
-
description: >
57
-
Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context. Defaults to true.
0 commit comments