mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
feat(telemetry): include error details for failures (#254)
This commit is contained in:
parent
494618ab14
commit
6da8c3452a
18 changed files with 1259 additions and 999 deletions
|
|
@ -26,6 +26,7 @@
|
|||
"durationMs",
|
||||
"outcome",
|
||||
"errorClass",
|
||||
"errorDetail",
|
||||
"flagsPresent",
|
||||
"hasProject",
|
||||
"projectGroupAttached"
|
||||
|
|
@ -37,7 +38,8 @@
|
|||
"fields": [
|
||||
"step",
|
||||
"outcome",
|
||||
"durationMs"
|
||||
"durationMs",
|
||||
"errorDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -56,6 +58,7 @@
|
|||
"isDemoConnection",
|
||||
"outcome",
|
||||
"errorClass",
|
||||
"errorDetail",
|
||||
"durationMs",
|
||||
"serverVersion"
|
||||
]
|
||||
|
|
@ -84,7 +87,8 @@
|
|||
"rowsBucket",
|
||||
"durationMs",
|
||||
"outcome",
|
||||
"errorClass"
|
||||
"errorClass",
|
||||
"errorDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -98,7 +102,8 @@
|
|||
"declaredFkCount",
|
||||
"durationMs",
|
||||
"outcome",
|
||||
"errorClass"
|
||||
"errorClass",
|
||||
"errorDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -296,6 +301,10 @@
|
|||
"errorClass": {
|
||||
"type": "string"
|
||||
},
|
||||
"errorDetail": {
|
||||
"type": "string",
|
||||
"maxLength": 1000
|
||||
},
|
||||
"flagsPresent": {
|
||||
"type": "object",
|
||||
"propertyNames": {
|
||||
|
|
@ -384,6 +393,10 @@
|
|||
"durationMs": {
|
||||
"type": "number",
|
||||
"minimum": 0
|
||||
},
|
||||
"errorDetail": {
|
||||
"type": "string",
|
||||
"maxLength": 1000
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
@ -494,6 +507,10 @@
|
|||
"errorClass": {
|
||||
"type": "string"
|
||||
},
|
||||
"errorDetail": {
|
||||
"type": "string",
|
||||
"maxLength": 1000
|
||||
},
|
||||
"durationMs": {
|
||||
"type": "number",
|
||||
"minimum": 0
|
||||
|
|
@ -673,6 +690,10 @@
|
|||
},
|
||||
"errorClass": {
|
||||
"type": "string"
|
||||
},
|
||||
"errorDetail": {
|
||||
"type": "string",
|
||||
"maxLength": 1000
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
@ -759,6 +780,10 @@
|
|||
},
|
||||
"errorClass": {
|
||||
"type": "string"
|
||||
},
|
||||
"errorDetail": {
|
||||
"type": "string",
|
||||
"maxLength": 1000
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue