Skip to content

Commit 479b57b

Browse files
committed
1 parent dbdd888 commit 479b57b

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

relay/event.schema.json

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3243,6 +3243,24 @@
32433243
"null"
32443244
]
32453245
},
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+
},
32463264
"id": {
32473265
"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.",
32483266
"default": null,
@@ -3255,18 +3273,6 @@
32553273
}
32563274
]
32573275
},
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-
},
32703276
"main": {
32713277
"description": " A flag indicating whether the thread was responsible for rendering the user interface.",
32723278
"default": null,

0 commit comments

Comments
 (0)