feat(app-server): tracing pt. 1

This commit is contained in:
Owen Lin
2026-02-26 15:13:10 -08:00
parent 7709bf32a3
commit d29f364f23
20 changed files with 1633 additions and 356 deletions

View File

@@ -70,7 +70,17 @@
"method": {
"type": "string"
},
"params": true
"params": true,
"trace": {
"anyOf": [
{
"$ref": "#/definitions/W3cTraceContext"
},
{
"type": "null"
}
]
}
},
"required": [
"id",
@@ -102,6 +112,23 @@
"type": "integer"
}
]
},
"W3cTraceContext": {
"properties": {
"traceparent": {
"type": [
"string",
"null"
]
},
"tracestate": {
"type": [
"string",
"null"
]
}
},
"type": "object"
}
},
"description": "Refers to any valid JSON-RPC object that can be decoded off the wire, or encoded to be sent.",