@kong-ui-public/dashboard-renderer 8.9.10 → 8.9.11
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/dist/{GeoMapRenderer-DwpwiD-Y.js → GeoMapRenderer-CTei4zeC.js} +1 -1
- package/dist/dashboard-renderer.es.js +1 -1
- package/dist/dashboard-renderer.umd.js +7 -3
- package/dist/{index-Df_ifG7X.js → index-DGAMoPpS.js} +1025 -980
- package/dist/style.css +1 -1
- package/dist/types/components/DashboardRenderer.vue.d.ts +192 -84
- package/dist/types/components/DashboardRenderer.vue.d.ts.map +1 -1
- package/dist/types/components/DashboardTile.vue.d.ts +282 -120
- package/dist/types/components/DashboardTile.vue.d.ts.map +1 -1
- package/dist/types/composables/useContextLinks.d.ts +7 -0
- package/dist/types/composables/useContextLinks.d.ts.map +1 -1
- package/dist/types/composables/useIssueQuery.d.ts.map +1 -1
- package/package.json +14 -14
|
@@ -20,11 +20,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
20
20
|
"update:modelValue": (value: {
|
|
21
21
|
tile_height?: number | undefined;
|
|
22
22
|
preset_filters?: ({
|
|
23
|
-
field:
|
|
23
|
+
field: string;
|
|
24
24
|
operator: "in" | "not_in" | "selector";
|
|
25
25
|
value: (string | number | null)[];
|
|
26
26
|
} | {
|
|
27
|
-
field:
|
|
27
|
+
field: string;
|
|
28
28
|
operator: "empty" | "not_empty";
|
|
29
29
|
})[] | undefined;
|
|
30
30
|
template_id?: string | null | undefined;
|
|
@@ -34,9 +34,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
34
34
|
definition: {
|
|
35
35
|
chart: {
|
|
36
36
|
stacked?: boolean | undefined;
|
|
37
|
-
chart_dataset_colors?: {
|
|
37
|
+
chart_dataset_colors?: string[] | {
|
|
38
38
|
[x: string]: string;
|
|
39
|
-
} |
|
|
39
|
+
} | undefined;
|
|
40
40
|
synthetics_data_key?: string | undefined;
|
|
41
41
|
chart_title?: string | undefined;
|
|
42
42
|
allow_csv_export?: boolean | undefined;
|
|
@@ -54,9 +54,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
54
54
|
type: "donut";
|
|
55
55
|
} | {
|
|
56
56
|
stacked?: boolean | undefined;
|
|
57
|
-
chart_dataset_colors?: {
|
|
57
|
+
chart_dataset_colors?: string[] | {
|
|
58
58
|
[x: string]: string;
|
|
59
|
-
} |
|
|
59
|
+
} | undefined;
|
|
60
60
|
synthetics_data_key?: string | undefined;
|
|
61
61
|
chart_title?: string | undefined;
|
|
62
62
|
allow_csv_export?: boolean | undefined;
|
|
@@ -97,11 +97,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
97
97
|
};
|
|
98
98
|
query: {
|
|
99
99
|
filters?: ({
|
|
100
|
-
field:
|
|
100
|
+
field: string;
|
|
101
101
|
operator: "in" | "not_in" | "selector";
|
|
102
102
|
value: (string | number | null)[];
|
|
103
103
|
} | {
|
|
104
|
-
field:
|
|
104
|
+
field: string;
|
|
105
105
|
operator: "empty" | "not_empty";
|
|
106
106
|
})[] | undefined;
|
|
107
107
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -119,16 +119,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
119
119
|
meta?: {
|
|
120
120
|
[x: string]: unknown;
|
|
121
121
|
} | undefined;
|
|
122
|
-
metrics?:
|
|
123
|
-
dimensions?:
|
|
122
|
+
metrics?: string[] | undefined;
|
|
123
|
+
dimensions?: string[] | undefined;
|
|
124
124
|
datasource: "api_usage";
|
|
125
125
|
} | {
|
|
126
126
|
filters?: ({
|
|
127
|
-
field:
|
|
127
|
+
field: string;
|
|
128
128
|
operator: "in" | "not_in" | "selector";
|
|
129
129
|
value: (string | number | null)[];
|
|
130
130
|
} | {
|
|
131
|
-
field:
|
|
131
|
+
field: string;
|
|
132
132
|
operator: "empty" | "not_empty";
|
|
133
133
|
})[] | undefined;
|
|
134
134
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -146,16 +146,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
146
146
|
meta?: {
|
|
147
147
|
[x: string]: unknown;
|
|
148
148
|
} | undefined;
|
|
149
|
-
metrics?:
|
|
150
|
-
dimensions?:
|
|
149
|
+
metrics?: string[] | undefined;
|
|
150
|
+
dimensions?: string[] | undefined;
|
|
151
151
|
datasource: "basic";
|
|
152
152
|
} | {
|
|
153
153
|
filters?: ({
|
|
154
|
-
field:
|
|
154
|
+
field: string;
|
|
155
155
|
operator: "in" | "not_in" | "selector";
|
|
156
156
|
value: (string | number | null)[];
|
|
157
157
|
} | {
|
|
158
|
-
field:
|
|
158
|
+
field: string;
|
|
159
159
|
operator: "empty" | "not_empty";
|
|
160
160
|
})[] | undefined;
|
|
161
161
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -173,16 +173,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
173
173
|
meta?: {
|
|
174
174
|
[x: string]: unknown;
|
|
175
175
|
} | undefined;
|
|
176
|
-
metrics?:
|
|
177
|
-
dimensions?:
|
|
176
|
+
metrics?: string[] | undefined;
|
|
177
|
+
dimensions?: string[] | undefined;
|
|
178
178
|
datasource: "llm_usage";
|
|
179
179
|
} | {
|
|
180
180
|
filters?: ({
|
|
181
|
-
field:
|
|
181
|
+
field: string;
|
|
182
182
|
operator: "in" | "not_in" | "selector";
|
|
183
183
|
value: (string | number | null)[];
|
|
184
184
|
} | {
|
|
185
|
-
field:
|
|
185
|
+
field: string;
|
|
186
186
|
operator: "empty" | "not_empty";
|
|
187
187
|
})[] | undefined;
|
|
188
188
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -200,9 +200,36 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
200
200
|
meta?: {
|
|
201
201
|
[x: string]: unknown;
|
|
202
202
|
} | undefined;
|
|
203
|
-
metrics?:
|
|
204
|
-
dimensions?:
|
|
203
|
+
metrics?: string[] | undefined;
|
|
204
|
+
dimensions?: string[] | undefined;
|
|
205
205
|
datasource: "agentic_usage";
|
|
206
|
+
} | {
|
|
207
|
+
filters?: ({
|
|
208
|
+
field: string;
|
|
209
|
+
operator: string;
|
|
210
|
+
value: (string | number | null)[];
|
|
211
|
+
} | {
|
|
212
|
+
field: string;
|
|
213
|
+
operator: string;
|
|
214
|
+
})[] | undefined;
|
|
215
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
216
|
+
time_range?: {
|
|
217
|
+
tz?: string | undefined;
|
|
218
|
+
type: "relative";
|
|
219
|
+
time_range: string;
|
|
220
|
+
} | {
|
|
221
|
+
tz?: string | undefined;
|
|
222
|
+
type: "absolute";
|
|
223
|
+
start: string;
|
|
224
|
+
end: string;
|
|
225
|
+
} | undefined;
|
|
226
|
+
limit?: number | undefined;
|
|
227
|
+
meta?: {
|
|
228
|
+
[x: string]: unknown;
|
|
229
|
+
} | undefined;
|
|
230
|
+
metrics?: string[] | undefined;
|
|
231
|
+
dimensions?: string[] | undefined;
|
|
232
|
+
datasource: "platform";
|
|
206
233
|
};
|
|
207
234
|
};
|
|
208
235
|
layout: {
|
|
@@ -222,9 +249,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
222
249
|
"edit-tile": (tile: GridTile<{
|
|
223
250
|
chart: {
|
|
224
251
|
stacked?: boolean | undefined;
|
|
225
|
-
chart_dataset_colors?: {
|
|
252
|
+
chart_dataset_colors?: string[] | {
|
|
226
253
|
[x: string]: string;
|
|
227
|
-
} |
|
|
254
|
+
} | undefined;
|
|
228
255
|
synthetics_data_key?: string | undefined;
|
|
229
256
|
chart_title?: string | undefined;
|
|
230
257
|
allow_csv_export?: boolean | undefined;
|
|
@@ -242,9 +269,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
242
269
|
type: "donut";
|
|
243
270
|
} | {
|
|
244
271
|
stacked?: boolean | undefined;
|
|
245
|
-
chart_dataset_colors?: {
|
|
272
|
+
chart_dataset_colors?: string[] | {
|
|
246
273
|
[x: string]: string;
|
|
247
|
-
} |
|
|
274
|
+
} | undefined;
|
|
248
275
|
synthetics_data_key?: string | undefined;
|
|
249
276
|
chart_title?: string | undefined;
|
|
250
277
|
allow_csv_export?: boolean | undefined;
|
|
@@ -285,11 +312,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
285
312
|
};
|
|
286
313
|
query: {
|
|
287
314
|
filters?: ({
|
|
288
|
-
field:
|
|
315
|
+
field: string;
|
|
289
316
|
operator: "in" | "not_in" | "selector";
|
|
290
317
|
value: (string | number | null)[];
|
|
291
318
|
} | {
|
|
292
|
-
field:
|
|
319
|
+
field: string;
|
|
293
320
|
operator: "empty" | "not_empty";
|
|
294
321
|
})[] | undefined;
|
|
295
322
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -307,16 +334,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
307
334
|
meta?: {
|
|
308
335
|
[x: string]: unknown;
|
|
309
336
|
} | undefined;
|
|
310
|
-
metrics?:
|
|
311
|
-
dimensions?:
|
|
337
|
+
metrics?: string[] | undefined;
|
|
338
|
+
dimensions?: string[] | undefined;
|
|
312
339
|
datasource: "api_usage";
|
|
313
340
|
} | {
|
|
314
341
|
filters?: ({
|
|
315
|
-
field:
|
|
342
|
+
field: string;
|
|
316
343
|
operator: "in" | "not_in" | "selector";
|
|
317
344
|
value: (string | number | null)[];
|
|
318
345
|
} | {
|
|
319
|
-
field:
|
|
346
|
+
field: string;
|
|
320
347
|
operator: "empty" | "not_empty";
|
|
321
348
|
})[] | undefined;
|
|
322
349
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -334,16 +361,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
334
361
|
meta?: {
|
|
335
362
|
[x: string]: unknown;
|
|
336
363
|
} | undefined;
|
|
337
|
-
metrics?:
|
|
338
|
-
dimensions?:
|
|
364
|
+
metrics?: string[] | undefined;
|
|
365
|
+
dimensions?: string[] | undefined;
|
|
339
366
|
datasource: "basic";
|
|
340
367
|
} | {
|
|
341
368
|
filters?: ({
|
|
342
|
-
field:
|
|
369
|
+
field: string;
|
|
343
370
|
operator: "in" | "not_in" | "selector";
|
|
344
371
|
value: (string | number | null)[];
|
|
345
372
|
} | {
|
|
346
|
-
field:
|
|
373
|
+
field: string;
|
|
347
374
|
operator: "empty" | "not_empty";
|
|
348
375
|
})[] | undefined;
|
|
349
376
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -361,16 +388,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
361
388
|
meta?: {
|
|
362
389
|
[x: string]: unknown;
|
|
363
390
|
} | undefined;
|
|
364
|
-
metrics?:
|
|
365
|
-
dimensions?:
|
|
391
|
+
metrics?: string[] | undefined;
|
|
392
|
+
dimensions?: string[] | undefined;
|
|
366
393
|
datasource: "llm_usage";
|
|
367
394
|
} | {
|
|
368
395
|
filters?: ({
|
|
369
|
-
field:
|
|
396
|
+
field: string;
|
|
370
397
|
operator: "in" | "not_in" | "selector";
|
|
371
398
|
value: (string | number | null)[];
|
|
372
399
|
} | {
|
|
373
|
-
field:
|
|
400
|
+
field: string;
|
|
374
401
|
operator: "empty" | "not_empty";
|
|
375
402
|
})[] | undefined;
|
|
376
403
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -388,9 +415,36 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
388
415
|
meta?: {
|
|
389
416
|
[x: string]: unknown;
|
|
390
417
|
} | undefined;
|
|
391
|
-
metrics?:
|
|
392
|
-
dimensions?:
|
|
418
|
+
metrics?: string[] | undefined;
|
|
419
|
+
dimensions?: string[] | undefined;
|
|
393
420
|
datasource: "agentic_usage";
|
|
421
|
+
} | {
|
|
422
|
+
filters?: ({
|
|
423
|
+
field: string;
|
|
424
|
+
operator: string;
|
|
425
|
+
value: (string | number | null)[];
|
|
426
|
+
} | {
|
|
427
|
+
field: string;
|
|
428
|
+
operator: string;
|
|
429
|
+
})[] | undefined;
|
|
430
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
431
|
+
time_range?: {
|
|
432
|
+
tz?: string | undefined;
|
|
433
|
+
type: "relative";
|
|
434
|
+
time_range: string;
|
|
435
|
+
} | {
|
|
436
|
+
tz?: string | undefined;
|
|
437
|
+
type: "absolute";
|
|
438
|
+
start: string;
|
|
439
|
+
end: string;
|
|
440
|
+
} | undefined;
|
|
441
|
+
limit?: number | undefined;
|
|
442
|
+
meta?: {
|
|
443
|
+
[x: string]: unknown;
|
|
444
|
+
} | undefined;
|
|
445
|
+
metrics?: string[] | undefined;
|
|
446
|
+
dimensions?: string[] | undefined;
|
|
447
|
+
datasource: "platform";
|
|
394
448
|
};
|
|
395
449
|
}>) => any;
|
|
396
450
|
"tile-time-range-zoom": (newTimeRange: TileZoomEvent) => any;
|
|
@@ -398,9 +452,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
398
452
|
"onEdit-tile"?: ((tile: GridTile<{
|
|
399
453
|
chart: {
|
|
400
454
|
stacked?: boolean | undefined;
|
|
401
|
-
chart_dataset_colors?: {
|
|
455
|
+
chart_dataset_colors?: string[] | {
|
|
402
456
|
[x: string]: string;
|
|
403
|
-
} |
|
|
457
|
+
} | undefined;
|
|
404
458
|
synthetics_data_key?: string | undefined;
|
|
405
459
|
chart_title?: string | undefined;
|
|
406
460
|
allow_csv_export?: boolean | undefined;
|
|
@@ -418,9 +472,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
418
472
|
type: "donut";
|
|
419
473
|
} | {
|
|
420
474
|
stacked?: boolean | undefined;
|
|
421
|
-
chart_dataset_colors?: {
|
|
475
|
+
chart_dataset_colors?: string[] | {
|
|
422
476
|
[x: string]: string;
|
|
423
|
-
} |
|
|
477
|
+
} | undefined;
|
|
424
478
|
synthetics_data_key?: string | undefined;
|
|
425
479
|
chart_title?: string | undefined;
|
|
426
480
|
allow_csv_export?: boolean | undefined;
|
|
@@ -461,11 +515,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
461
515
|
};
|
|
462
516
|
query: {
|
|
463
517
|
filters?: ({
|
|
464
|
-
field:
|
|
518
|
+
field: string;
|
|
465
519
|
operator: "in" | "not_in" | "selector";
|
|
466
520
|
value: (string | number | null)[];
|
|
467
521
|
} | {
|
|
468
|
-
field:
|
|
522
|
+
field: string;
|
|
469
523
|
operator: "empty" | "not_empty";
|
|
470
524
|
})[] | undefined;
|
|
471
525
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -483,16 +537,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
483
537
|
meta?: {
|
|
484
538
|
[x: string]: unknown;
|
|
485
539
|
} | undefined;
|
|
486
|
-
metrics?:
|
|
487
|
-
dimensions?:
|
|
540
|
+
metrics?: string[] | undefined;
|
|
541
|
+
dimensions?: string[] | undefined;
|
|
488
542
|
datasource: "api_usage";
|
|
489
543
|
} | {
|
|
490
544
|
filters?: ({
|
|
491
|
-
field:
|
|
545
|
+
field: string;
|
|
492
546
|
operator: "in" | "not_in" | "selector";
|
|
493
547
|
value: (string | number | null)[];
|
|
494
548
|
} | {
|
|
495
|
-
field:
|
|
549
|
+
field: string;
|
|
496
550
|
operator: "empty" | "not_empty";
|
|
497
551
|
})[] | undefined;
|
|
498
552
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -510,16 +564,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
510
564
|
meta?: {
|
|
511
565
|
[x: string]: unknown;
|
|
512
566
|
} | undefined;
|
|
513
|
-
metrics?:
|
|
514
|
-
dimensions?:
|
|
567
|
+
metrics?: string[] | undefined;
|
|
568
|
+
dimensions?: string[] | undefined;
|
|
515
569
|
datasource: "basic";
|
|
516
570
|
} | {
|
|
517
571
|
filters?: ({
|
|
518
|
-
field:
|
|
572
|
+
field: string;
|
|
519
573
|
operator: "in" | "not_in" | "selector";
|
|
520
574
|
value: (string | number | null)[];
|
|
521
575
|
} | {
|
|
522
|
-
field:
|
|
576
|
+
field: string;
|
|
523
577
|
operator: "empty" | "not_empty";
|
|
524
578
|
})[] | undefined;
|
|
525
579
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -537,16 +591,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
537
591
|
meta?: {
|
|
538
592
|
[x: string]: unknown;
|
|
539
593
|
} | undefined;
|
|
540
|
-
metrics?:
|
|
541
|
-
dimensions?:
|
|
594
|
+
metrics?: string[] | undefined;
|
|
595
|
+
dimensions?: string[] | undefined;
|
|
542
596
|
datasource: "llm_usage";
|
|
543
597
|
} | {
|
|
544
598
|
filters?: ({
|
|
545
|
-
field:
|
|
599
|
+
field: string;
|
|
546
600
|
operator: "in" | "not_in" | "selector";
|
|
547
601
|
value: (string | number | null)[];
|
|
548
602
|
} | {
|
|
549
|
-
field:
|
|
603
|
+
field: string;
|
|
550
604
|
operator: "empty" | "not_empty";
|
|
551
605
|
})[] | undefined;
|
|
552
606
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -564,20 +618,47 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
564
618
|
meta?: {
|
|
565
619
|
[x: string]: unknown;
|
|
566
620
|
} | undefined;
|
|
567
|
-
metrics?:
|
|
568
|
-
dimensions?:
|
|
621
|
+
metrics?: string[] | undefined;
|
|
622
|
+
dimensions?: string[] | undefined;
|
|
569
623
|
datasource: "agentic_usage";
|
|
624
|
+
} | {
|
|
625
|
+
filters?: ({
|
|
626
|
+
field: string;
|
|
627
|
+
operator: string;
|
|
628
|
+
value: (string | number | null)[];
|
|
629
|
+
} | {
|
|
630
|
+
field: string;
|
|
631
|
+
operator: string;
|
|
632
|
+
})[] | undefined;
|
|
633
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
634
|
+
time_range?: {
|
|
635
|
+
tz?: string | undefined;
|
|
636
|
+
type: "relative";
|
|
637
|
+
time_range: string;
|
|
638
|
+
} | {
|
|
639
|
+
tz?: string | undefined;
|
|
640
|
+
type: "absolute";
|
|
641
|
+
start: string;
|
|
642
|
+
end: string;
|
|
643
|
+
} | undefined;
|
|
644
|
+
limit?: number | undefined;
|
|
645
|
+
meta?: {
|
|
646
|
+
[x: string]: unknown;
|
|
647
|
+
} | undefined;
|
|
648
|
+
metrics?: string[] | undefined;
|
|
649
|
+
dimensions?: string[] | undefined;
|
|
650
|
+
datasource: "platform";
|
|
570
651
|
};
|
|
571
652
|
}>) => any) | undefined;
|
|
572
653
|
"onTile-time-range-zoom"?: ((newTimeRange: TileZoomEvent) => any) | undefined;
|
|
573
654
|
"onUpdate:modelValue"?: ((value: {
|
|
574
655
|
tile_height?: number | undefined;
|
|
575
656
|
preset_filters?: ({
|
|
576
|
-
field:
|
|
657
|
+
field: string;
|
|
577
658
|
operator: "in" | "not_in" | "selector";
|
|
578
659
|
value: (string | number | null)[];
|
|
579
660
|
} | {
|
|
580
|
-
field:
|
|
661
|
+
field: string;
|
|
581
662
|
operator: "empty" | "not_empty";
|
|
582
663
|
})[] | undefined;
|
|
583
664
|
template_id?: string | null | undefined;
|
|
@@ -587,9 +668,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
587
668
|
definition: {
|
|
588
669
|
chart: {
|
|
589
670
|
stacked?: boolean | undefined;
|
|
590
|
-
chart_dataset_colors?: {
|
|
671
|
+
chart_dataset_colors?: string[] | {
|
|
591
672
|
[x: string]: string;
|
|
592
|
-
} |
|
|
673
|
+
} | undefined;
|
|
593
674
|
synthetics_data_key?: string | undefined;
|
|
594
675
|
chart_title?: string | undefined;
|
|
595
676
|
allow_csv_export?: boolean | undefined;
|
|
@@ -607,9 +688,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
607
688
|
type: "donut";
|
|
608
689
|
} | {
|
|
609
690
|
stacked?: boolean | undefined;
|
|
610
|
-
chart_dataset_colors?: {
|
|
691
|
+
chart_dataset_colors?: string[] | {
|
|
611
692
|
[x: string]: string;
|
|
612
|
-
} |
|
|
693
|
+
} | undefined;
|
|
613
694
|
synthetics_data_key?: string | undefined;
|
|
614
695
|
chart_title?: string | undefined;
|
|
615
696
|
allow_csv_export?: boolean | undefined;
|
|
@@ -650,11 +731,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
650
731
|
};
|
|
651
732
|
query: {
|
|
652
733
|
filters?: ({
|
|
653
|
-
field:
|
|
734
|
+
field: string;
|
|
654
735
|
operator: "in" | "not_in" | "selector";
|
|
655
736
|
value: (string | number | null)[];
|
|
656
737
|
} | {
|
|
657
|
-
field:
|
|
738
|
+
field: string;
|
|
658
739
|
operator: "empty" | "not_empty";
|
|
659
740
|
})[] | undefined;
|
|
660
741
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -672,16 +753,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
672
753
|
meta?: {
|
|
673
754
|
[x: string]: unknown;
|
|
674
755
|
} | undefined;
|
|
675
|
-
metrics?:
|
|
676
|
-
dimensions?:
|
|
756
|
+
metrics?: string[] | undefined;
|
|
757
|
+
dimensions?: string[] | undefined;
|
|
677
758
|
datasource: "api_usage";
|
|
678
759
|
} | {
|
|
679
760
|
filters?: ({
|
|
680
|
-
field:
|
|
761
|
+
field: string;
|
|
681
762
|
operator: "in" | "not_in" | "selector";
|
|
682
763
|
value: (string | number | null)[];
|
|
683
764
|
} | {
|
|
684
|
-
field:
|
|
765
|
+
field: string;
|
|
685
766
|
operator: "empty" | "not_empty";
|
|
686
767
|
})[] | undefined;
|
|
687
768
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -699,16 +780,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
699
780
|
meta?: {
|
|
700
781
|
[x: string]: unknown;
|
|
701
782
|
} | undefined;
|
|
702
|
-
metrics?:
|
|
703
|
-
dimensions?:
|
|
783
|
+
metrics?: string[] | undefined;
|
|
784
|
+
dimensions?: string[] | undefined;
|
|
704
785
|
datasource: "basic";
|
|
705
786
|
} | {
|
|
706
787
|
filters?: ({
|
|
707
|
-
field:
|
|
788
|
+
field: string;
|
|
708
789
|
operator: "in" | "not_in" | "selector";
|
|
709
790
|
value: (string | number | null)[];
|
|
710
791
|
} | {
|
|
711
|
-
field:
|
|
792
|
+
field: string;
|
|
712
793
|
operator: "empty" | "not_empty";
|
|
713
794
|
})[] | undefined;
|
|
714
795
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -726,16 +807,16 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
726
807
|
meta?: {
|
|
727
808
|
[x: string]: unknown;
|
|
728
809
|
} | undefined;
|
|
729
|
-
metrics?:
|
|
730
|
-
dimensions?:
|
|
810
|
+
metrics?: string[] | undefined;
|
|
811
|
+
dimensions?: string[] | undefined;
|
|
731
812
|
datasource: "llm_usage";
|
|
732
813
|
} | {
|
|
733
814
|
filters?: ({
|
|
734
|
-
field:
|
|
815
|
+
field: string;
|
|
735
816
|
operator: "in" | "not_in" | "selector";
|
|
736
817
|
value: (string | number | null)[];
|
|
737
818
|
} | {
|
|
738
|
-
field:
|
|
819
|
+
field: string;
|
|
739
820
|
operator: "empty" | "not_empty";
|
|
740
821
|
})[] | undefined;
|
|
741
822
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -753,9 +834,36 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
753
834
|
meta?: {
|
|
754
835
|
[x: string]: unknown;
|
|
755
836
|
} | undefined;
|
|
756
|
-
metrics?:
|
|
757
|
-
dimensions?:
|
|
837
|
+
metrics?: string[] | undefined;
|
|
838
|
+
dimensions?: string[] | undefined;
|
|
758
839
|
datasource: "agentic_usage";
|
|
840
|
+
} | {
|
|
841
|
+
filters?: ({
|
|
842
|
+
field: string;
|
|
843
|
+
operator: string;
|
|
844
|
+
value: (string | number | null)[];
|
|
845
|
+
} | {
|
|
846
|
+
field: string;
|
|
847
|
+
operator: string;
|
|
848
|
+
})[] | undefined;
|
|
849
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
850
|
+
time_range?: {
|
|
851
|
+
tz?: string | undefined;
|
|
852
|
+
type: "relative";
|
|
853
|
+
time_range: string;
|
|
854
|
+
} | {
|
|
855
|
+
tz?: string | undefined;
|
|
856
|
+
type: "absolute";
|
|
857
|
+
start: string;
|
|
858
|
+
end: string;
|
|
859
|
+
} | undefined;
|
|
860
|
+
limit?: number | undefined;
|
|
861
|
+
meta?: {
|
|
862
|
+
[x: string]: unknown;
|
|
863
|
+
} | undefined;
|
|
864
|
+
metrics?: string[] | undefined;
|
|
865
|
+
dimensions?: string[] | undefined;
|
|
866
|
+
datasource: "platform";
|
|
759
867
|
};
|
|
760
868
|
};
|
|
761
869
|
layout: {
|