@ancplua/qyl-api-schema 1.0.3 → 1.0.4
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/README.md +4 -0
- package/api/routes.tsp +0 -90
- package/generated/json-schema/qyl-api-schema.json +120 -1360
- package/generated/openapi/qyl.openapi.json +4101 -6025
- package/generated/ts-runtime/api.d.ts +0 -228
- package/generated/ts-runtime/api.js +0 -43
- package/index.tsp +0 -2
- package/models/runner-mcp.tsp +0 -4
- package/otel/enums.tsp +0 -119
- package/otel/otel-conventions.tsp +0 -2
- package/package.json +1 -3
- package/otel/metrics.tsp +0 -237
- package/otel/profiles.tsp +0 -335
|
@@ -2047,22 +2047,6 @@
|
|
|
2047
2047
|
},
|
|
2048
2048
|
"description": "Structured output for search_logs."
|
|
2049
2049
|
},
|
|
2050
|
-
"OTel.Enums.AggregationTemporality": {
|
|
2051
|
-
"type": "number",
|
|
2052
|
-
"enum": [
|
|
2053
|
-
1,
|
|
2054
|
-
2
|
|
2055
|
-
],
|
|
2056
|
-
"description": "Aggregation temporality for metrics"
|
|
2057
|
-
},
|
|
2058
|
-
"OTel.Enums.DataPointFlags": {
|
|
2059
|
-
"type": "number",
|
|
2060
|
-
"enum": [
|
|
2061
|
-
0,
|
|
2062
|
-
1
|
|
2063
|
-
],
|
|
2064
|
-
"description": "Data point flags"
|
|
2065
|
-
},
|
|
2066
2050
|
"OTel.Enums.ErrorType": {
|
|
2067
2051
|
"type": "string",
|
|
2068
2052
|
"enum": [
|
|
@@ -2093,57 +2077,6 @@
|
|
|
2093
2077
|
],
|
|
2094
2078
|
"description": "Event domain (namespace for event types)"
|
|
2095
2079
|
},
|
|
2096
|
-
"OTel.Enums.InstrumentKind": {
|
|
2097
|
-
"type": "string",
|
|
2098
|
-
"enum": [
|
|
2099
|
-
"Counter",
|
|
2100
|
-
"UpDownCounter",
|
|
2101
|
-
"Histogram",
|
|
2102
|
-
"Gauge",
|
|
2103
|
-
"ObservableCounter",
|
|
2104
|
-
"ObservableGauge",
|
|
2105
|
-
"ObservableUpDownCounter"
|
|
2106
|
-
],
|
|
2107
|
-
"description": "Metric instrument kinds per OTel specification"
|
|
2108
|
-
},
|
|
2109
|
-
"OTel.Enums.MetricType": {
|
|
2110
|
-
"type": "string",
|
|
2111
|
-
"enum": [
|
|
2112
|
-
"gauge",
|
|
2113
|
-
"sum",
|
|
2114
|
-
"histogram",
|
|
2115
|
-
"exponential_histogram",
|
|
2116
|
-
"summary"
|
|
2117
|
-
],
|
|
2118
|
-
"description": "Metric data type"
|
|
2119
|
-
},
|
|
2120
|
-
"OTel.Enums.OriginalPayloadFormat": {
|
|
2121
|
-
"type": "string",
|
|
2122
|
-
"enum": [
|
|
2123
|
-
"pprof",
|
|
2124
|
-
"jfr",
|
|
2125
|
-
"linux_perf"
|
|
2126
|
-
],
|
|
2127
|
-
"description": "Original payload format for profile data"
|
|
2128
|
-
},
|
|
2129
|
-
"OTel.Enums.ProfileFrameType": {
|
|
2130
|
-
"type": "string",
|
|
2131
|
-
"enum": [
|
|
2132
|
-
"beam",
|
|
2133
|
-
"cpython",
|
|
2134
|
-
"dotnet",
|
|
2135
|
-
"go",
|
|
2136
|
-
"jvm",
|
|
2137
|
-
"kernel",
|
|
2138
|
-
"native",
|
|
2139
|
-
"perl",
|
|
2140
|
-
"php",
|
|
2141
|
-
"ruby",
|
|
2142
|
-
"rust",
|
|
2143
|
-
"v8js"
|
|
2144
|
-
],
|
|
2145
|
-
"description": "Profile frame type — interpreter or compiler of a single frame"
|
|
2146
|
-
},
|
|
2147
2080
|
"OTel.Enums.SeverityNumber": {
|
|
2148
2081
|
"type": "number",
|
|
2149
2082
|
"enum": [
|
|
@@ -2280,1262 +2213,198 @@
|
|
|
2280
2213
|
"not": {}
|
|
2281
2214
|
},
|
|
2282
2215
|
"description": "Array log body"
|
|
2283
|
-
},
|
|
2284
|
-
"OTel.Logs.LogBodyBytes": {
|
|
2285
|
-
"type": "object",
|
|
2286
|
-
"required": [
|
|
2287
|
-
"bytes_value"
|
|
2288
|
-
],
|
|
2289
|
-
"properties": {
|
|
2290
|
-
"bytes_value": {
|
|
2291
|
-
"type": "string",
|
|
2292
|
-
"contentEncoding": "base64",
|
|
2293
|
-
"description": "Binary value (base64 encoded)"
|
|
2294
|
-
}
|
|
2295
|
-
},
|
|
2296
|
-
"unevaluatedProperties": {
|
|
2297
|
-
"not": {}
|
|
2298
|
-
},
|
|
2299
|
-
"description": "Binary log body"
|
|
2300
|
-
},
|
|
2301
|
-
"OTel.Logs.LogBodyKvList": {
|
|
2302
|
-
"type": "object",
|
|
2303
|
-
"required": [
|
|
2304
|
-
"kv_list_value"
|
|
2305
|
-
],
|
|
2306
|
-
"properties": {
|
|
2307
|
-
"kv_list_value": {
|
|
2308
|
-
"type": "array",
|
|
2309
|
-
"items": {
|
|
2310
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
2311
|
-
},
|
|
2312
|
-
"description": "Key-value pairs"
|
|
2313
|
-
}
|
|
2314
|
-
},
|
|
2315
|
-
"unevaluatedProperties": {
|
|
2316
|
-
"not": {}
|
|
2317
|
-
},
|
|
2318
|
-
"description": "Structured key-value log body"
|
|
2319
|
-
},
|
|
2320
|
-
"OTel.Logs.LogBodyString": {
|
|
2321
|
-
"type": "object",
|
|
2322
|
-
"required": [
|
|
2323
|
-
"string_value"
|
|
2324
|
-
],
|
|
2325
|
-
"properties": {
|
|
2326
|
-
"string_value": {
|
|
2327
|
-
"type": "string",
|
|
2328
|
-
"description": "String value"
|
|
2329
|
-
}
|
|
2330
|
-
},
|
|
2331
|
-
"unevaluatedProperties": {
|
|
2332
|
-
"not": {}
|
|
2333
|
-
},
|
|
2334
|
-
"description": "String log body"
|
|
2335
|
-
},
|
|
2336
|
-
"OTel.Logs.LogRecord": {
|
|
2337
|
-
"type": "object",
|
|
2338
|
-
"required": [
|
|
2339
|
-
"time_unix_nano",
|
|
2340
|
-
"observed_time_unix_nano",
|
|
2341
|
-
"severity_number",
|
|
2342
|
-
"body",
|
|
2343
|
-
"resource"
|
|
2344
|
-
],
|
|
2345
|
-
"properties": {
|
|
2346
|
-
"time_unix_nano": {
|
|
2347
|
-
"allOf": [
|
|
2348
|
-
{
|
|
2349
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2350
|
-
}
|
|
2351
|
-
],
|
|
2352
|
-
"description": "Timestamp when the event occurred (nanoseconds since epoch)"
|
|
2353
|
-
},
|
|
2354
|
-
"observed_time_unix_nano": {
|
|
2355
|
-
"allOf": [
|
|
2356
|
-
{
|
|
2357
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
2358
|
-
}
|
|
2359
|
-
],
|
|
2360
|
-
"description": "Timestamp when the log was observed/collected (nanoseconds since epoch)"
|
|
2361
|
-
},
|
|
2362
|
-
"severity_number": {
|
|
2363
|
-
"allOf": [
|
|
2364
|
-
{
|
|
2365
|
-
"$ref": "#/$defs/OTel.Enums.SeverityNumber"
|
|
2366
|
-
}
|
|
2367
|
-
],
|
|
2368
|
-
"description": "Severity number (1-24)"
|
|
2369
|
-
},
|
|
2370
|
-
"severity_text": {
|
|
2371
|
-
"allOf": [
|
|
2372
|
-
{
|
|
2373
|
-
"$ref": "#/$defs/OTel.Enums.SeverityText"
|
|
2374
|
-
}
|
|
2375
|
-
],
|
|
2376
|
-
"description": "Severity text (DEBUG, INFO, WARN, ERROR, etc.)"
|
|
2377
|
-
},
|
|
2378
|
-
"body": {
|
|
2379
|
-
"allOf": [
|
|
2380
|
-
{
|
|
2381
|
-
"$ref": "#/$defs/OTel.Logs.LogBody"
|
|
2382
|
-
}
|
|
2383
|
-
],
|
|
2384
|
-
"description": "Log body - the main content"
|
|
2385
|
-
},
|
|
2386
|
-
"attributes": {
|
|
2387
|
-
"type": "array",
|
|
2388
|
-
"items": {
|
|
2389
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
2390
|
-
},
|
|
2391
|
-
"description": "Log attributes"
|
|
2392
|
-
},
|
|
2393
|
-
"dropped_attributes_count": {
|
|
2394
|
-
"allOf": [
|
|
2395
|
-
{
|
|
2396
|
-
"$ref": "#/$defs/Common.Count"
|
|
2397
|
-
}
|
|
2398
|
-
],
|
|
2399
|
-
"description": "Dropped attributes count"
|
|
2400
|
-
},
|
|
2401
|
-
"flags": {
|
|
2402
|
-
"type": "integer",
|
|
2403
|
-
"format": "int32",
|
|
2404
|
-
"description": "Flags (trace flags)"
|
|
2405
|
-
},
|
|
2406
|
-
"trace_id": {
|
|
2407
|
-
"allOf": [
|
|
2408
|
-
{
|
|
2409
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
2410
|
-
}
|
|
2411
|
-
],
|
|
2412
|
-
"description": "Associated trace ID"
|
|
2413
|
-
},
|
|
2414
|
-
"span_id": {
|
|
2415
|
-
"allOf": [
|
|
2416
|
-
{
|
|
2417
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2418
|
-
}
|
|
2419
|
-
],
|
|
2420
|
-
"description": "Associated span ID"
|
|
2421
|
-
},
|
|
2422
|
-
"event_name": {
|
|
2423
|
-
"type": "string",
|
|
2424
|
-
"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."
|
|
2425
|
-
},
|
|
2426
|
-
"resource": {
|
|
2427
|
-
"allOf": [
|
|
2428
|
-
{
|
|
2429
|
-
"$ref": "#/$defs/OTel.Resource.Resource"
|
|
2430
|
-
}
|
|
2431
|
-
],
|
|
2432
|
-
"description": "Resource describing the entity that produced this log"
|
|
2433
|
-
},
|
|
2434
|
-
"instrumentation_scope": {
|
|
2435
|
-
"allOf": [
|
|
2436
|
-
{
|
|
2437
|
-
"$ref": "#/$defs/Common.InstrumentationScope"
|
|
2438
|
-
}
|
|
2439
|
-
],
|
|
2440
|
-
"description": "Instrumentation scope"
|
|
2441
|
-
}
|
|
2442
|
-
},
|
|
2443
|
-
"unevaluatedProperties": {
|
|
2444
|
-
"not": {}
|
|
2445
|
-
},
|
|
2446
|
-
"description": "OpenTelemetry Log Record"
|
|
2447
|
-
},
|
|
2448
|
-
"OTel.Logs.LogTemplate": {
|
|
2449
|
-
"type": "object",
|
|
2450
|
-
"required": [
|
|
2451
|
-
"template",
|
|
2452
|
-
"parameters"
|
|
2453
|
-
],
|
|
2454
|
-
"properties": {
|
|
2455
|
-
"template": {
|
|
2456
|
-
"type": "string",
|
|
2457
|
-
"description": "Template string with {placeholder} syntax"
|
|
2458
|
-
},
|
|
2459
|
-
"parameters": {
|
|
2460
|
-
"type": "array",
|
|
2461
|
-
"items": {
|
|
2462
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
2463
|
-
},
|
|
2464
|
-
"description": "Template parameters"
|
|
2465
|
-
},
|
|
2466
|
-
"rendered_message": {
|
|
2467
|
-
"type": "string",
|
|
2468
|
-
"description": "Rendered message"
|
|
2469
|
-
}
|
|
2470
|
-
},
|
|
2471
|
-
"unevaluatedProperties": {
|
|
2472
|
-
"not": {}
|
|
2473
|
-
},
|
|
2474
|
-
"description": "Log message template with placeholders"
|
|
2475
|
-
},
|
|
2476
|
-
"OTel.Metrics.ExponentialHistogramBuckets": {
|
|
2477
|
-
"type": "object",
|
|
2478
|
-
"required": [
|
|
2479
|
-
"offset",
|
|
2480
|
-
"bucket_counts"
|
|
2481
|
-
],
|
|
2482
|
-
"properties": {
|
|
2483
|
-
"offset": {
|
|
2484
|
-
"type": "integer",
|
|
2485
|
-
"format": "int32",
|
|
2486
|
-
"description": "Index of the first bucket count."
|
|
2487
|
-
},
|
|
2488
|
-
"bucket_counts": {
|
|
2489
|
-
"type": "array",
|
|
2490
|
-
"items": {
|
|
2491
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
2492
|
-
}
|
|
2493
|
-
}
|
|
2494
|
-
},
|
|
2495
|
-
"unevaluatedProperties": {
|
|
2496
|
-
"not": {}
|
|
2497
|
-
},
|
|
2498
|
-
"description": "Bucket range used by an OTLP exponential histogram data point."
|
|
2499
|
-
},
|
|
2500
|
-
"OTel.Metrics.ExponentialHistogramMetricPoint": {
|
|
2501
|
-
"type": "object",
|
|
2502
|
-
"required": [
|
|
2503
|
-
"type",
|
|
2504
|
-
"count",
|
|
2505
|
-
"scale",
|
|
2506
|
-
"zero_count",
|
|
2507
|
-
"zero_threshold",
|
|
2508
|
-
"positive",
|
|
2509
|
-
"negative",
|
|
2510
|
-
"aggregation_temporality"
|
|
2511
|
-
],
|
|
2512
|
-
"properties": {
|
|
2513
|
-
"type": {
|
|
2514
|
-
"type": "string",
|
|
2515
|
-
"enum": [
|
|
2516
|
-
"exponential_histogram"
|
|
2517
|
-
]
|
|
2518
|
-
},
|
|
2519
|
-
"count": {
|
|
2520
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
2521
|
-
},
|
|
2522
|
-
"sum": {
|
|
2523
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2524
|
-
},
|
|
2525
|
-
"scale": {
|
|
2526
|
-
"type": "integer",
|
|
2527
|
-
"format": "int32"
|
|
2528
|
-
},
|
|
2529
|
-
"zero_count": {
|
|
2530
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
2531
|
-
},
|
|
2532
|
-
"zero_threshold": {
|
|
2533
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2534
|
-
},
|
|
2535
|
-
"positive": {
|
|
2536
|
-
"$ref": "#/$defs/OTel.Metrics.ExponentialHistogramBuckets"
|
|
2537
|
-
},
|
|
2538
|
-
"negative": {
|
|
2539
|
-
"$ref": "#/$defs/OTel.Metrics.ExponentialHistogramBuckets"
|
|
2540
|
-
},
|
|
2541
|
-
"min": {
|
|
2542
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2543
|
-
},
|
|
2544
|
-
"max": {
|
|
2545
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2546
|
-
},
|
|
2547
|
-
"aggregation_temporality": {
|
|
2548
|
-
"$ref": "#/$defs/OTel.Enums.AggregationTemporality"
|
|
2549
|
-
},
|
|
2550
|
-
"exemplars": {
|
|
2551
|
-
"type": "array",
|
|
2552
|
-
"items": {
|
|
2553
|
-
"$ref": "#/$defs/OTel.Metrics.MetricExemplar"
|
|
2554
|
-
}
|
|
2555
|
-
}
|
|
2556
|
-
},
|
|
2557
|
-
"unevaluatedProperties": {
|
|
2558
|
-
"not": {}
|
|
2559
|
-
},
|
|
2560
|
-
"allOf": [
|
|
2561
|
-
{
|
|
2562
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPointBase"
|
|
2563
|
-
}
|
|
2564
|
-
],
|
|
2565
|
-
"description": "Base-2 exponential histogram measurement."
|
|
2566
|
-
},
|
|
2567
|
-
"OTel.Metrics.GaugeMetricPoint": {
|
|
2568
|
-
"type": "object",
|
|
2569
|
-
"required": [
|
|
2570
|
-
"type"
|
|
2571
|
-
],
|
|
2572
|
-
"properties": {
|
|
2573
|
-
"type": {
|
|
2574
|
-
"type": "string",
|
|
2575
|
-
"enum": [
|
|
2576
|
-
"gauge"
|
|
2577
|
-
]
|
|
2578
|
-
},
|
|
2579
|
-
"value": {
|
|
2580
|
-
"allOf": [
|
|
2581
|
-
{
|
|
2582
|
-
"$ref": "#/$defs/OTel.Metrics.MetricNumberValue"
|
|
2583
|
-
}
|
|
2584
|
-
],
|
|
2585
|
-
"description": "Recorded value, absent when flags contain NO_RECORDED_VALUE (bit 1)."
|
|
2586
|
-
},
|
|
2587
|
-
"exemplars": {
|
|
2588
|
-
"type": "array",
|
|
2589
|
-
"items": {
|
|
2590
|
-
"$ref": "#/$defs/OTel.Metrics.MetricExemplar"
|
|
2591
|
-
}
|
|
2592
|
-
}
|
|
2593
|
-
},
|
|
2594
|
-
"unevaluatedProperties": {
|
|
2595
|
-
"not": {}
|
|
2596
|
-
},
|
|
2597
|
-
"allOf": [
|
|
2598
|
-
{
|
|
2599
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPointBase"
|
|
2600
|
-
}
|
|
2601
|
-
],
|
|
2602
|
-
"description": "Instantaneous gauge measurement."
|
|
2603
|
-
},
|
|
2604
|
-
"OTel.Metrics.HistogramMetricPoint": {
|
|
2605
|
-
"type": "object",
|
|
2606
|
-
"required": [
|
|
2607
|
-
"type",
|
|
2608
|
-
"count",
|
|
2609
|
-
"bucket_counts",
|
|
2610
|
-
"explicit_bounds",
|
|
2611
|
-
"aggregation_temporality"
|
|
2612
|
-
],
|
|
2613
|
-
"properties": {
|
|
2614
|
-
"type": {
|
|
2615
|
-
"type": "string",
|
|
2616
|
-
"enum": [
|
|
2617
|
-
"histogram"
|
|
2618
|
-
]
|
|
2619
|
-
},
|
|
2620
|
-
"count": {
|
|
2621
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
2622
|
-
},
|
|
2623
|
-
"sum": {
|
|
2624
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2625
|
-
},
|
|
2626
|
-
"bucket_counts": {
|
|
2627
|
-
"type": "array",
|
|
2628
|
-
"items": {
|
|
2629
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
2630
|
-
}
|
|
2631
|
-
},
|
|
2632
|
-
"explicit_bounds": {
|
|
2633
|
-
"type": "array",
|
|
2634
|
-
"items": {
|
|
2635
|
-
"type": "number",
|
|
2636
|
-
"format": "double"
|
|
2637
|
-
}
|
|
2638
|
-
},
|
|
2639
|
-
"min": {
|
|
2640
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2641
|
-
},
|
|
2642
|
-
"max": {
|
|
2643
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2644
|
-
},
|
|
2645
|
-
"aggregation_temporality": {
|
|
2646
|
-
"$ref": "#/$defs/OTel.Enums.AggregationTemporality"
|
|
2647
|
-
},
|
|
2648
|
-
"exemplars": {
|
|
2649
|
-
"type": "array",
|
|
2650
|
-
"items": {
|
|
2651
|
-
"$ref": "#/$defs/OTel.Metrics.MetricExemplar"
|
|
2652
|
-
}
|
|
2653
|
-
}
|
|
2654
|
-
},
|
|
2655
|
-
"unevaluatedProperties": {
|
|
2656
|
-
"not": {}
|
|
2657
|
-
},
|
|
2658
|
-
"allOf": [
|
|
2659
|
-
{
|
|
2660
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPointBase"
|
|
2661
|
-
}
|
|
2662
|
-
],
|
|
2663
|
-
"description": "Explicit-bucket histogram measurement."
|
|
2664
|
-
},
|
|
2665
|
-
"OTel.Metrics.MetricDouble": {
|
|
2666
|
-
"anyOf": [
|
|
2667
|
-
{
|
|
2668
|
-
"type": "number",
|
|
2669
|
-
"format": "double"
|
|
2670
|
-
},
|
|
2671
|
-
{
|
|
2672
|
-
"type": "string",
|
|
2673
|
-
"enum": [
|
|
2674
|
-
"NaN",
|
|
2675
|
-
"Infinity",
|
|
2676
|
-
"-Infinity"
|
|
2677
|
-
]
|
|
2678
|
-
}
|
|
2679
|
-
],
|
|
2680
|
-
"description": "An OTLP double encoded as a JSON number when finite or as a canonical named string when non-finite."
|
|
2681
|
-
},
|
|
2682
|
-
"OTel.Metrics.MetricDoubleValue": {
|
|
2683
|
-
"type": "object",
|
|
2684
|
-
"required": [
|
|
2685
|
-
"as_double"
|
|
2686
|
-
],
|
|
2687
|
-
"properties": {
|
|
2688
|
-
"as_double": {
|
|
2689
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2690
|
-
}
|
|
2691
|
-
},
|
|
2692
|
-
"unevaluatedProperties": {
|
|
2693
|
-
"not": {}
|
|
2694
|
-
},
|
|
2695
|
-
"description": "A floating-point measurement value from an OTLP number data point or exemplar."
|
|
2696
|
-
},
|
|
2697
|
-
"OTel.Metrics.MetricExemplar": {
|
|
2698
|
-
"type": "object",
|
|
2699
|
-
"required": [
|
|
2700
|
-
"time_unix_nano",
|
|
2701
|
-
"value"
|
|
2702
|
-
],
|
|
2703
|
-
"properties": {
|
|
2704
|
-
"time_unix_nano": {
|
|
2705
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUnixNanos"
|
|
2706
|
-
},
|
|
2707
|
-
"value": {
|
|
2708
|
-
"$ref": "#/$defs/OTel.Metrics.MetricNumberValue"
|
|
2709
|
-
},
|
|
2710
|
-
"span_id": {
|
|
2711
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
2712
|
-
},
|
|
2713
|
-
"trace_id": {
|
|
2714
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
2715
|
-
},
|
|
2716
|
-
"filtered_attributes": {
|
|
2717
|
-
"type": "array",
|
|
2718
|
-
"items": {
|
|
2719
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
2720
|
-
}
|
|
2721
|
-
}
|
|
2722
|
-
},
|
|
2723
|
-
"unevaluatedProperties": {
|
|
2724
|
-
"not": {}
|
|
2725
|
-
},
|
|
2726
|
-
"description": "A sampled measurement linked to the trace or span active when it was recorded."
|
|
2727
|
-
},
|
|
2728
|
-
"OTel.Metrics.MetricInt64": {
|
|
2729
|
-
"type": "string",
|
|
2730
|
-
"format": "int64",
|
|
2731
|
-
"description": "An OTLP signed 64-bit metric integer encoded as a decimal JSON string.",
|
|
2732
|
-
"x-csharp-type": "long",
|
|
2733
|
-
"pattern": "^(0|-?[1-9][0-9]*)$",
|
|
2734
|
-
"maxLength": 20
|
|
2735
|
-
},
|
|
2736
|
-
"OTel.Metrics.MetricIntegerValue": {
|
|
2737
|
-
"type": "object",
|
|
2738
|
-
"required": [
|
|
2739
|
-
"as_int"
|
|
2740
|
-
],
|
|
2741
|
-
"properties": {
|
|
2742
|
-
"as_int": {
|
|
2743
|
-
"$ref": "#/$defs/OTel.Metrics.MetricInt64"
|
|
2744
|
-
}
|
|
2745
|
-
},
|
|
2746
|
-
"unevaluatedProperties": {
|
|
2747
|
-
"not": {}
|
|
2748
|
-
},
|
|
2749
|
-
"description": "An integer measurement value from an OTLP number data point or exemplar."
|
|
2750
|
-
},
|
|
2751
|
-
"OTel.Metrics.MetricNumberValue": {
|
|
2752
|
-
"anyOf": [
|
|
2753
|
-
{
|
|
2754
|
-
"$ref": "#/$defs/OTel.Metrics.MetricIntegerValue"
|
|
2755
|
-
},
|
|
2756
|
-
{
|
|
2757
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDoubleValue"
|
|
2758
|
-
}
|
|
2759
|
-
],
|
|
2760
|
-
"description": "The exactly-one numeric value carried by an OTLP number data point or exemplar."
|
|
2761
|
-
},
|
|
2762
|
-
"OTel.Metrics.MetricPoint": {
|
|
2763
|
-
"anyOf": [
|
|
2764
|
-
{
|
|
2765
|
-
"$ref": "#/$defs/OTel.Metrics.GaugeMetricPoint"
|
|
2766
|
-
},
|
|
2767
|
-
{
|
|
2768
|
-
"$ref": "#/$defs/OTel.Metrics.SumMetricPoint"
|
|
2769
|
-
},
|
|
2770
|
-
{
|
|
2771
|
-
"$ref": "#/$defs/OTel.Metrics.HistogramMetricPoint"
|
|
2772
|
-
},
|
|
2773
|
-
{
|
|
2774
|
-
"$ref": "#/$defs/OTel.Metrics.ExponentialHistogramMetricPoint"
|
|
2775
|
-
},
|
|
2776
|
-
{
|
|
2777
|
-
"$ref": "#/$defs/OTel.Metrics.SummaryMetricPoint"
|
|
2778
|
-
}
|
|
2779
|
-
],
|
|
2780
|
-
"description": "One persisted OTLP metric data point, discriminated by aggregation kind."
|
|
2781
|
-
},
|
|
2782
|
-
"OTel.Metrics.MetricPointBase": {
|
|
2783
|
-
"type": "object",
|
|
2784
|
-
"required": [
|
|
2785
|
-
"name",
|
|
2786
|
-
"start_time_unix_nano",
|
|
2787
|
-
"time_unix_nano",
|
|
2788
|
-
"flags",
|
|
2789
|
-
"resource"
|
|
2790
|
-
],
|
|
2791
|
-
"properties": {
|
|
2792
|
-
"name": {
|
|
2793
|
-
"type": "string",
|
|
2794
|
-
"minLength": 1,
|
|
2795
|
-
"description": "Metric stream name."
|
|
2796
|
-
},
|
|
2797
|
-
"description": {
|
|
2798
|
-
"type": "string"
|
|
2799
|
-
},
|
|
2800
|
-
"unit": {
|
|
2801
|
-
"type": "string"
|
|
2802
|
-
},
|
|
2803
|
-
"metadata": {
|
|
2804
|
-
"type": "array",
|
|
2805
|
-
"items": {
|
|
2806
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
2807
|
-
},
|
|
2808
|
-
"description": "Non-identifying metadata attached to the OTLP metric descriptor."
|
|
2809
|
-
},
|
|
2810
|
-
"attributes": {
|
|
2811
|
-
"type": "array",
|
|
2812
|
-
"items": {
|
|
2813
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
2814
|
-
},
|
|
2815
|
-
"description": "Attributes identifying this metric time series."
|
|
2816
|
-
},
|
|
2817
|
-
"start_time_unix_nano": {
|
|
2818
|
-
"$ref": "#/$defs/OTel.Metrics.MetricStartUnixNanos"
|
|
2819
|
-
},
|
|
2820
|
-
"time_unix_nano": {
|
|
2821
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUnixNanos"
|
|
2822
|
-
},
|
|
2823
|
-
"flags": {
|
|
2824
|
-
"type": "integer",
|
|
2825
|
-
"format": "uint32",
|
|
2826
|
-
"description": "OTLP data-point flags preserved as an extensible bit field."
|
|
2827
|
-
},
|
|
2828
|
-
"resource": {
|
|
2829
|
-
"allOf": [
|
|
2830
|
-
{
|
|
2831
|
-
"$ref": "#/$defs/OTel.Resource.Resource"
|
|
2832
|
-
}
|
|
2833
|
-
],
|
|
2834
|
-
"description": "Resource describing the entity that produced the metric."
|
|
2835
|
-
},
|
|
2836
|
-
"resource_schema_url": {
|
|
2837
|
-
"type": "string"
|
|
2838
|
-
},
|
|
2839
|
-
"instrumentation_scope": {
|
|
2840
|
-
"$ref": "#/$defs/Common.InstrumentationScope"
|
|
2841
|
-
},
|
|
2842
|
-
"scope_schema_url": {
|
|
2843
|
-
"type": "string"
|
|
2844
|
-
}
|
|
2845
|
-
},
|
|
2846
|
-
"description": "Fields shared by every persisted OTLP metric data point."
|
|
2847
|
-
},
|
|
2848
|
-
"OTel.Metrics.MetricStartUnixNanos": {
|
|
2849
|
-
"type": "string",
|
|
2850
|
-
"format": "uint64",
|
|
2851
|
-
"description": "An optional OTLP metric start timestamp in Unix nanoseconds, encoded as a decimal JSON string.",
|
|
2852
|
-
"x-csharp-type": "ulong",
|
|
2853
|
-
"pattern": "^(0|[1-9][0-9]*)$",
|
|
2854
|
-
"maxLength": 20
|
|
2855
|
-
},
|
|
2856
|
-
"OTel.Metrics.MetricUInt64": {
|
|
2857
|
-
"type": "string",
|
|
2858
|
-
"format": "uint64",
|
|
2859
|
-
"description": "An OTLP unsigned 64-bit metric count encoded as a decimal JSON string.",
|
|
2860
|
-
"x-csharp-type": "ulong",
|
|
2861
|
-
"pattern": "^(0|[1-9][0-9]*)$",
|
|
2862
|
-
"maxLength": 20
|
|
2863
|
-
},
|
|
2864
|
-
"OTel.Metrics.MetricUnixNanos": {
|
|
2865
|
-
"type": "string",
|
|
2866
|
-
"format": "uint64",
|
|
2867
|
-
"description": "A non-zero OTLP metric or exemplar timestamp in Unix nanoseconds.",
|
|
2868
|
-
"x-csharp-type": "ulong",
|
|
2869
|
-
"pattern": "^[1-9][0-9]*$",
|
|
2870
|
-
"maxLength": 20
|
|
2871
|
-
},
|
|
2872
|
-
"OTel.Metrics.SumMetricPoint": {
|
|
2873
|
-
"type": "object",
|
|
2874
|
-
"required": [
|
|
2875
|
-
"type",
|
|
2876
|
-
"aggregation_temporality",
|
|
2877
|
-
"is_monotonic"
|
|
2878
|
-
],
|
|
2879
|
-
"properties": {
|
|
2880
|
-
"type": {
|
|
2881
|
-
"type": "string",
|
|
2882
|
-
"enum": [
|
|
2883
|
-
"sum"
|
|
2884
|
-
]
|
|
2885
|
-
},
|
|
2886
|
-
"value": {
|
|
2887
|
-
"allOf": [
|
|
2888
|
-
{
|
|
2889
|
-
"$ref": "#/$defs/OTel.Metrics.MetricNumberValue"
|
|
2890
|
-
}
|
|
2891
|
-
],
|
|
2892
|
-
"description": "Recorded value, absent when flags contain NO_RECORDED_VALUE (bit 1)."
|
|
2893
|
-
},
|
|
2894
|
-
"aggregation_temporality": {
|
|
2895
|
-
"$ref": "#/$defs/OTel.Enums.AggregationTemporality"
|
|
2896
|
-
},
|
|
2897
|
-
"is_monotonic": {
|
|
2898
|
-
"type": "boolean"
|
|
2899
|
-
},
|
|
2900
|
-
"exemplars": {
|
|
2901
|
-
"type": "array",
|
|
2902
|
-
"items": {
|
|
2903
|
-
"$ref": "#/$defs/OTel.Metrics.MetricExemplar"
|
|
2904
|
-
}
|
|
2905
|
-
}
|
|
2906
|
-
},
|
|
2907
|
-
"unevaluatedProperties": {
|
|
2908
|
-
"not": {}
|
|
2909
|
-
},
|
|
2910
|
-
"allOf": [
|
|
2911
|
-
{
|
|
2912
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPointBase"
|
|
2913
|
-
}
|
|
2914
|
-
],
|
|
2915
|
-
"description": "Delta or cumulative sum measurement."
|
|
2916
|
-
},
|
|
2917
|
-
"OTel.Metrics.SummaryMetricPoint": {
|
|
2918
|
-
"type": "object",
|
|
2919
|
-
"required": [
|
|
2920
|
-
"type",
|
|
2921
|
-
"count",
|
|
2922
|
-
"sum",
|
|
2923
|
-
"quantile_values"
|
|
2924
|
-
],
|
|
2925
|
-
"properties": {
|
|
2926
|
-
"type": {
|
|
2927
|
-
"type": "string",
|
|
2928
|
-
"enum": [
|
|
2929
|
-
"summary"
|
|
2930
|
-
]
|
|
2931
|
-
},
|
|
2932
|
-
"count": {
|
|
2933
|
-
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
2934
|
-
},
|
|
2935
|
-
"sum": {
|
|
2936
|
-
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
2937
|
-
},
|
|
2938
|
-
"quantile_values": {
|
|
2939
|
-
"type": "array",
|
|
2940
|
-
"items": {
|
|
2941
|
-
"$ref": "#/$defs/OTel.Metrics.SummaryQuantileValue"
|
|
2942
|
-
}
|
|
2943
|
-
}
|
|
2944
|
-
},
|
|
2945
|
-
"unevaluatedProperties": {
|
|
2946
|
-
"not": {}
|
|
2947
|
-
},
|
|
2948
|
-
"allOf": [
|
|
2949
|
-
{
|
|
2950
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPointBase"
|
|
2951
|
-
}
|
|
2952
|
-
],
|
|
2953
|
-
"description": "Pre-aggregated summary measurement."
|
|
2954
|
-
},
|
|
2955
|
-
"OTel.Metrics.SummaryQuantileDouble": {
|
|
2956
|
-
"anyOf": [
|
|
2957
|
-
{
|
|
2958
|
-
"$ref": "#/$defs/OTel.Metrics.SummaryQuantileFiniteValue"
|
|
2959
|
-
},
|
|
2960
|
-
{
|
|
2961
|
-
"type": "string",
|
|
2962
|
-
"enum": [
|
|
2963
|
-
"Infinity"
|
|
2964
|
-
]
|
|
2965
|
-
}
|
|
2966
|
-
],
|
|
2967
|
-
"description": "A non-negative OTLP summary quantile value, including canonical positive infinity."
|
|
2968
|
-
},
|
|
2969
|
-
"OTel.Metrics.SummaryQuantileFiniteValue": {
|
|
2970
|
-
"type": "number",
|
|
2971
|
-
"format": "double",
|
|
2972
|
-
"minimum": 0,
|
|
2973
|
-
"description": "A finite, non-negative value observed at an OTLP summary quantile."
|
|
2974
|
-
},
|
|
2975
|
-
"OTel.Metrics.SummaryQuantileValue": {
|
|
2976
|
-
"type": "object",
|
|
2977
|
-
"required": [
|
|
2978
|
-
"quantile",
|
|
2979
|
-
"value"
|
|
2980
|
-
],
|
|
2981
|
-
"properties": {
|
|
2982
|
-
"quantile": {
|
|
2983
|
-
"type": "number",
|
|
2984
|
-
"format": "double",
|
|
2985
|
-
"minimum": 0,
|
|
2986
|
-
"maximum": 1
|
|
2987
|
-
},
|
|
2988
|
-
"value": {
|
|
2989
|
-
"$ref": "#/$defs/OTel.Metrics.SummaryQuantileDouble"
|
|
2990
|
-
}
|
|
2991
|
-
},
|
|
2992
|
-
"unevaluatedProperties": {
|
|
2993
|
-
"not": {}
|
|
2994
|
-
},
|
|
2995
|
-
"description": "A quantile and value reported by an OTLP summary data point."
|
|
2996
|
-
},
|
|
2997
|
-
"OTel.Profiles.Profile": {
|
|
2998
|
-
"type": "object",
|
|
2999
|
-
"required": [
|
|
3000
|
-
"profile_id",
|
|
3001
|
-
"time_unix_nano",
|
|
3002
|
-
"duration_nano",
|
|
3003
|
-
"resource"
|
|
3004
|
-
],
|
|
3005
|
-
"properties": {
|
|
3006
|
-
"profile_id": {
|
|
3007
|
-
"type": "string",
|
|
3008
|
-
"description": "Unique profile identifier (16 hex chars)"
|
|
3009
|
-
},
|
|
3010
|
-
"sample_type": {
|
|
3011
|
-
"allOf": [
|
|
3012
|
-
{
|
|
3013
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileValueType"
|
|
3014
|
-
}
|
|
3015
|
-
],
|
|
3016
|
-
"description": "Sample type describing what was measured"
|
|
3017
|
-
},
|
|
3018
|
-
"samples": {
|
|
3019
|
-
"type": "array",
|
|
3020
|
-
"items": {
|
|
3021
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileSample"
|
|
3022
|
-
},
|
|
3023
|
-
"description": "Profiling samples"
|
|
3024
|
-
},
|
|
3025
|
-
"time_unix_nano": {
|
|
3026
|
-
"allOf": [
|
|
3027
|
-
{
|
|
3028
|
-
"$ref": "#/$defs/Common.UnixNanos"
|
|
3029
|
-
}
|
|
3030
|
-
],
|
|
3031
|
-
"description": "Profile start timestamp in nanoseconds since epoch"
|
|
3032
|
-
},
|
|
3033
|
-
"duration_nano": {
|
|
3034
|
-
"allOf": [
|
|
3035
|
-
{
|
|
3036
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3037
|
-
}
|
|
3038
|
-
],
|
|
3039
|
-
"description": "Profile duration in nanoseconds"
|
|
3040
|
-
},
|
|
3041
|
-
"period_type": {
|
|
3042
|
-
"allOf": [
|
|
3043
|
-
{
|
|
3044
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileValueType"
|
|
3045
|
-
}
|
|
3046
|
-
],
|
|
3047
|
-
"description": "Sampling period type"
|
|
3048
|
-
},
|
|
3049
|
-
"period": {
|
|
3050
|
-
"type": "integer",
|
|
3051
|
-
"format": "int64",
|
|
3052
|
-
"description": "Sampling period value"
|
|
3053
|
-
},
|
|
3054
|
-
"original_payload_format": {
|
|
3055
|
-
"allOf": [
|
|
3056
|
-
{
|
|
3057
|
-
"$ref": "#/$defs/OTel.Enums.OriginalPayloadFormat"
|
|
3058
|
-
}
|
|
3059
|
-
],
|
|
3060
|
-
"description": "Original payload format (pprof, jfr, linux_perf)"
|
|
3061
|
-
},
|
|
3062
|
-
"original_payload": {
|
|
3063
|
-
"type": "string",
|
|
3064
|
-
"contentEncoding": "base64",
|
|
3065
|
-
"description": "Original payload bytes (base64 encoded, opaque — not parsed)"
|
|
3066
|
-
},
|
|
3067
|
-
"attributes": {
|
|
3068
|
-
"type": "array",
|
|
3069
|
-
"items": {
|
|
3070
|
-
"$ref": "#/$defs/Common.Attribute"
|
|
3071
|
-
},
|
|
3072
|
-
"description": "Profile attributes"
|
|
3073
|
-
},
|
|
3074
|
-
"dropped_attributes_count": {
|
|
3075
|
-
"allOf": [
|
|
3076
|
-
{
|
|
3077
|
-
"$ref": "#/$defs/Common.Count"
|
|
3078
|
-
}
|
|
3079
|
-
],
|
|
3080
|
-
"description": "Dropped attributes count"
|
|
3081
|
-
},
|
|
3082
|
-
"resource": {
|
|
3083
|
-
"allOf": [
|
|
3084
|
-
{
|
|
3085
|
-
"$ref": "#/$defs/OTel.Resource.Resource"
|
|
3086
|
-
}
|
|
3087
|
-
],
|
|
3088
|
-
"description": "Resource describing the entity that produced this profile"
|
|
3089
|
-
},
|
|
3090
|
-
"instrumentation_scope": {
|
|
3091
|
-
"allOf": [
|
|
3092
|
-
{
|
|
3093
|
-
"$ref": "#/$defs/Common.InstrumentationScope"
|
|
3094
|
-
}
|
|
3095
|
-
],
|
|
3096
|
-
"description": "Instrumentation scope"
|
|
3097
|
-
},
|
|
3098
|
-
"string_table": {
|
|
3099
|
-
"type": "array",
|
|
3100
|
-
"items": {
|
|
3101
|
-
"type": "string"
|
|
3102
|
-
},
|
|
3103
|
-
"description": "String table for index-based lookups"
|
|
3104
|
-
},
|
|
3105
|
-
"function_table": {
|
|
3106
|
-
"type": "array",
|
|
3107
|
-
"items": {
|
|
3108
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileFunction"
|
|
3109
|
-
},
|
|
3110
|
-
"description": "Function table"
|
|
3111
|
-
},
|
|
3112
|
-
"location_table": {
|
|
3113
|
-
"type": "array",
|
|
3114
|
-
"items": {
|
|
3115
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileLocation"
|
|
3116
|
-
},
|
|
3117
|
-
"description": "Location table"
|
|
3118
|
-
},
|
|
3119
|
-
"mapping_table": {
|
|
3120
|
-
"type": "array",
|
|
3121
|
-
"items": {
|
|
3122
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileMapping"
|
|
3123
|
-
},
|
|
3124
|
-
"description": "Mapping table (memory-mapped binaries)"
|
|
3125
|
-
},
|
|
3126
|
-
"link_table": {
|
|
3127
|
-
"type": "array",
|
|
3128
|
-
"items": {
|
|
3129
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileLink"
|
|
3130
|
-
},
|
|
3131
|
-
"description": "Link table for cross-signal correlation"
|
|
3132
|
-
},
|
|
3133
|
-
"stack_table": {
|
|
3134
|
-
"type": "array",
|
|
3135
|
-
"items": {
|
|
3136
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileStack"
|
|
3137
|
-
},
|
|
3138
|
-
"description": "Stack table (ordered location sequences)"
|
|
3139
|
-
}
|
|
3140
|
-
},
|
|
3141
|
-
"unevaluatedProperties": {
|
|
3142
|
-
"not": {}
|
|
3143
|
-
},
|
|
3144
|
-
"description": "OpenTelemetry Profile representing a continuous profiling snapshot"
|
|
3145
|
-
},
|
|
3146
|
-
"OTel.Profiles.ProfileFunction": {
|
|
3147
|
-
"type": "object",
|
|
3148
|
-
"properties": {
|
|
3149
|
-
"name_strindex": {
|
|
3150
|
-
"type": "integer",
|
|
3151
|
-
"format": "int32",
|
|
3152
|
-
"description": "Function name string index"
|
|
3153
|
-
},
|
|
3154
|
-
"system_name_strindex": {
|
|
3155
|
-
"type": "integer",
|
|
3156
|
-
"format": "int32",
|
|
3157
|
-
"description": "System/mangled function name string index"
|
|
3158
|
-
},
|
|
3159
|
-
"filename_strindex": {
|
|
3160
|
-
"type": "integer",
|
|
3161
|
-
"format": "int32",
|
|
3162
|
-
"description": "Source filename string index"
|
|
3163
|
-
},
|
|
3164
|
-
"start_line": {
|
|
3165
|
-
"type": "integer",
|
|
3166
|
-
"format": "int64",
|
|
3167
|
-
"description": "First line number of the function in source"
|
|
3168
|
-
}
|
|
3169
|
-
},
|
|
3170
|
-
"unevaluatedProperties": {
|
|
3171
|
-
"not": {}
|
|
3172
|
-
},
|
|
3173
|
-
"description": "Function identity in a profiled binary"
|
|
3174
|
-
},
|
|
3175
|
-
"OTel.Profiles.ProfileLine": {
|
|
3176
|
-
"type": "object",
|
|
3177
|
-
"properties": {
|
|
3178
|
-
"function_index": {
|
|
3179
|
-
"type": "integer",
|
|
3180
|
-
"format": "int32",
|
|
3181
|
-
"description": "Function index into function table"
|
|
3182
|
-
},
|
|
3183
|
-
"line": {
|
|
3184
|
-
"type": "integer",
|
|
3185
|
-
"format": "int64",
|
|
3186
|
-
"description": "Source line number"
|
|
3187
|
-
},
|
|
3188
|
-
"column": {
|
|
3189
|
-
"type": "integer",
|
|
3190
|
-
"format": "int64",
|
|
3191
|
-
"description": "Source column number"
|
|
3192
|
-
}
|
|
3193
|
-
},
|
|
3194
|
-
"unevaluatedProperties": {
|
|
3195
|
-
"not": {}
|
|
3196
|
-
},
|
|
3197
|
-
"description": "Source line within a location"
|
|
3198
|
-
},
|
|
3199
|
-
"OTel.Profiles.ProfileLink": {
|
|
3200
|
-
"type": "object",
|
|
3201
|
-
"properties": {
|
|
3202
|
-
"trace_id": {
|
|
3203
|
-
"allOf": [
|
|
3204
|
-
{
|
|
3205
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
3206
|
-
}
|
|
3207
|
-
],
|
|
3208
|
-
"description": "Linked trace ID (16 bytes, W3C format)"
|
|
3209
|
-
},
|
|
3210
|
-
"span_id": {
|
|
3211
|
-
"allOf": [
|
|
3212
|
-
{
|
|
3213
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
3214
|
-
}
|
|
3215
|
-
],
|
|
3216
|
-
"description": "Linked span ID (8 bytes)"
|
|
3217
|
-
}
|
|
3218
|
-
},
|
|
3219
|
-
"unevaluatedProperties": {
|
|
3220
|
-
"not": {}
|
|
3221
|
-
},
|
|
3222
|
-
"description": "Cross-signal link from profile sample to trace/span"
|
|
3223
|
-
},
|
|
3224
|
-
"OTel.Profiles.ProfileLocation": {
|
|
3225
|
-
"type": "object",
|
|
3226
|
-
"properties": {
|
|
3227
|
-
"mapping_index": {
|
|
3228
|
-
"type": "integer",
|
|
3229
|
-
"format": "int32",
|
|
3230
|
-
"description": "Mapping index into mapping table"
|
|
3231
|
-
},
|
|
3232
|
-
"address": {
|
|
3233
|
-
"type": "integer",
|
|
3234
|
-
"format": "uint64",
|
|
3235
|
-
"description": "Instruction address (program counter)"
|
|
3236
|
-
},
|
|
3237
|
-
"lines": {
|
|
3238
|
-
"type": "array",
|
|
3239
|
-
"items": {
|
|
3240
|
-
"$ref": "#/$defs/OTel.Profiles.ProfileLine"
|
|
3241
|
-
},
|
|
3242
|
-
"description": "Source lines at this location"
|
|
3243
|
-
},
|
|
3244
|
-
"attribute_indices": {
|
|
3245
|
-
"type": "array",
|
|
3246
|
-
"items": {
|
|
3247
|
-
"type": "integer",
|
|
3248
|
-
"format": "int32"
|
|
3249
|
-
},
|
|
3250
|
-
"description": "Attribute indices"
|
|
3251
|
-
}
|
|
3252
|
-
},
|
|
3253
|
-
"unevaluatedProperties": {
|
|
3254
|
-
"not": {}
|
|
3255
|
-
},
|
|
3256
|
-
"description": "Code location within a profiled binary"
|
|
3257
|
-
},
|
|
3258
|
-
"OTel.Profiles.ProfileMapping": {
|
|
3259
|
-
"type": "object",
|
|
3260
|
-
"properties": {
|
|
3261
|
-
"memory_start": {
|
|
3262
|
-
"type": "integer",
|
|
3263
|
-
"format": "uint64",
|
|
3264
|
-
"description": "Start address of the mapping in virtual memory"
|
|
3265
|
-
},
|
|
3266
|
-
"memory_limit": {
|
|
3267
|
-
"type": "integer",
|
|
3268
|
-
"format": "uint64",
|
|
3269
|
-
"description": "Limit address (exclusive) of the mapping"
|
|
3270
|
-
},
|
|
3271
|
-
"file_offset": {
|
|
3272
|
-
"type": "integer",
|
|
3273
|
-
"format": "uint64",
|
|
3274
|
-
"description": "Offset within the mapped file"
|
|
3275
|
-
},
|
|
3276
|
-
"filename_strindex": {
|
|
3277
|
-
"type": "integer",
|
|
3278
|
-
"format": "int32",
|
|
3279
|
-
"description": "Filename string index of the mapped binary"
|
|
3280
|
-
},
|
|
3281
|
-
"attribute_indices": {
|
|
3282
|
-
"type": "array",
|
|
3283
|
-
"items": {
|
|
3284
|
-
"type": "integer",
|
|
3285
|
-
"format": "int32"
|
|
3286
|
-
},
|
|
3287
|
-
"description": "Attribute indices"
|
|
3288
|
-
}
|
|
3289
|
-
},
|
|
3290
|
-
"unevaluatedProperties": {
|
|
3291
|
-
"not": {}
|
|
3292
|
-
},
|
|
3293
|
-
"description": "Memory mapping for a loaded binary or shared library"
|
|
3294
|
-
},
|
|
3295
|
-
"OTel.Profiles.ProfileQueryFilters": {
|
|
3296
|
-
"type": "object",
|
|
3297
|
-
"properties": {
|
|
3298
|
-
"trace_id": {
|
|
3299
|
-
"allOf": [
|
|
3300
|
-
{
|
|
3301
|
-
"$ref": "#/$defs/Common.TraceId"
|
|
3302
|
-
}
|
|
3303
|
-
],
|
|
3304
|
-
"description": "Filter by trace ID"
|
|
3305
|
-
},
|
|
3306
|
-
"span_id": {
|
|
3307
|
-
"allOf": [
|
|
3308
|
-
{
|
|
3309
|
-
"$ref": "#/$defs/Common.SpanId"
|
|
3310
|
-
}
|
|
3311
|
-
],
|
|
3312
|
-
"description": "Filter by span ID"
|
|
3313
|
-
},
|
|
3314
|
-
"session_id": {
|
|
3315
|
-
"allOf": [
|
|
3316
|
-
{
|
|
3317
|
-
"$ref": "#/$defs/Common.SessionId"
|
|
3318
|
-
}
|
|
3319
|
-
],
|
|
3320
|
-
"description": "Filter by session ID"
|
|
3321
|
-
},
|
|
3322
|
-
"service_name": {
|
|
3323
|
-
"type": "string",
|
|
3324
|
-
"description": "Filter by service name"
|
|
3325
|
-
},
|
|
3326
|
-
"sample_type": {
|
|
3327
|
-
"type": "string",
|
|
3328
|
-
"description": "Filter by sample type (e.g., cpu, alloc_objects, wall)"
|
|
3329
|
-
},
|
|
3330
|
-
"profile_frame_type": {
|
|
3331
|
-
"type": "string",
|
|
3332
|
-
"description": "Filter by profile frame type (e.g., dotnet, jvm, cpython)"
|
|
3333
|
-
},
|
|
3334
|
-
"original_payload_format": {
|
|
3335
|
-
"allOf": [
|
|
3336
|
-
{
|
|
3337
|
-
"$ref": "#/$defs/OTel.Enums.OriginalPayloadFormat"
|
|
3338
|
-
}
|
|
3339
|
-
],
|
|
3340
|
-
"description": "Filter by original payload format"
|
|
3341
|
-
},
|
|
3342
|
-
"min_duration_nano": {
|
|
3343
|
-
"allOf": [
|
|
3344
|
-
{
|
|
3345
|
-
"$ref": "#/$defs/Common.DurationNs"
|
|
3346
|
-
}
|
|
3347
|
-
],
|
|
3348
|
-
"description": "Minimum duration in nanoseconds"
|
|
3349
|
-
},
|
|
3350
|
-
"time_from": {
|
|
3351
|
-
"type": "string",
|
|
3352
|
-
"format": "date-time",
|
|
3353
|
-
"description": "Start of time range (inclusive, ISO 8601)"
|
|
3354
|
-
},
|
|
3355
|
-
"time_to": {
|
|
2216
|
+
},
|
|
2217
|
+
"OTel.Logs.LogBodyBytes": {
|
|
2218
|
+
"type": "object",
|
|
2219
|
+
"required": [
|
|
2220
|
+
"bytes_value"
|
|
2221
|
+
],
|
|
2222
|
+
"properties": {
|
|
2223
|
+
"bytes_value": {
|
|
3356
2224
|
"type": "string",
|
|
3357
|
-
"
|
|
3358
|
-
"description": "
|
|
2225
|
+
"contentEncoding": "base64",
|
|
2226
|
+
"description": "Binary value (base64 encoded)"
|
|
3359
2227
|
}
|
|
3360
2228
|
},
|
|
3361
2229
|
"unevaluatedProperties": {
|
|
3362
2230
|
"not": {}
|
|
3363
2231
|
},
|
|
3364
|
-
"description": "
|
|
2232
|
+
"description": "Binary log body"
|
|
3365
2233
|
},
|
|
3366
|
-
"OTel.
|
|
2234
|
+
"OTel.Logs.LogBodyKvList": {
|
|
3367
2235
|
"type": "object",
|
|
2236
|
+
"required": [
|
|
2237
|
+
"kv_list_value"
|
|
2238
|
+
],
|
|
3368
2239
|
"properties": {
|
|
3369
|
-
"
|
|
3370
|
-
"type": "integer",
|
|
3371
|
-
"format": "int32",
|
|
3372
|
-
"description": "Stack index into stack table"
|
|
3373
|
-
},
|
|
3374
|
-
"attribute_indices": {
|
|
3375
|
-
"type": "array",
|
|
3376
|
-
"items": {
|
|
3377
|
-
"type": "integer",
|
|
3378
|
-
"format": "int32"
|
|
3379
|
-
},
|
|
3380
|
-
"description": "Attribute indices into attribute table"
|
|
3381
|
-
},
|
|
3382
|
-
"link_index": {
|
|
3383
|
-
"type": "integer",
|
|
3384
|
-
"format": "int32",
|
|
3385
|
-
"description": "Link index into link table for cross-signal correlation"
|
|
3386
|
-
},
|
|
3387
|
-
"values": {
|
|
3388
|
-
"type": "array",
|
|
3389
|
-
"items": {
|
|
3390
|
-
"type": "integer",
|
|
3391
|
-
"format": "int64"
|
|
3392
|
-
},
|
|
3393
|
-
"description": "Sample values (one per sample type)"
|
|
3394
|
-
},
|
|
3395
|
-
"timestamps_unix_nano": {
|
|
2240
|
+
"kv_list_value": {
|
|
3396
2241
|
"type": "array",
|
|
3397
2242
|
"items": {
|
|
3398
|
-
"$ref": "#/$defs/Common.
|
|
2243
|
+
"$ref": "#/$defs/Common.Attribute"
|
|
3399
2244
|
},
|
|
3400
|
-
"description": "
|
|
2245
|
+
"description": "Key-value pairs"
|
|
3401
2246
|
}
|
|
3402
2247
|
},
|
|
3403
2248
|
"unevaluatedProperties": {
|
|
3404
2249
|
"not": {}
|
|
3405
2250
|
},
|
|
3406
|
-
"description": "
|
|
2251
|
+
"description": "Structured key-value log body"
|
|
3407
2252
|
},
|
|
3408
|
-
"OTel.
|
|
2253
|
+
"OTel.Logs.LogBodyString": {
|
|
3409
2254
|
"type": "object",
|
|
2255
|
+
"required": [
|
|
2256
|
+
"string_value"
|
|
2257
|
+
],
|
|
3410
2258
|
"properties": {
|
|
3411
|
-
"
|
|
3412
|
-
"type": "
|
|
3413
|
-
"
|
|
3414
|
-
"type": "integer",
|
|
3415
|
-
"format": "int32"
|
|
3416
|
-
},
|
|
3417
|
-
"description": "Location indices from leaf (index 0) to root"
|
|
2259
|
+
"string_value": {
|
|
2260
|
+
"type": "string",
|
|
2261
|
+
"description": "String value"
|
|
3418
2262
|
}
|
|
3419
2263
|
},
|
|
3420
2264
|
"unevaluatedProperties": {
|
|
3421
2265
|
"not": {}
|
|
3422
2266
|
},
|
|
3423
|
-
"description": "
|
|
2267
|
+
"description": "String log body"
|
|
3424
2268
|
},
|
|
3425
|
-
"OTel.
|
|
2269
|
+
"OTel.Logs.LogRecord": {
|
|
3426
2270
|
"type": "object",
|
|
3427
2271
|
"required": [
|
|
3428
|
-
"
|
|
3429
|
-
"
|
|
3430
|
-
"
|
|
2272
|
+
"time_unix_nano",
|
|
2273
|
+
"observed_time_unix_nano",
|
|
2274
|
+
"severity_number",
|
|
2275
|
+
"body",
|
|
2276
|
+
"resource"
|
|
3431
2277
|
],
|
|
3432
2278
|
"properties": {
|
|
3433
|
-
"
|
|
2279
|
+
"time_unix_nano": {
|
|
3434
2280
|
"allOf": [
|
|
3435
2281
|
{
|
|
3436
|
-
"$ref": "#/$defs/Common.
|
|
2282
|
+
"$ref": "#/$defs/Common.UnixNanos"
|
|
3437
2283
|
}
|
|
3438
2284
|
],
|
|
3439
|
-
"description": "
|
|
2285
|
+
"description": "Timestamp when the event occurred (nanoseconds since epoch)"
|
|
3440
2286
|
},
|
|
3441
|
-
"
|
|
2287
|
+
"observed_time_unix_nano": {
|
|
3442
2288
|
"allOf": [
|
|
3443
2289
|
{
|
|
3444
|
-
"$ref": "#/$defs/Common.
|
|
2290
|
+
"$ref": "#/$defs/Common.UnixNanos"
|
|
3445
2291
|
}
|
|
3446
2292
|
],
|
|
3447
|
-
"description": "
|
|
2293
|
+
"description": "Timestamp when the log was observed/collected (nanoseconds since epoch)"
|
|
3448
2294
|
},
|
|
3449
|
-
"
|
|
3450
|
-
"
|
|
3451
|
-
|
|
3452
|
-
|
|
2295
|
+
"severity_number": {
|
|
2296
|
+
"allOf": [
|
|
2297
|
+
{
|
|
2298
|
+
"$ref": "#/$defs/OTel.Enums.SeverityNumber"
|
|
2299
|
+
}
|
|
2300
|
+
],
|
|
2301
|
+
"description": "Severity number (1-24)"
|
|
3453
2302
|
},
|
|
3454
|
-
"
|
|
3455
|
-
"
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
2303
|
+
"severity_text": {
|
|
2304
|
+
"allOf": [
|
|
2305
|
+
{
|
|
2306
|
+
"$ref": "#/$defs/OTel.Enums.SeverityText"
|
|
2307
|
+
}
|
|
2308
|
+
],
|
|
2309
|
+
"description": "Severity text (DEBUG, INFO, WARN, ERROR, etc.)"
|
|
3460
2310
|
},
|
|
3461
|
-
"
|
|
3462
|
-
"
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
2311
|
+
"body": {
|
|
2312
|
+
"allOf": [
|
|
2313
|
+
{
|
|
2314
|
+
"$ref": "#/$defs/OTel.Logs.LogBody"
|
|
2315
|
+
}
|
|
2316
|
+
],
|
|
2317
|
+
"description": "Log body - the main content"
|
|
3467
2318
|
},
|
|
3468
|
-
"
|
|
2319
|
+
"attributes": {
|
|
3469
2320
|
"type": "array",
|
|
3470
2321
|
"items": {
|
|
3471
|
-
"$ref": "#/$defs/
|
|
2322
|
+
"$ref": "#/$defs/Common.Attribute"
|
|
3472
2323
|
},
|
|
3473
|
-
"description": "
|
|
3474
|
-
}
|
|
3475
|
-
},
|
|
3476
|
-
"unevaluatedProperties": {
|
|
3477
|
-
"not": {}
|
|
3478
|
-
},
|
|
3479
|
-
"description": "Aggregated profile statistics"
|
|
3480
|
-
},
|
|
3481
|
-
"OTel.Profiles.ProfileStatsByDimension": {
|
|
3482
|
-
"type": "object",
|
|
3483
|
-
"required": [
|
|
3484
|
-
"dimension",
|
|
3485
|
-
"count",
|
|
3486
|
-
"sample_count",
|
|
3487
|
-
"avg_duration_nano"
|
|
3488
|
-
],
|
|
3489
|
-
"properties": {
|
|
3490
|
-
"dimension": {
|
|
3491
|
-
"type": "string",
|
|
3492
|
-
"description": "Dimension value"
|
|
2324
|
+
"description": "Log attributes"
|
|
3493
2325
|
},
|
|
3494
|
-
"
|
|
2326
|
+
"dropped_attributes_count": {
|
|
3495
2327
|
"allOf": [
|
|
3496
2328
|
{
|
|
3497
2329
|
"$ref": "#/$defs/Common.Count"
|
|
3498
2330
|
}
|
|
3499
2331
|
],
|
|
3500
|
-
"description": "
|
|
2332
|
+
"description": "Dropped attributes count"
|
|
2333
|
+
},
|
|
2334
|
+
"flags": {
|
|
2335
|
+
"type": "integer",
|
|
2336
|
+
"format": "int32",
|
|
2337
|
+
"description": "Flags (trace flags)"
|
|
3501
2338
|
},
|
|
3502
|
-
"
|
|
2339
|
+
"trace_id": {
|
|
3503
2340
|
"allOf": [
|
|
3504
2341
|
{
|
|
3505
|
-
"$ref": "#/$defs/Common.
|
|
2342
|
+
"$ref": "#/$defs/Common.TraceId"
|
|
3506
2343
|
}
|
|
3507
2344
|
],
|
|
3508
|
-
"description": "
|
|
2345
|
+
"description": "Associated trace ID"
|
|
3509
2346
|
},
|
|
3510
|
-
"
|
|
3511
|
-
"
|
|
3512
|
-
|
|
3513
|
-
|
|
2347
|
+
"span_id": {
|
|
2348
|
+
"allOf": [
|
|
2349
|
+
{
|
|
2350
|
+
"$ref": "#/$defs/Common.SpanId"
|
|
2351
|
+
}
|
|
2352
|
+
],
|
|
2353
|
+
"description": "Associated span ID"
|
|
2354
|
+
},
|
|
2355
|
+
"event_name": {
|
|
2356
|
+
"type": "string",
|
|
2357
|
+
"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."
|
|
2358
|
+
},
|
|
2359
|
+
"resource": {
|
|
2360
|
+
"allOf": [
|
|
2361
|
+
{
|
|
2362
|
+
"$ref": "#/$defs/OTel.Resource.Resource"
|
|
2363
|
+
}
|
|
2364
|
+
],
|
|
2365
|
+
"description": "Resource describing the entity that produced this log"
|
|
2366
|
+
},
|
|
2367
|
+
"instrumentation_scope": {
|
|
2368
|
+
"allOf": [
|
|
2369
|
+
{
|
|
2370
|
+
"$ref": "#/$defs/Common.InstrumentationScope"
|
|
2371
|
+
}
|
|
2372
|
+
],
|
|
2373
|
+
"description": "Instrumentation scope"
|
|
3514
2374
|
}
|
|
3515
2375
|
},
|
|
3516
2376
|
"unevaluatedProperties": {
|
|
3517
2377
|
"not": {}
|
|
3518
2378
|
},
|
|
3519
|
-
"description": "
|
|
2379
|
+
"description": "OpenTelemetry Log Record"
|
|
3520
2380
|
},
|
|
3521
|
-
"OTel.
|
|
2381
|
+
"OTel.Logs.LogTemplate": {
|
|
3522
2382
|
"type": "object",
|
|
2383
|
+
"required": [
|
|
2384
|
+
"template",
|
|
2385
|
+
"parameters"
|
|
2386
|
+
],
|
|
3523
2387
|
"properties": {
|
|
3524
|
-
"
|
|
3525
|
-
"type": "
|
|
3526
|
-
"
|
|
3527
|
-
"description": "Type string index into string table"
|
|
2388
|
+
"template": {
|
|
2389
|
+
"type": "string",
|
|
2390
|
+
"description": "Template string with {placeholder} syntax"
|
|
3528
2391
|
},
|
|
3529
|
-
"
|
|
3530
|
-
"type": "
|
|
3531
|
-
"
|
|
3532
|
-
|
|
2392
|
+
"parameters": {
|
|
2393
|
+
"type": "array",
|
|
2394
|
+
"items": {
|
|
2395
|
+
"$ref": "#/$defs/Common.Attribute"
|
|
2396
|
+
},
|
|
2397
|
+
"description": "Template parameters"
|
|
2398
|
+
},
|
|
2399
|
+
"rendered_message": {
|
|
2400
|
+
"type": "string",
|
|
2401
|
+
"description": "Rendered message"
|
|
3533
2402
|
}
|
|
3534
2403
|
},
|
|
3535
2404
|
"unevaluatedProperties": {
|
|
3536
2405
|
"not": {}
|
|
3537
2406
|
},
|
|
3538
|
-
"description": "
|
|
2407
|
+
"description": "Log message template with placeholders"
|
|
3539
2408
|
},
|
|
3540
2409
|
"OTel.Resource.CloudProvider": {
|
|
3541
2410
|
"type": "string",
|
|
@@ -5618,7 +4487,6 @@
|
|
|
5618
4487
|
"correlation",
|
|
5619
4488
|
"traces",
|
|
5620
4489
|
"logs",
|
|
5621
|
-
"metrics",
|
|
5622
4490
|
"queriedAt",
|
|
5623
4491
|
"selfExportSuppressed"
|
|
5624
4492
|
],
|
|
@@ -5641,12 +4509,6 @@
|
|
|
5641
4509
|
"$ref": "#/$defs/OTel.Logs.LogRecord"
|
|
5642
4510
|
}
|
|
5643
4511
|
},
|
|
5644
|
-
"metrics": {
|
|
5645
|
-
"type": "array",
|
|
5646
|
-
"items": {
|
|
5647
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPoint"
|
|
5648
|
-
}
|
|
5649
|
-
},
|
|
5650
4512
|
"queriedAt": {
|
|
5651
4513
|
"type": "string",
|
|
5652
4514
|
"format": "date-time"
|
|
@@ -6452,7 +5314,6 @@
|
|
|
6452
5314
|
"required": [
|
|
6453
5315
|
"traces",
|
|
6454
5316
|
"logs",
|
|
6455
|
-
"metrics",
|
|
6456
5317
|
"exceptions",
|
|
6457
5318
|
"toolCallEvents"
|
|
6458
5319
|
],
|
|
@@ -6463,9 +5324,6 @@
|
|
|
6463
5324
|
"logs": {
|
|
6464
5325
|
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
6465
5326
|
},
|
|
6466
|
-
"metrics": {
|
|
6467
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
6468
|
-
},
|
|
6469
5327
|
"exceptions": {
|
|
6470
5328
|
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
6471
5329
|
},
|
|
@@ -7281,104 +6139,6 @@
|
|
|
7281
6139
|
"Operations.LogsApi_list.Response.500": {
|
|
7282
6140
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7283
6141
|
},
|
|
7284
|
-
"Operations.MetricsApi_list.Response.200": {
|
|
7285
|
-
"type": "object",
|
|
7286
|
-
"required": [
|
|
7287
|
-
"items",
|
|
7288
|
-
"has_more"
|
|
7289
|
-
],
|
|
7290
|
-
"properties": {
|
|
7291
|
-
"items": {
|
|
7292
|
-
"type": "array",
|
|
7293
|
-
"items": {
|
|
7294
|
-
"$ref": "#/$defs/OTel.Metrics.MetricPoint"
|
|
7295
|
-
},
|
|
7296
|
-
"description": "List of items in this page"
|
|
7297
|
-
},
|
|
7298
|
-
"next_cursor": {
|
|
7299
|
-
"type": "string",
|
|
7300
|
-
"description": "Cursor for the next page (null if no more pages)"
|
|
7301
|
-
},
|
|
7302
|
-
"prev_cursor": {
|
|
7303
|
-
"type": "string",
|
|
7304
|
-
"description": "Cursor for the previous page (null if first page)"
|
|
7305
|
-
},
|
|
7306
|
-
"has_more": {
|
|
7307
|
-
"type": "boolean",
|
|
7308
|
-
"description": "Whether there are more items available"
|
|
7309
|
-
}
|
|
7310
|
-
},
|
|
7311
|
-
"unevaluatedProperties": {
|
|
7312
|
-
"not": {}
|
|
7313
|
-
},
|
|
7314
|
-
"description": "Cursor-based paginated response wrapper"
|
|
7315
|
-
},
|
|
7316
|
-
"Operations.MetricsApi_list.Response.400": {
|
|
7317
|
-
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
7318
|
-
},
|
|
7319
|
-
"Operations.MetricsApi_list.Response.401": {
|
|
7320
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7321
|
-
},
|
|
7322
|
-
"Operations.MetricsApi_list.Response.500": {
|
|
7323
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7324
|
-
},
|
|
7325
|
-
"Operations.ProfilesApi_get.Response.200": {
|
|
7326
|
-
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
7327
|
-
},
|
|
7328
|
-
"Operations.ProfilesApi_get.Response.401": {
|
|
7329
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7330
|
-
},
|
|
7331
|
-
"Operations.ProfilesApi_get.Response.404": {
|
|
7332
|
-
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
7333
|
-
},
|
|
7334
|
-
"Operations.ProfilesApi_get.Response.500": {
|
|
7335
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7336
|
-
},
|
|
7337
|
-
"Operations.ProfilesApi_getBySpan.Response.200": {
|
|
7338
|
-
"type": "array",
|
|
7339
|
-
"items": {
|
|
7340
|
-
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
7341
|
-
}
|
|
7342
|
-
},
|
|
7343
|
-
"Operations.ProfilesApi_getBySpan.Response.400": {
|
|
7344
|
-
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
7345
|
-
},
|
|
7346
|
-
"Operations.ProfilesApi_getBySpan.Response.401": {
|
|
7347
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7348
|
-
},
|
|
7349
|
-
"Operations.ProfilesApi_getBySpan.Response.500": {
|
|
7350
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7351
|
-
},
|
|
7352
|
-
"Operations.ProfilesApi_getByTrace.Response.200": {
|
|
7353
|
-
"type": "array",
|
|
7354
|
-
"items": {
|
|
7355
|
-
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
7356
|
-
}
|
|
7357
|
-
},
|
|
7358
|
-
"Operations.ProfilesApi_getByTrace.Response.400": {
|
|
7359
|
-
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
7360
|
-
},
|
|
7361
|
-
"Operations.ProfilesApi_getByTrace.Response.401": {
|
|
7362
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7363
|
-
},
|
|
7364
|
-
"Operations.ProfilesApi_getByTrace.Response.500": {
|
|
7365
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7366
|
-
},
|
|
7367
|
-
"Operations.ProfilesApi_list.Response.200": {
|
|
7368
|
-
"type": "array",
|
|
7369
|
-
"items": {
|
|
7370
|
-
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
7371
|
-
}
|
|
7372
|
-
},
|
|
7373
|
-
"Operations.ProfilesApi_list.Response.400": {
|
|
7374
|
-
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
7375
|
-
},
|
|
7376
|
-
"Operations.ProfilesApi_list.Response.401": {
|
|
7377
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7378
|
-
},
|
|
7379
|
-
"Operations.ProfilesApi_list.Response.500": {
|
|
7380
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7381
|
-
},
|
|
7382
6142
|
"Operations.RunnerMcpApi_callTool.Request": {},
|
|
7383
6143
|
"Operations.RunnerMcpApi_callTool.Response.200": {},
|
|
7384
6144
|
"Operations.RunnerMcpApi_callTool.Response.400": {
|