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

@@ -11,6 +11,23 @@
"type": "integer"
}
]
},
"W3cTraceContext": {
"properties": {
"traceparent": {
"type": [
"string",
"null"
]
},
"tracestate": {
"type": [
"string",
"null"
]
}
},
"type": "object"
}
},
"description": "A request that expects a response.",
@@ -21,7 +38,17 @@
"method": {
"type": "string"
},
"params": true
"params": true,
"trace": {
"anyOf": [
{
"$ref": "#/definitions/W3cTraceContext"
},
{
"type": "null"
}
]
}
},
"required": [
"id",