@ancplua/qyl-api-schema 2.1.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/types.tsp +21 -2
- package/generated/json-schema/qyl-api-schema.json +247 -439
- package/generated/openapi/qyl.openapi.json +241 -435
- package/generated/otel-keys.gen.tsp +92 -92
- package/generated/ts-runtime/api.d.ts +47 -13
- package/generated/ts-runtime/api.js +8 -0
- package/models/health.tsp +12 -0
- package/models/mcp-tools.tsp +70 -0
- package/package.json +10 -9
|
@@ -16,11 +16,7 @@
|
|
|
16
16
|
"description": "Attribute key (dot-separated namespace)"
|
|
17
17
|
},
|
|
18
18
|
"value": {
|
|
19
|
-
"
|
|
20
|
-
{
|
|
21
|
-
"$ref": "#/$defs/Common.AttributeValue"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
19
|
+
"$ref": "#/$defs/Common.AttributeValue",
|
|
24
20
|
"description": "Attribute value"
|
|
25
21
|
}
|
|
26
22
|
},
|
|
@@ -211,6 +207,16 @@
|
|
|
211
207
|
"application/json"
|
|
212
208
|
]
|
|
213
209
|
},
|
|
210
|
+
"Common.ContractRevision": {
|
|
211
|
+
"type": "string",
|
|
212
|
+
"minLength": 23,
|
|
213
|
+
"maxLength": 23,
|
|
214
|
+
"pattern": "^sha256:[a-f0-9]{16}$",
|
|
215
|
+
"description": "Deterministic revision of the generated API contract: 'sha256:' followed by the first 16 hex characters of the SHA-256 digest of the emitted OpenAPI document.",
|
|
216
|
+
"examples": [
|
|
217
|
+
"sha256:0f1e2d3c4b5a6978"
|
|
218
|
+
]
|
|
219
|
+
},
|
|
214
220
|
"Common.CostUsd": {
|
|
215
221
|
"type": "number",
|
|
216
222
|
"format": "double",
|
|
@@ -233,11 +239,12 @@
|
|
|
233
239
|
"x-csharp-type": "double"
|
|
234
240
|
},
|
|
235
241
|
"Common.DurationNs": {
|
|
236
|
-
"type": "
|
|
242
|
+
"type": "string",
|
|
237
243
|
"format": "uint64",
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
244
|
+
"description": "Duration in nanoseconds, encoded as a decimal string",
|
|
245
|
+
"x-csharp-type": "ulong",
|
|
246
|
+
"pattern": "^(0|[1-9][0-9]*)$",
|
|
247
|
+
"maxLength": 20
|
|
241
248
|
},
|
|
242
249
|
"Common.DurationS": {
|
|
243
250
|
"type": "number",
|
|
@@ -670,11 +677,7 @@
|
|
|
670
677
|
"description": "Name of the instrumentation scope (library name)"
|
|
671
678
|
},
|
|
672
679
|
"version": {
|
|
673
|
-
"
|
|
674
|
-
{
|
|
675
|
-
"$ref": "#/$defs/Common.SemVer"
|
|
676
|
-
}
|
|
677
|
-
],
|
|
680
|
+
"$ref": "#/$defs/Common.SemVer",
|
|
678
681
|
"description": "Version of the instrumentation scope"
|
|
679
682
|
},
|
|
680
683
|
"attributes": {
|
|
@@ -685,11 +688,7 @@
|
|
|
685
688
|
"description": "Additional attributes for the scope"
|
|
686
689
|
},
|
|
687
690
|
"dropped_attributes_count": {
|
|
688
|
-
"
|
|
689
|
-
{
|
|
690
|
-
"$ref": "#/$defs/Common.Count"
|
|
691
|
-
}
|
|
692
|
-
],
|
|
691
|
+
"$ref": "#/$defs/Common.Count",
|
|
693
692
|
"description": "Dropped attributes count"
|
|
694
693
|
}
|
|
695
694
|
},
|
|
@@ -727,11 +726,7 @@
|
|
|
727
726
|
"type": "object",
|
|
728
727
|
"properties": {
|
|
729
728
|
"bucket": {
|
|
730
|
-
"
|
|
731
|
-
{
|
|
732
|
-
"$ref": "#/$defs/Common.Pagination.TimeBucket"
|
|
733
|
-
}
|
|
734
|
-
],
|
|
729
|
+
"$ref": "#/$defs/Common.Pagination.TimeBucket",
|
|
735
730
|
"description": "Time bucket size",
|
|
736
731
|
"default": "auto"
|
|
737
732
|
},
|
|
@@ -768,11 +763,7 @@
|
|
|
768
763
|
"default": 100
|
|
769
764
|
},
|
|
770
765
|
"order": {
|
|
771
|
-
"
|
|
772
|
-
{
|
|
773
|
-
"$ref": "#/$defs/Common.Pagination.SortOrder"
|
|
774
|
-
}
|
|
775
|
-
],
|
|
766
|
+
"$ref": "#/$defs/Common.Pagination.SortOrder",
|
|
776
767
|
"description": "Sort direction",
|
|
777
768
|
"default": "desc"
|
|
778
769
|
}
|
|
@@ -823,11 +814,7 @@
|
|
|
823
814
|
"description": "Include historical data from this timestamp"
|
|
824
815
|
},
|
|
825
816
|
"trace_id": {
|
|
826
|
-
"
|
|
827
|
-
{
|
|
828
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
829
|
-
}
|
|
830
|
-
],
|
|
817
|
+
"$ref": "#/$defs/Common.TraceId",
|
|
831
818
|
"description": "Filter by trace ID"
|
|
832
819
|
},
|
|
833
820
|
"service_name": {
|
|
@@ -995,11 +982,12 @@
|
|
|
995
982
|
]
|
|
996
983
|
},
|
|
997
984
|
"Common.UnixNanos": {
|
|
998
|
-
"type": "
|
|
985
|
+
"type": "string",
|
|
999
986
|
"format": "uint64",
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1002
|
-
"
|
|
987
|
+
"description": "Unsigned Unix timestamp in nanoseconds since epoch, encoded as a decimal string",
|
|
988
|
+
"x-csharp-type": "ulong",
|
|
989
|
+
"pattern": "^(0|[1-9][0-9]*)$",
|
|
990
|
+
"maxLength": 20
|
|
1003
991
|
},
|
|
1004
992
|
"Common.UrlPath": {
|
|
1005
993
|
"type": "string",
|
|
@@ -1055,19 +1043,11 @@
|
|
|
1055
1043
|
],
|
|
1056
1044
|
"properties": {
|
|
1057
1045
|
"session_id": {
|
|
1058
|
-
"
|
|
1059
|
-
{
|
|
1060
|
-
"$ref": "#/$defs/Common.SessionId"
|
|
1061
|
-
}
|
|
1062
|
-
],
|
|
1046
|
+
"$ref": "#/$defs/Common.SessionId",
|
|
1063
1047
|
"description": "Session ID"
|
|
1064
1048
|
},
|
|
1065
1049
|
"previous_session_id": {
|
|
1066
|
-
"
|
|
1067
|
-
{
|
|
1068
|
-
"$ref": "#/$defs/Common.SessionId"
|
|
1069
|
-
}
|
|
1070
|
-
],
|
|
1050
|
+
"$ref": "#/$defs/Common.SessionId",
|
|
1071
1051
|
"description": "Previous session ID (for session continuity)"
|
|
1072
1052
|
}
|
|
1073
1053
|
},
|
|
@@ -1080,27 +1060,15 @@
|
|
|
1080
1060
|
"type": "object",
|
|
1081
1061
|
"properties": {
|
|
1082
1062
|
"ip": {
|
|
1083
|
-
"
|
|
1084
|
-
{
|
|
1085
|
-
"$ref": "#/$defs/Common.IpAddress"
|
|
1086
|
-
}
|
|
1087
|
-
],
|
|
1063
|
+
"$ref": "#/$defs/Common.IpAddress",
|
|
1088
1064
|
"description": "Client IP address"
|
|
1089
1065
|
},
|
|
1090
1066
|
"user_agent": {
|
|
1091
|
-
"
|
|
1092
|
-
{
|
|
1093
|
-
"$ref": "#/$defs/Common.UserAgent"
|
|
1094
|
-
}
|
|
1095
|
-
],
|
|
1067
|
+
"$ref": "#/$defs/Common.UserAgent",
|
|
1096
1068
|
"description": "User agent string"
|
|
1097
1069
|
},
|
|
1098
1070
|
"device_type": {
|
|
1099
|
-
"
|
|
1100
|
-
{
|
|
1101
|
-
"$ref": "#/$defs/Domains.Observe.Session.DeviceType"
|
|
1102
|
-
}
|
|
1103
|
-
],
|
|
1071
|
+
"$ref": "#/$defs/Domains.Observe.Session.DeviceType",
|
|
1104
1072
|
"description": "Device type"
|
|
1105
1073
|
},
|
|
1106
1074
|
"os": {
|
|
@@ -1134,19 +1102,11 @@
|
|
|
1134
1102
|
],
|
|
1135
1103
|
"properties": {
|
|
1136
1104
|
"session_id": {
|
|
1137
|
-
"
|
|
1138
|
-
{
|
|
1139
|
-
"$ref": "#/$defs/Common.SessionId"
|
|
1140
|
-
}
|
|
1141
|
-
],
|
|
1105
|
+
"$ref": "#/$defs/Common.SessionId",
|
|
1142
1106
|
"description": "Session ID"
|
|
1143
1107
|
},
|
|
1144
1108
|
"user_id": {
|
|
1145
|
-
"
|
|
1146
|
-
{
|
|
1147
|
-
"$ref": "#/$defs/Common.UserId"
|
|
1148
|
-
}
|
|
1149
|
-
],
|
|
1109
|
+
"$ref": "#/$defs/Common.UserId",
|
|
1150
1110
|
"description": "User ID (if authenticated)"
|
|
1151
1111
|
},
|
|
1152
1112
|
"start_time": {
|
|
@@ -1160,11 +1120,7 @@
|
|
|
1160
1120
|
"description": "Session end time"
|
|
1161
1121
|
},
|
|
1162
1122
|
"duration_ms": {
|
|
1163
|
-
"
|
|
1164
|
-
{
|
|
1165
|
-
"$ref": "#/$defs/Common.DurationMs"
|
|
1166
|
-
}
|
|
1167
|
-
],
|
|
1123
|
+
"$ref": "#/$defs/Common.DurationMs",
|
|
1168
1124
|
"description": "Session duration in milliseconds"
|
|
1169
1125
|
},
|
|
1170
1126
|
"trace_count": {
|
|
@@ -1193,35 +1149,19 @@
|
|
|
1193
1149
|
"description": "Service names observed in this session"
|
|
1194
1150
|
},
|
|
1195
1151
|
"state": {
|
|
1196
|
-
"
|
|
1197
|
-
{
|
|
1198
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionState"
|
|
1199
|
-
}
|
|
1200
|
-
],
|
|
1152
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionState",
|
|
1201
1153
|
"description": "Session state"
|
|
1202
1154
|
},
|
|
1203
1155
|
"client": {
|
|
1204
|
-
"
|
|
1205
|
-
{
|
|
1206
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionClientInfo"
|
|
1207
|
-
}
|
|
1208
|
-
],
|
|
1156
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionClientInfo",
|
|
1209
1157
|
"description": "Client information"
|
|
1210
1158
|
},
|
|
1211
1159
|
"geo": {
|
|
1212
|
-
"
|
|
1213
|
-
{
|
|
1214
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionGeoInfo"
|
|
1215
|
-
}
|
|
1216
|
-
],
|
|
1160
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionGeoInfo",
|
|
1217
1161
|
"description": "Location information"
|
|
1218
1162
|
},
|
|
1219
1163
|
"genai_usage": {
|
|
1220
|
-
"
|
|
1221
|
-
{
|
|
1222
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionGenAiUsage"
|
|
1223
|
-
}
|
|
1224
|
-
],
|
|
1164
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionGenAiUsage",
|
|
1225
1165
|
"description": "GenAI usage summary"
|
|
1226
1166
|
}
|
|
1227
1167
|
},
|
|
@@ -1241,19 +1181,11 @@
|
|
|
1241
1181
|
],
|
|
1242
1182
|
"properties": {
|
|
1243
1183
|
"event_name": {
|
|
1244
|
-
"
|
|
1245
|
-
{
|
|
1246
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionEventName"
|
|
1247
|
-
}
|
|
1248
|
-
],
|
|
1184
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionEventName",
|
|
1249
1185
|
"description": "Event name"
|
|
1250
1186
|
},
|
|
1251
1187
|
"session_id": {
|
|
1252
|
-
"
|
|
1253
|
-
{
|
|
1254
|
-
"$ref": "#/$defs/Common.SessionId"
|
|
1255
|
-
}
|
|
1256
|
-
],
|
|
1188
|
+
"$ref": "#/$defs/Common.SessionId",
|
|
1257
1189
|
"description": "Session ID"
|
|
1258
1190
|
},
|
|
1259
1191
|
"timestamp": {
|
|
@@ -1299,19 +1231,11 @@
|
|
|
1299
1231
|
"description": "Total GenAI requests in session"
|
|
1300
1232
|
},
|
|
1301
1233
|
"total_input_tokens": {
|
|
1302
|
-
"
|
|
1303
|
-
{
|
|
1304
|
-
"$ref": "#/$defs/Common.TokenCount"
|
|
1305
|
-
}
|
|
1306
|
-
],
|
|
1234
|
+
"$ref": "#/$defs/Common.TokenCount",
|
|
1307
1235
|
"description": "Total input tokens consumed"
|
|
1308
1236
|
},
|
|
1309
1237
|
"total_output_tokens": {
|
|
1310
|
-
"
|
|
1311
|
-
{
|
|
1312
|
-
"$ref": "#/$defs/Common.TokenCount"
|
|
1313
|
-
}
|
|
1314
|
-
],
|
|
1238
|
+
"$ref": "#/$defs/Common.TokenCount",
|
|
1315
1239
|
"description": "Total output tokens generated"
|
|
1316
1240
|
},
|
|
1317
1241
|
"models_used": {
|
|
@@ -1390,19 +1314,11 @@
|
|
|
1390
1314
|
],
|
|
1391
1315
|
"properties": {
|
|
1392
1316
|
"active_sessions": {
|
|
1393
|
-
"
|
|
1394
|
-
{
|
|
1395
|
-
"$ref": "#/$defs/Common.Count"
|
|
1396
|
-
}
|
|
1397
|
-
],
|
|
1317
|
+
"$ref": "#/$defs/Common.Count",
|
|
1398
1318
|
"description": "Active sessions count"
|
|
1399
1319
|
},
|
|
1400
1320
|
"total_sessions": {
|
|
1401
|
-
"
|
|
1402
|
-
{
|
|
1403
|
-
"$ref": "#/$defs/Common.Count"
|
|
1404
|
-
}
|
|
1405
|
-
],
|
|
1321
|
+
"$ref": "#/$defs/Common.Count",
|
|
1406
1322
|
"description": "Total sessions in time range"
|
|
1407
1323
|
},
|
|
1408
1324
|
"avg_duration_ms": {
|
|
@@ -1411,27 +1327,15 @@
|
|
|
1411
1327
|
"description": "Average session duration in milliseconds"
|
|
1412
1328
|
},
|
|
1413
1329
|
"sessions_with_errors": {
|
|
1414
|
-
"
|
|
1415
|
-
{
|
|
1416
|
-
"$ref": "#/$defs/Common.Count"
|
|
1417
|
-
}
|
|
1418
|
-
],
|
|
1330
|
+
"$ref": "#/$defs/Common.Count",
|
|
1419
1331
|
"description": "Sessions with errors"
|
|
1420
1332
|
},
|
|
1421
1333
|
"sessions_with_genai": {
|
|
1422
|
-
"
|
|
1423
|
-
{
|
|
1424
|
-
"$ref": "#/$defs/Common.Count"
|
|
1425
|
-
}
|
|
1426
|
-
],
|
|
1334
|
+
"$ref": "#/$defs/Common.Count",
|
|
1427
1335
|
"description": "Sessions with GenAI usage"
|
|
1428
1336
|
},
|
|
1429
1337
|
"bounce_rate": {
|
|
1430
|
-
"
|
|
1431
|
-
{
|
|
1432
|
-
"$ref": "#/$defs/Common.Ratio"
|
|
1433
|
-
}
|
|
1434
|
-
],
|
|
1338
|
+
"$ref": "#/$defs/Common.Ratio",
|
|
1435
1339
|
"description": "Bounce rate (single-page sessions)"
|
|
1436
1340
|
}
|
|
1437
1341
|
},
|
|
@@ -1468,7 +1372,8 @@
|
|
|
1468
1372
|
"required": [
|
|
1469
1373
|
"status",
|
|
1470
1374
|
"total_duration_ms",
|
|
1471
|
-
"entries"
|
|
1375
|
+
"entries",
|
|
1376
|
+
"contract_revision"
|
|
1472
1377
|
],
|
|
1473
1378
|
"properties": {
|
|
1474
1379
|
"status": {
|
|
@@ -1483,6 +1388,10 @@
|
|
|
1483
1388
|
"unevaluatedProperties": {
|
|
1484
1389
|
"$ref": "#/$defs/Health.HealthCheckEntry"
|
|
1485
1390
|
}
|
|
1391
|
+
},
|
|
1392
|
+
"contract_revision": {
|
|
1393
|
+
"$ref": "#/$defs/Common.ContractRevision",
|
|
1394
|
+
"description": "Revision of the API contract this process serves, for the client-side startup handshake."
|
|
1486
1395
|
}
|
|
1487
1396
|
},
|
|
1488
1397
|
"unevaluatedProperties": {
|
|
@@ -1499,6 +1408,141 @@
|
|
|
1499
1408
|
],
|
|
1500
1409
|
"description": "Health state reported by a qyl-managed process."
|
|
1501
1410
|
},
|
|
1411
|
+
"Mcp.Tools.CiLogInput": {
|
|
1412
|
+
"type": "object",
|
|
1413
|
+
"properties": {
|
|
1414
|
+
"run_id": {
|
|
1415
|
+
"$ref": "#/$defs/Common.SessionId",
|
|
1416
|
+
"description": "Session id of one CI run for a per-leg phase breakdown; omit to list recent runs."
|
|
1417
|
+
},
|
|
1418
|
+
"limit": {
|
|
1419
|
+
"type": "integer",
|
|
1420
|
+
"format": "int32",
|
|
1421
|
+
"minimum": 1,
|
|
1422
|
+
"maximum": 50,
|
|
1423
|
+
"description": "Maximum CI runs to list.",
|
|
1424
|
+
"default": 10
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1427
|
+
"unevaluatedProperties": {
|
|
1428
|
+
"not": {}
|
|
1429
|
+
},
|
|
1430
|
+
"description": "Input for ci_log."
|
|
1431
|
+
},
|
|
1432
|
+
"Mcp.Tools.CiLogOutput": {
|
|
1433
|
+
"type": "object",
|
|
1434
|
+
"required": [
|
|
1435
|
+
"mode"
|
|
1436
|
+
],
|
|
1437
|
+
"properties": {
|
|
1438
|
+
"runs": {
|
|
1439
|
+
"type": "array",
|
|
1440
|
+
"items": {
|
|
1441
|
+
"$ref": "#/$defs/Mcp.Tools.CiRunSummary"
|
|
1442
|
+
}
|
|
1443
|
+
},
|
|
1444
|
+
"run_id": {
|
|
1445
|
+
"$ref": "#/$defs/Common.SessionId"
|
|
1446
|
+
},
|
|
1447
|
+
"phases": {
|
|
1448
|
+
"type": "array",
|
|
1449
|
+
"items": {
|
|
1450
|
+
"$ref": "#/$defs/Mcp.Tools.CiPhase"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"mode": {
|
|
1454
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
"unevaluatedProperties": {
|
|
1458
|
+
"not": {}
|
|
1459
|
+
},
|
|
1460
|
+
"description": "Structured output for ci_log: recent runs, or one run's phases."
|
|
1461
|
+
},
|
|
1462
|
+
"Mcp.Tools.CiPhase": {
|
|
1463
|
+
"type": "object",
|
|
1464
|
+
"required": [
|
|
1465
|
+
"leg",
|
|
1466
|
+
"phase",
|
|
1467
|
+
"status",
|
|
1468
|
+
"duration_ms"
|
|
1469
|
+
],
|
|
1470
|
+
"properties": {
|
|
1471
|
+
"leg": {
|
|
1472
|
+
"type": "string",
|
|
1473
|
+
"description": "Value of the span's ci.leg attribute, falling back to its service name."
|
|
1474
|
+
},
|
|
1475
|
+
"phase": {
|
|
1476
|
+
"type": "string",
|
|
1477
|
+
"description": "Span name, which the CI emitter convention sets to the phase name."
|
|
1478
|
+
},
|
|
1479
|
+
"status": {
|
|
1480
|
+
"$ref": "#/$defs/Mcp.Tools.CiPhaseStatus"
|
|
1481
|
+
},
|
|
1482
|
+
"duration_ms": {
|
|
1483
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
1484
|
+
},
|
|
1485
|
+
"message": {
|
|
1486
|
+
"type": "string",
|
|
1487
|
+
"description": "Span status message, present on a failed phase."
|
|
1488
|
+
}
|
|
1489
|
+
},
|
|
1490
|
+
"unevaluatedProperties": {
|
|
1491
|
+
"not": {}
|
|
1492
|
+
},
|
|
1493
|
+
"description": "One phase span of a CI run, attributed to the leg that executed it."
|
|
1494
|
+
},
|
|
1495
|
+
"Mcp.Tools.CiPhaseStatus": {
|
|
1496
|
+
"type": "string",
|
|
1497
|
+
"enum": [
|
|
1498
|
+
"ok",
|
|
1499
|
+
"error",
|
|
1500
|
+
"unset"
|
|
1501
|
+
],
|
|
1502
|
+
"description": "Outcome of one CI phase span, projected from its OpenTelemetry span status."
|
|
1503
|
+
},
|
|
1504
|
+
"Mcp.Tools.CiRunSummary": {
|
|
1505
|
+
"type": "object",
|
|
1506
|
+
"required": [
|
|
1507
|
+
"run_id",
|
|
1508
|
+
"state",
|
|
1509
|
+
"start_time",
|
|
1510
|
+
"error_count",
|
|
1511
|
+
"services"
|
|
1512
|
+
],
|
|
1513
|
+
"properties": {
|
|
1514
|
+
"run_id": {
|
|
1515
|
+
"$ref": "#/$defs/Common.SessionId"
|
|
1516
|
+
},
|
|
1517
|
+
"state": {
|
|
1518
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionState"
|
|
1519
|
+
},
|
|
1520
|
+
"start_time": {
|
|
1521
|
+
"type": "string",
|
|
1522
|
+
"format": "date-time"
|
|
1523
|
+
},
|
|
1524
|
+
"duration_ms": {
|
|
1525
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
1526
|
+
},
|
|
1527
|
+
"error_count": {
|
|
1528
|
+
"type": "integer",
|
|
1529
|
+
"format": "int32",
|
|
1530
|
+
"minimum": 0,
|
|
1531
|
+
"description": "Spans in the run that ended with an error status."
|
|
1532
|
+
},
|
|
1533
|
+
"services": {
|
|
1534
|
+
"type": "array",
|
|
1535
|
+
"items": {
|
|
1536
|
+
"type": "string"
|
|
1537
|
+
},
|
|
1538
|
+
"description": "Service names observed in the run, at least one of which is CI-emitted."
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"unevaluatedProperties": {
|
|
1542
|
+
"not": {}
|
|
1543
|
+
},
|
|
1544
|
+
"description": "One CI run, summarized from the session its telemetry is grouped under."
|
|
1545
|
+
},
|
|
1502
1546
|
"Mcp.Tools.DisplayMcpDashboardInput": {
|
|
1503
1547
|
"type": "object",
|
|
1504
1548
|
"properties": {
|
|
@@ -2281,43 +2325,23 @@
|
|
|
2281
2325
|
],
|
|
2282
2326
|
"properties": {
|
|
2283
2327
|
"time_unix_nano": {
|
|
2284
|
-
"
|
|
2285
|
-
{
|
|
2286
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2287
|
-
}
|
|
2288
|
-
],
|
|
2328
|
+
"$ref": "#/$defs/Common.UnixNanos",
|
|
2289
2329
|
"description": "Timestamp when the event occurred (nanoseconds since epoch)"
|
|
2290
2330
|
},
|
|
2291
2331
|
"observed_time_unix_nano": {
|
|
2292
|
-
"
|
|
2293
|
-
{
|
|
2294
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2295
|
-
}
|
|
2296
|
-
],
|
|
2332
|
+
"$ref": "#/$defs/Common.UnixNanos",
|
|
2297
2333
|
"description": "Timestamp when the log was observed/collected (nanoseconds since epoch)"
|
|
2298
2334
|
},
|
|
2299
2335
|
"severity_number": {
|
|
2300
|
-
"
|
|
2301
|
-
{
|
|
2302
|
-
"$ref": "#/$defs/OTel.Enums.SeverityNumber"
|
|
2303
|
-
}
|
|
2304
|
-
],
|
|
2336
|
+
"$ref": "#/$defs/OTel.Enums.SeverityNumber",
|
|
2305
2337
|
"description": "Severity number (1-24)"
|
|
2306
2338
|
},
|
|
2307
2339
|
"severity_text": {
|
|
2308
|
-
"
|
|
2309
|
-
{
|
|
2310
|
-
"$ref": "#/$defs/OTel.Enums.SeverityText"
|
|
2311
|
-
}
|
|
2312
|
-
],
|
|
2340
|
+
"$ref": "#/$defs/OTel.Enums.SeverityText",
|
|
2313
2341
|
"description": "Severity text (DEBUG, INFO, WARN, ERROR, etc.)"
|
|
2314
2342
|
},
|
|
2315
2343
|
"body": {
|
|
2316
|
-
"
|
|
2317
|
-
{
|
|
2318
|
-
"$ref": "#/$defs/OTel.Logs.LogBody"
|
|
2319
|
-
}
|
|
2320
|
-
],
|
|
2344
|
+
"$ref": "#/$defs/OTel.Logs.LogBody",
|
|
2321
2345
|
"description": "Log body - the main content"
|
|
2322
2346
|
},
|
|
2323
2347
|
"attributes": {
|
|
@@ -2328,11 +2352,7 @@
|
|
|
2328
2352
|
"description": "Log attributes"
|
|
2329
2353
|
},
|
|
2330
2354
|
"dropped_attributes_count": {
|
|
2331
|
-
"
|
|
2332
|
-
{
|
|
2333
|
-
"$ref": "#/$defs/Common.Count"
|
|
2334
|
-
}
|
|
2335
|
-
],
|
|
2355
|
+
"$ref": "#/$defs/Common.Count",
|
|
2336
2356
|
"description": "Dropped attributes count"
|
|
2337
2357
|
},
|
|
2338
2358
|
"flags": {
|
|
@@ -2341,19 +2361,11 @@
|
|
|
2341
2361
|
"description": "Flags (trace flags)"
|
|
2342
2362
|
},
|
|
2343
2363
|
"trace_id": {
|
|
2344
|
-
"
|
|
2345
|
-
{
|
|
2346
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
2347
|
-
}
|
|
2348
|
-
],
|
|
2364
|
+
"$ref": "#/$defs/Common.TraceId",
|
|
2349
2365
|
"description": "Associated trace ID"
|
|
2350
2366
|
},
|
|
2351
2367
|
"span_id": {
|
|
2352
|
-
"
|
|
2353
|
-
{
|
|
2354
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2355
|
-
}
|
|
2356
|
-
],
|
|
2368
|
+
"$ref": "#/$defs/Common.SpanId",
|
|
2357
2369
|
"description": "Associated span ID"
|
|
2358
2370
|
},
|
|
2359
2371
|
"event_name": {
|
|
@@ -2361,19 +2373,11 @@
|
|
|
2361
2373
|
"description": "Optional event category whose presence identifies this log record as an event; records with the same name are expected to share one body and attribute schema."
|
|
2362
2374
|
},
|
|
2363
2375
|
"resource": {
|
|
2364
|
-
"
|
|
2365
|
-
{
|
|
2366
|
-
"$ref": "#/$defs/OTel.Resource.Resource"
|
|
2367
|
-
}
|
|
2368
|
-
],
|
|
2376
|
+
"$ref": "#/$defs/OTel.Resource.Resource",
|
|
2369
2377
|
"description": "Resource describing the entity that produced this log"
|
|
2370
2378
|
},
|
|
2371
2379
|
"instrumentation_scope": {
|
|
2372
|
-
"
|
|
2373
|
-
{
|
|
2374
|
-
"$ref": "#/$defs/Common.InstrumentationScope"
|
|
2375
|
-
}
|
|
2376
|
-
],
|
|
2380
|
+
"$ref": "#/$defs/Common.InstrumentationScope",
|
|
2377
2381
|
"description": "Instrumentation scope"
|
|
2378
2382
|
}
|
|
2379
2383
|
},
|
|
@@ -2473,11 +2477,7 @@
|
|
|
2473
2477
|
"description": "Service instance ID (unique per instance)"
|
|
2474
2478
|
},
|
|
2475
2479
|
"service_version": {
|
|
2476
|
-
"
|
|
2477
|
-
{
|
|
2478
|
-
"$ref": "#/$defs/Common.SemVer"
|
|
2479
|
-
}
|
|
2480
|
-
],
|
|
2480
|
+
"$ref": "#/$defs/Common.SemVer",
|
|
2481
2481
|
"description": "Service version"
|
|
2482
2482
|
},
|
|
2483
2483
|
"telemetry_sdk_name": {
|
|
@@ -2485,27 +2485,15 @@
|
|
|
2485
2485
|
"description": "Telemetry SDK name"
|
|
2486
2486
|
},
|
|
2487
2487
|
"telemetry_sdk_language": {
|
|
2488
|
-
"
|
|
2489
|
-
{
|
|
2490
|
-
"$ref": "#/$defs/OTel.Enums.TelemetrySdkLanguage"
|
|
2491
|
-
}
|
|
2492
|
-
],
|
|
2488
|
+
"$ref": "#/$defs/OTel.Enums.TelemetrySdkLanguage",
|
|
2493
2489
|
"description": "Telemetry SDK language"
|
|
2494
2490
|
},
|
|
2495
2491
|
"telemetry_sdk_version": {
|
|
2496
|
-
"
|
|
2497
|
-
{
|
|
2498
|
-
"$ref": "#/$defs/Common.SemVer"
|
|
2499
|
-
}
|
|
2500
|
-
],
|
|
2492
|
+
"$ref": "#/$defs/Common.SemVer",
|
|
2501
2493
|
"description": "Telemetry SDK version"
|
|
2502
2494
|
},
|
|
2503
2495
|
"telemetry_distro_version": {
|
|
2504
|
-
"
|
|
2505
|
-
{
|
|
2506
|
-
"$ref": "#/$defs/Common.SemVer"
|
|
2507
|
-
}
|
|
2508
|
-
],
|
|
2496
|
+
"$ref": "#/$defs/Common.SemVer",
|
|
2509
2497
|
"description": "Telemetry distribution version"
|
|
2510
2498
|
},
|
|
2511
2499
|
"deployment_environment": {
|
|
@@ -2513,11 +2501,7 @@
|
|
|
2513
2501
|
"description": "Deployment environment (e.g., production, staging)"
|
|
2514
2502
|
},
|
|
2515
2503
|
"cloud_provider": {
|
|
2516
|
-
"
|
|
2517
|
-
{
|
|
2518
|
-
"$ref": "#/$defs/OTel.Resource.CloudProvider"
|
|
2519
|
-
}
|
|
2520
|
-
],
|
|
2504
|
+
"$ref": "#/$defs/OTel.Resource.CloudProvider",
|
|
2521
2505
|
"description": "Cloud provider"
|
|
2522
2506
|
},
|
|
2523
2507
|
"cloud_region": {
|
|
@@ -2549,19 +2533,11 @@
|
|
|
2549
2533
|
"description": "Host type (e.g., n1-standard-1)"
|
|
2550
2534
|
},
|
|
2551
2535
|
"host_arch": {
|
|
2552
|
-
"
|
|
2553
|
-
{
|
|
2554
|
-
"$ref": "#/$defs/OTel.Resource.HostArch"
|
|
2555
|
-
}
|
|
2556
|
-
],
|
|
2536
|
+
"$ref": "#/$defs/OTel.Resource.HostArch",
|
|
2557
2537
|
"description": "Host architecture (e.g., amd64, arm64)"
|
|
2558
2538
|
},
|
|
2559
2539
|
"os_type": {
|
|
2560
|
-
"
|
|
2561
|
-
{
|
|
2562
|
-
"$ref": "#/$defs/OTel.Resource.OsType"
|
|
2563
|
-
}
|
|
2564
|
-
],
|
|
2540
|
+
"$ref": "#/$defs/OTel.Resource.OsType",
|
|
2565
2541
|
"description": "Operating system type"
|
|
2566
2542
|
},
|
|
2567
2543
|
"os_description": {
|
|
@@ -2640,11 +2616,7 @@
|
|
|
2640
2616
|
"description": "Additional resource attributes"
|
|
2641
2617
|
},
|
|
2642
2618
|
"dropped_attributes_count": {
|
|
2643
|
-
"
|
|
2644
|
-
{
|
|
2645
|
-
"$ref": "#/$defs/Common.Count"
|
|
2646
|
-
}
|
|
2647
|
-
],
|
|
2619
|
+
"$ref": "#/$defs/Common.Count",
|
|
2648
2620
|
"description": "Dropped attributes count"
|
|
2649
2621
|
},
|
|
2650
2622
|
"entity_refs": {
|
|
@@ -2674,35 +2646,19 @@
|
|
|
2674
2646
|
],
|
|
2675
2647
|
"properties": {
|
|
2676
2648
|
"span_id": {
|
|
2677
|
-
"
|
|
2678
|
-
{
|
|
2679
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2680
|
-
}
|
|
2681
|
-
],
|
|
2649
|
+
"$ref": "#/$defs/Common.SpanId",
|
|
2682
2650
|
"description": "Unique span identifier (16 hex chars)"
|
|
2683
2651
|
},
|
|
2684
2652
|
"trace_id": {
|
|
2685
|
-
"
|
|
2686
|
-
{
|
|
2687
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
2688
|
-
}
|
|
2689
|
-
],
|
|
2653
|
+
"$ref": "#/$defs/Common.TraceId",
|
|
2690
2654
|
"description": "Trace identifier (32 hex chars)"
|
|
2691
2655
|
},
|
|
2692
2656
|
"parent_span_id": {
|
|
2693
|
-
"
|
|
2694
|
-
{
|
|
2695
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2696
|
-
}
|
|
2697
|
-
],
|
|
2657
|
+
"$ref": "#/$defs/Common.SpanId",
|
|
2698
2658
|
"description": "Parent span identifier (null for root spans)"
|
|
2699
2659
|
},
|
|
2700
2660
|
"trace_state": {
|
|
2701
|
-
"
|
|
2702
|
-
{
|
|
2703
|
-
"$ref": "#/$defs/Common.TraceState"
|
|
2704
|
-
}
|
|
2705
|
-
],
|
|
2661
|
+
"$ref": "#/$defs/Common.TraceState",
|
|
2706
2662
|
"description": "W3C trace state"
|
|
2707
2663
|
},
|
|
2708
2664
|
"name": {
|
|
@@ -2711,27 +2667,15 @@
|
|
|
2711
2667
|
"description": "Human-readable span name"
|
|
2712
2668
|
},
|
|
2713
2669
|
"kind": {
|
|
2714
|
-
"
|
|
2715
|
-
{
|
|
2716
|
-
"$ref": "#/$defs/OTel.Enums.SpanKind"
|
|
2717
|
-
}
|
|
2718
|
-
],
|
|
2670
|
+
"$ref": "#/$defs/OTel.Enums.SpanKind",
|
|
2719
2671
|
"description": "Span kind"
|
|
2720
2672
|
},
|
|
2721
2673
|
"start_time_unix_nano": {
|
|
2722
|
-
"
|
|
2723
|
-
{
|
|
2724
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2725
|
-
}
|
|
2726
|
-
],
|
|
2674
|
+
"$ref": "#/$defs/Common.UnixNanos",
|
|
2727
2675
|
"description": "Start timestamp in nanoseconds since epoch"
|
|
2728
2676
|
},
|
|
2729
2677
|
"end_time_unix_nano": {
|
|
2730
|
-
"
|
|
2731
|
-
{
|
|
2732
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2733
|
-
}
|
|
2734
|
-
],
|
|
2678
|
+
"$ref": "#/$defs/Common.UnixNanos",
|
|
2735
2679
|
"description": "End timestamp in nanoseconds since epoch"
|
|
2736
2680
|
},
|
|
2737
2681
|
"attributes": {
|
|
@@ -2742,11 +2686,7 @@
|
|
|
2742
2686
|
"description": "Span attributes"
|
|
2743
2687
|
},
|
|
2744
2688
|
"dropped_attributes_count": {
|
|
2745
|
-
"
|
|
2746
|
-
{
|
|
2747
|
-
"$ref": "#/$defs/Common.Count"
|
|
2748
|
-
}
|
|
2749
|
-
],
|
|
2689
|
+
"$ref": "#/$defs/Common.Count",
|
|
2750
2690
|
"description": "Dropped attributes count"
|
|
2751
2691
|
},
|
|
2752
2692
|
"events": {
|
|
@@ -2757,11 +2697,7 @@
|
|
|
2757
2697
|
"description": "Span events (logs attached to span)"
|
|
2758
2698
|
},
|
|
2759
2699
|
"dropped_events_count": {
|
|
2760
|
-
"
|
|
2761
|
-
{
|
|
2762
|
-
"$ref": "#/$defs/Common.Count"
|
|
2763
|
-
}
|
|
2764
|
-
],
|
|
2700
|
+
"$ref": "#/$defs/Common.Count",
|
|
2765
2701
|
"description": "Dropped events count"
|
|
2766
2702
|
},
|
|
2767
2703
|
"links": {
|
|
@@ -2772,19 +2708,11 @@
|
|
|
2772
2708
|
"description": "Links to other spans"
|
|
2773
2709
|
},
|
|
2774
2710
|
"dropped_links_count": {
|
|
2775
|
-
"
|
|
2776
|
-
{
|
|
2777
|
-
"$ref": "#/$defs/Common.Count"
|
|
2778
|
-
}
|
|
2779
|
-
],
|
|
2711
|
+
"$ref": "#/$defs/Common.Count",
|
|
2780
2712
|
"description": "Dropped links count"
|
|
2781
2713
|
},
|
|
2782
2714
|
"status": {
|
|
2783
|
-
"
|
|
2784
|
-
{
|
|
2785
|
-
"$ref": "#/$defs/OTel.Traces.SpanStatus"
|
|
2786
|
-
}
|
|
2787
|
-
],
|
|
2715
|
+
"$ref": "#/$defs/OTel.Traces.SpanStatus",
|
|
2788
2716
|
"description": "Span status"
|
|
2789
2717
|
},
|
|
2790
2718
|
"flags": {
|
|
@@ -2793,19 +2721,11 @@
|
|
|
2793
2721
|
"description": "Span flags"
|
|
2794
2722
|
},
|
|
2795
2723
|
"resource": {
|
|
2796
|
-
"
|
|
2797
|
-
{
|
|
2798
|
-
"$ref": "#/$defs/OTel.Resource.Resource"
|
|
2799
|
-
}
|
|
2800
|
-
],
|
|
2724
|
+
"$ref": "#/$defs/OTel.Resource.Resource",
|
|
2801
2725
|
"description": "Resource describing the entity that produced this span"
|
|
2802
2726
|
},
|
|
2803
2727
|
"instrumentation_scope": {
|
|
2804
|
-
"
|
|
2805
|
-
{
|
|
2806
|
-
"$ref": "#/$defs/Common.InstrumentationScope"
|
|
2807
|
-
}
|
|
2808
|
-
],
|
|
2728
|
+
"$ref": "#/$defs/Common.InstrumentationScope",
|
|
2809
2729
|
"description": "Instrumentation scope"
|
|
2810
2730
|
}
|
|
2811
2731
|
},
|
|
@@ -2827,11 +2747,7 @@
|
|
|
2827
2747
|
"description": "Event name"
|
|
2828
2748
|
},
|
|
2829
2749
|
"time_unix_nano": {
|
|
2830
|
-
"
|
|
2831
|
-
{
|
|
2832
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2833
|
-
}
|
|
2834
|
-
],
|
|
2750
|
+
"$ref": "#/$defs/Common.UnixNanos",
|
|
2835
2751
|
"description": "Event timestamp in nanoseconds since epoch"
|
|
2836
2752
|
},
|
|
2837
2753
|
"attributes": {
|
|
@@ -2842,11 +2758,7 @@
|
|
|
2842
2758
|
"description": "Event attributes"
|
|
2843
2759
|
},
|
|
2844
2760
|
"dropped_attributes_count": {
|
|
2845
|
-
"
|
|
2846
|
-
{
|
|
2847
|
-
"$ref": "#/$defs/Common.Count"
|
|
2848
|
-
}
|
|
2849
|
-
],
|
|
2761
|
+
"$ref": "#/$defs/Common.Count",
|
|
2850
2762
|
"description": "Dropped attributes count"
|
|
2851
2763
|
}
|
|
2852
2764
|
},
|
|
@@ -2863,27 +2775,15 @@
|
|
|
2863
2775
|
],
|
|
2864
2776
|
"properties": {
|
|
2865
2777
|
"trace_id": {
|
|
2866
|
-
"
|
|
2867
|
-
{
|
|
2868
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
2869
|
-
}
|
|
2870
|
-
],
|
|
2778
|
+
"$ref": "#/$defs/Common.TraceId",
|
|
2871
2779
|
"description": "Linked trace ID"
|
|
2872
2780
|
},
|
|
2873
2781
|
"span_id": {
|
|
2874
|
-
"
|
|
2875
|
-
{
|
|
2876
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2877
|
-
}
|
|
2878
|
-
],
|
|
2782
|
+
"$ref": "#/$defs/Common.SpanId",
|
|
2879
2783
|
"description": "Linked span ID"
|
|
2880
2784
|
},
|
|
2881
2785
|
"trace_state": {
|
|
2882
|
-
"
|
|
2883
|
-
{
|
|
2884
|
-
"$ref": "#/$defs/Common.TraceState"
|
|
2885
|
-
}
|
|
2886
|
-
],
|
|
2786
|
+
"$ref": "#/$defs/Common.TraceState",
|
|
2887
2787
|
"description": "Trace state of the linked span"
|
|
2888
2788
|
},
|
|
2889
2789
|
"attributes": {
|
|
@@ -2894,11 +2794,7 @@
|
|
|
2894
2794
|
"description": "Link attributes"
|
|
2895
2795
|
},
|
|
2896
2796
|
"dropped_attributes_count": {
|
|
2897
|
-
"
|
|
2898
|
-
{
|
|
2899
|
-
"$ref": "#/$defs/Common.Count"
|
|
2900
|
-
}
|
|
2901
|
-
],
|
|
2797
|
+
"$ref": "#/$defs/Common.Count",
|
|
2902
2798
|
"description": "Dropped attributes count"
|
|
2903
2799
|
},
|
|
2904
2800
|
"flags": {
|
|
@@ -2916,19 +2812,11 @@
|
|
|
2916
2812
|
"type": "object",
|
|
2917
2813
|
"properties": {
|
|
2918
2814
|
"trace_id": {
|
|
2919
|
-
"
|
|
2920
|
-
{
|
|
2921
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
2922
|
-
}
|
|
2923
|
-
],
|
|
2815
|
+
"$ref": "#/$defs/Common.TraceId",
|
|
2924
2816
|
"description": "Filter by trace ID"
|
|
2925
2817
|
},
|
|
2926
2818
|
"parent_span_id": {
|
|
2927
|
-
"
|
|
2928
|
-
{
|
|
2929
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2930
|
-
}
|
|
2931
|
-
],
|
|
2819
|
+
"$ref": "#/$defs/Common.SpanId",
|
|
2932
2820
|
"description": "Filter by parent span ID"
|
|
2933
2821
|
},
|
|
2934
2822
|
"name": {
|
|
@@ -2936,11 +2824,7 @@
|
|
|
2936
2824
|
"description": "Filter by span name (supports wildcards)"
|
|
2937
2825
|
},
|
|
2938
2826
|
"kind": {
|
|
2939
|
-
"
|
|
2940
|
-
{
|
|
2941
|
-
"$ref": "#/$defs/OTel.Enums.SpanKind"
|
|
2942
|
-
}
|
|
2943
|
-
],
|
|
2827
|
+
"$ref": "#/$defs/OTel.Enums.SpanKind",
|
|
2944
2828
|
"description": "Filter by span kind"
|
|
2945
2829
|
},
|
|
2946
2830
|
"service_name": {
|
|
@@ -2948,27 +2832,15 @@
|
|
|
2948
2832
|
"description": "Filter by service name"
|
|
2949
2833
|
},
|
|
2950
2834
|
"status_code": {
|
|
2951
|
-
"
|
|
2952
|
-
{
|
|
2953
|
-
"$ref": "#/$defs/OTel.Enums.SpanStatusCode"
|
|
2954
|
-
}
|
|
2955
|
-
],
|
|
2835
|
+
"$ref": "#/$defs/OTel.Enums.SpanStatusCode",
|
|
2956
2836
|
"description": "Filter by status code"
|
|
2957
2837
|
},
|
|
2958
2838
|
"min_duration_ns": {
|
|
2959
|
-
"
|
|
2960
|
-
{
|
|
2961
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
2962
|
-
}
|
|
2963
|
-
],
|
|
2839
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
2964
2840
|
"description": "Minimum duration in nanoseconds"
|
|
2965
2841
|
},
|
|
2966
2842
|
"max_duration_ns": {
|
|
2967
|
-
"
|
|
2968
|
-
{
|
|
2969
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
2970
|
-
}
|
|
2971
|
-
],
|
|
2843
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
2972
2844
|
"description": "Maximum duration in nanoseconds"
|
|
2973
2845
|
},
|
|
2974
2846
|
"attribute": {
|
|
@@ -2997,27 +2869,15 @@
|
|
|
2997
2869
|
],
|
|
2998
2870
|
"properties": {
|
|
2999
2871
|
"total_count": {
|
|
3000
|
-
"
|
|
3001
|
-
{
|
|
3002
|
-
"$ref": "#/$defs/Common.Count"
|
|
3003
|
-
}
|
|
3004
|
-
],
|
|
2872
|
+
"$ref": "#/$defs/Common.Count",
|
|
3005
2873
|
"description": "Total span count"
|
|
3006
2874
|
},
|
|
3007
2875
|
"error_count": {
|
|
3008
|
-
"
|
|
3009
|
-
{
|
|
3010
|
-
"$ref": "#/$defs/Common.Count"
|
|
3011
|
-
}
|
|
3012
|
-
],
|
|
2876
|
+
"$ref": "#/$defs/Common.Count",
|
|
3013
2877
|
"description": "Error count"
|
|
3014
2878
|
},
|
|
3015
2879
|
"error_rate": {
|
|
3016
|
-
"
|
|
3017
|
-
{
|
|
3018
|
-
"$ref": "#/$defs/Common.Ratio"
|
|
3019
|
-
}
|
|
3020
|
-
],
|
|
2880
|
+
"$ref": "#/$defs/Common.Ratio",
|
|
3021
2881
|
"description": "Error rate (0.0 - 1.0)"
|
|
3022
2882
|
},
|
|
3023
2883
|
"avg_duration_ns": {
|
|
@@ -3026,43 +2886,23 @@
|
|
|
3026
2886
|
"description": "Average duration in nanoseconds"
|
|
3027
2887
|
},
|
|
3028
2888
|
"p50_duration_ns": {
|
|
3029
|
-
"
|
|
3030
|
-
{
|
|
3031
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3032
|
-
}
|
|
3033
|
-
],
|
|
2889
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
3034
2890
|
"description": "P50 duration in nanoseconds"
|
|
3035
2891
|
},
|
|
3036
2892
|
"p90_duration_ns": {
|
|
3037
|
-
"
|
|
3038
|
-
{
|
|
3039
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3040
|
-
}
|
|
3041
|
-
],
|
|
2893
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
3042
2894
|
"description": "P90 duration in nanoseconds"
|
|
3043
2895
|
},
|
|
3044
2896
|
"p99_duration_ns": {
|
|
3045
|
-
"
|
|
3046
|
-
{
|
|
3047
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3048
|
-
}
|
|
3049
|
-
],
|
|
2897
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
3050
2898
|
"description": "P99 duration in nanoseconds"
|
|
3051
2899
|
},
|
|
3052
2900
|
"min_duration_ns": {
|
|
3053
|
-
"
|
|
3054
|
-
{
|
|
3055
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3056
|
-
}
|
|
3057
|
-
],
|
|
2901
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
3058
2902
|
"description": "Minimum duration in nanoseconds"
|
|
3059
2903
|
},
|
|
3060
2904
|
"max_duration_ns": {
|
|
3061
|
-
"
|
|
3062
|
-
{
|
|
3063
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3064
|
-
}
|
|
3065
|
-
],
|
|
2905
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
3066
2906
|
"description": "Maximum duration in nanoseconds"
|
|
3067
2907
|
},
|
|
3068
2908
|
"throughput_per_second": {
|
|
@@ -3104,11 +2944,7 @@
|
|
|
3104
2944
|
"description": "Dimension value (e.g., service name)"
|
|
3105
2945
|
},
|
|
3106
2946
|
"count": {
|
|
3107
|
-
"
|
|
3108
|
-
{
|
|
3109
|
-
"$ref": "#/$defs/Common.Count"
|
|
3110
|
-
}
|
|
3111
|
-
],
|
|
2947
|
+
"$ref": "#/$defs/Common.Count",
|
|
3112
2948
|
"description": "Span count for this dimension"
|
|
3113
2949
|
},
|
|
3114
2950
|
"avg_duration_ns": {
|
|
@@ -3117,11 +2953,7 @@
|
|
|
3117
2953
|
"description": "Average duration in nanoseconds"
|
|
3118
2954
|
},
|
|
3119
2955
|
"error_rate": {
|
|
3120
|
-
"
|
|
3121
|
-
{
|
|
3122
|
-
"$ref": "#/$defs/Common.Ratio"
|
|
3123
|
-
}
|
|
3124
|
-
],
|
|
2956
|
+
"$ref": "#/$defs/Common.Ratio",
|
|
3125
2957
|
"description": "Error rate for this dimension"
|
|
3126
2958
|
}
|
|
3127
2959
|
},
|
|
@@ -3137,11 +2969,7 @@
|
|
|
3137
2969
|
],
|
|
3138
2970
|
"properties": {
|
|
3139
2971
|
"code": {
|
|
3140
|
-
"
|
|
3141
|
-
{
|
|
3142
|
-
"$ref": "#/$defs/OTel.Enums.SpanStatusCode"
|
|
3143
|
-
}
|
|
3144
|
-
],
|
|
2972
|
+
"$ref": "#/$defs/OTel.Enums.SpanStatusCode",
|
|
3145
2973
|
"description": "Status code"
|
|
3146
2974
|
},
|
|
3147
2975
|
"message": {
|
|
@@ -3191,19 +3019,11 @@
|
|
|
3191
3019
|
],
|
|
3192
3020
|
"properties": {
|
|
3193
3021
|
"trace_id": {
|
|
3194
|
-
"
|
|
3195
|
-
{
|
|
3196
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
3197
|
-
}
|
|
3198
|
-
],
|
|
3022
|
+
"$ref": "#/$defs/Common.TraceId",
|
|
3199
3023
|
"description": "Trace identifier"
|
|
3200
3024
|
},
|
|
3201
3025
|
"root_span": {
|
|
3202
|
-
"
|
|
3203
|
-
{
|
|
3204
|
-
"$ref": "#/$defs/OTel.Traces.Span"
|
|
3205
|
-
}
|
|
3206
|
-
],
|
|
3026
|
+
"$ref": "#/$defs/OTel.Traces.Span",
|
|
3207
3027
|
"description": "Root span of the trace"
|
|
3208
3028
|
},
|
|
3209
3029
|
"span_count": {
|
|
@@ -3212,11 +3032,7 @@
|
|
|
3212
3032
|
"description": "Total span count"
|
|
3213
3033
|
},
|
|
3214
3034
|
"duration_ns": {
|
|
3215
|
-
"
|
|
3216
|
-
{
|
|
3217
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3218
|
-
}
|
|
3219
|
-
],
|
|
3035
|
+
"$ref": "#/$defs/Common.DurationNs",
|
|
3220
3036
|
"description": "Trace duration in nanoseconds"
|
|
3221
3037
|
},
|
|
3222
3038
|
"start_time": {
|
|
@@ -4545,11 +4361,7 @@
|
|
|
4545
4361
|
"$ref": "#/$defs/Workbench.WorkbenchExecutionRequest"
|
|
4546
4362
|
},
|
|
4547
4363
|
"effect": {
|
|
4548
|
-
"
|
|
4549
|
-
{
|
|
4550
|
-
"$ref": "#/$defs/Workbench.WorkbenchExecutionEffect"
|
|
4551
|
-
}
|
|
4552
|
-
],
|
|
4364
|
+
"$ref": "#/$defs/Workbench.WorkbenchExecutionEffect",
|
|
4553
4365
|
"description": "Server-derived effect from the SDK-validated discovered Tool and its annotations."
|
|
4554
4366
|
},
|
|
4555
4367
|
"confirmation": {
|
|
@@ -4749,11 +4561,7 @@
|
|
|
4749
4561
|
"$ref": "#/$defs/Workbench.WorkbenchSecretReference"
|
|
4750
4562
|
},
|
|
4751
4563
|
"scheme": {
|
|
4752
|
-
"
|
|
4753
|
-
{
|
|
4754
|
-
"$ref": "#/$defs/Workbench.WorkbenchHeaderSecretScheme"
|
|
4755
|
-
}
|
|
4756
|
-
],
|
|
4564
|
+
"$ref": "#/$defs/Workbench.WorkbenchHeaderSecretScheme",
|
|
4757
4565
|
"description": "Optional HTTP authentication scheme applied to the resolved secret. Omit for a raw header value."
|
|
4758
4566
|
}
|
|
4759
4567
|
},
|