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: apm-agent-core/src/test/resources/apm-server-schema/current/transaction.json
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -528,6 +528,14 @@
528
528
"object"
529
529
],
530
530
"properties": {
531
+
"domain": {
532
+
"description": "Domain of the logged in user",
533
+
"type": [
534
+
"null",
535
+
"string"
536
+
],
537
+
"maxLength": 1024
538
+
},
531
539
"email": {
532
540
"description": "Email of the user.",
533
541
"type": [
@@ -699,6 +707,31 @@
699
707
"boolean"
700
708
]
701
709
},
710
+
"session": {
711
+
"description": "Session holds optional transaction session information for RUM.",
712
+
"type": [
713
+
"null",
714
+
"object"
715
+
],
716
+
"properties": {
717
+
"id": {
718
+
"description": "ID holds a session ID for grouping a set of related transactions.",
719
+
"type": "string",
720
+
"maxLength": 1024
721
+
},
722
+
"sequence": {
723
+
"description": "Sequence holds an optional sequence number for a transaction within a session. It is not meaningful to compare sequences across two different sessions.",
0 commit comments