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: relay/event.schema.json
+18-12Lines changed: 18 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -3243,6 +3243,24 @@
3243
3243
"null"
3244
3244
]
3245
3245
},
3246
+
"held_locks": {
3247
+
"description": " Represents a collection of locks (java monitor objects) held by a thread.\n\n A map of lock object addresses and their respective lock reason/details.",
3248
+
"default": null,
3249
+
"type": [
3250
+
"object",
3251
+
"null"
3252
+
],
3253
+
"additionalProperties": {
3254
+
"anyOf": [
3255
+
{
3256
+
"$ref": "#/definitions/LockReason"
3257
+
},
3258
+
{
3259
+
"type": "null"
3260
+
}
3261
+
]
3262
+
}
3263
+
},
3246
3264
"id": {
3247
3265
"description": " The ID of the thread. Typically a number or numeric string.\n\n Needs to be unique among the threads. An exception can set the `thread_id` attribute to cross-reference this thread.",
3248
3266
"default": null,
@@ -3255,18 +3273,6 @@
3255
3273
}
3256
3274
]
3257
3275
},
3258
-
"lock_reason": {
3259
-
"description": " Represents an instance of a held lock (java monitor object) in a thread.",
3260
-
"default": null,
3261
-
"anyOf": [
3262
-
{
3263
-
"$ref": "#/definitions/LockReason"
3264
-
},
3265
-
{
3266
-
"type": "null"
3267
-
}
3268
-
]
3269
-
},
3270
3276
"main": {
3271
3277
"description": " A flag indicating whether the thread was responsible for rendering the user interface.",
0 commit comments