@almadar/std 14.2.0 → 14.4.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/behaviors/registry/app/organisms/std-api-gateway.orb +940 -807
- package/behaviors/registry/app/organisms/std-booking-system.orb +1281 -1148
- package/behaviors/registry/app/organisms/std-cicd-pipeline.orb +954 -821
- package/behaviors/registry/app/organisms/std-cms.orb +639 -519
- package/behaviors/registry/app/organisms/std-crm.orb +950 -817
- package/behaviors/registry/app/organisms/std-devops-dashboard.orb +1590 -1650
- package/behaviors/registry/app/organisms/std-ecommerce.orb +1145 -1012
- package/behaviors/registry/app/organisms/std-finance-tracker.orb +746 -613
- package/behaviors/registry/app/organisms/std-healthcare.orb +1655 -1522
- package/behaviors/registry/app/organisms/std-helpdesk.orb +865 -732
- package/behaviors/registry/app/organisms/std-hr-portal.orb +1364 -1231
- package/behaviors/registry/app/organisms/std-iot-dashboard.orb +1522 -1503
- package/behaviors/registry/app/organisms/std-lms.orb +1060 -926
- package/behaviors/registry/app/organisms/std-project-manager.orb +926 -792
- package/behaviors/registry/app/organisms/std-realtime-chat.orb +886 -753
- package/behaviors/registry/app/organisms/std-social-feed.orb +403 -268
- package/behaviors/registry/app/organisms/std-trading-dashboard.orb +1372 -1353
- package/behaviors/registry/core/molecules/std-app-layout.orb +60 -18
- package/dist/behaviors/registry/app/organisms/std-api-gateway.orb +940 -807
- package/dist/behaviors/registry/app/organisms/std-booking-system.orb +1281 -1148
- package/dist/behaviors/registry/app/organisms/std-cicd-pipeline.orb +954 -821
- package/dist/behaviors/registry/app/organisms/std-cms.orb +639 -519
- package/dist/behaviors/registry/app/organisms/std-crm.orb +950 -817
- package/dist/behaviors/registry/app/organisms/std-devops-dashboard.orb +1590 -1650
- package/dist/behaviors/registry/app/organisms/std-ecommerce.orb +1145 -1012
- package/dist/behaviors/registry/app/organisms/std-finance-tracker.orb +746 -613
- package/dist/behaviors/registry/app/organisms/std-healthcare.orb +1655 -1522
- package/dist/behaviors/registry/app/organisms/std-helpdesk.orb +865 -732
- package/dist/behaviors/registry/app/organisms/std-hr-portal.orb +1364 -1231
- package/dist/behaviors/registry/app/organisms/std-iot-dashboard.orb +1522 -1503
- package/dist/behaviors/registry/app/organisms/std-lms.orb +1060 -926
- package/dist/behaviors/registry/app/organisms/std-project-manager.orb +926 -792
- package/dist/behaviors/registry/app/organisms/std-realtime-chat.orb +886 -753
- package/dist/behaviors/registry/app/organisms/std-social-feed.orb +403 -268
- package/dist/behaviors/registry/app/organisms/std-trading-dashboard.orb +1372 -1353
- package/dist/behaviors/registry/core/molecules/std-app-layout.orb +60 -18
- package/package.json +1 -1
|
@@ -5,6 +5,12 @@
|
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "RouteOrbital",
|
|
8
|
+
"uses": [
|
|
9
|
+
{
|
|
10
|
+
"from": "std/behaviors/std-app-layout",
|
|
11
|
+
"as": "AppShell"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
8
14
|
"entity": {
|
|
9
15
|
"name": "Route",
|
|
10
16
|
"collection": "routes",
|
|
@@ -48,6 +54,38 @@
|
|
|
48
54
|
]
|
|
49
55
|
},
|
|
50
56
|
"traits": [
|
|
57
|
+
{
|
|
58
|
+
"ref": "AppShell.traits.AppLayout",
|
|
59
|
+
"name": "RouteAppLayout",
|
|
60
|
+
"config": {
|
|
61
|
+
"appName": "API Gateway",
|
|
62
|
+
"contentTrait": "@trait.RouteBrowse",
|
|
63
|
+
"searchEvent": "ROUTE_SEARCH",
|
|
64
|
+
"notificationClickEvent": "ROUTE_NOTIFICATIONS_OPEN",
|
|
65
|
+
"navItems": [
|
|
66
|
+
{
|
|
67
|
+
"icon": "git-branch",
|
|
68
|
+
"href": "/routes",
|
|
69
|
+
"label": "Routes"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"label": "Backends",
|
|
73
|
+
"icon": "server",
|
|
74
|
+
"href": "/backends"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"icon": "bar-chart-2",
|
|
78
|
+
"href": "/analytics",
|
|
79
|
+
"label": "Analytics"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"notifications": []
|
|
83
|
+
},
|
|
84
|
+
"events": {
|
|
85
|
+
"SEARCH": "ROUTE_SEARCH",
|
|
86
|
+
"NOTIFY_CLICK": "ROUTE_NOTIFICATIONS_OPEN"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
51
89
|
{
|
|
52
90
|
"name": "RouteBrowse",
|
|
53
91
|
"category": "interaction",
|
|
@@ -290,6 +328,22 @@
|
|
|
290
328
|
"kind": "trait",
|
|
291
329
|
"trait": "RouteDelete"
|
|
292
330
|
}
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"event": "ROUTE_SEARCH",
|
|
334
|
+
"triggers": "ROUTE_SEARCH",
|
|
335
|
+
"source": {
|
|
336
|
+
"kind": "trait",
|
|
337
|
+
"trait": "RouteAppLayout"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"event": "ROUTE_NOTIFICATIONS_OPEN",
|
|
342
|
+
"triggers": "ROUTE_NOTIFICATIONS_OPEN",
|
|
343
|
+
"source": {
|
|
344
|
+
"kind": "trait",
|
|
345
|
+
"trait": "RouteAppLayout"
|
|
346
|
+
}
|
|
293
347
|
}
|
|
294
348
|
],
|
|
295
349
|
"stateMachine": {
|
|
@@ -304,6 +358,26 @@
|
|
|
304
358
|
"key": "INIT",
|
|
305
359
|
"name": "Initialize"
|
|
306
360
|
},
|
|
361
|
+
{
|
|
362
|
+
"key": "ROUTE_SEARCH",
|
|
363
|
+
"name": "Route Search",
|
|
364
|
+
"payloadSchema": [
|
|
365
|
+
{
|
|
366
|
+
"name": "value",
|
|
367
|
+
"type": "string"
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"key": "ROUTE_NOTIFICATIONS_OPEN",
|
|
373
|
+
"name": "Route Notifications Open",
|
|
374
|
+
"payloadSchema": [
|
|
375
|
+
{
|
|
376
|
+
"name": "id",
|
|
377
|
+
"type": "string"
|
|
378
|
+
}
|
|
379
|
+
]
|
|
380
|
+
},
|
|
307
381
|
{
|
|
308
382
|
"key": "RouteLoaded",
|
|
309
383
|
"name": "Route loaded",
|
|
@@ -470,20 +544,59 @@
|
|
|
470
544
|
"render-ui",
|
|
471
545
|
"main",
|
|
472
546
|
{
|
|
547
|
+
"children": [
|
|
548
|
+
{
|
|
549
|
+
"type": "spinner"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "typography",
|
|
553
|
+
"variant": "caption",
|
|
554
|
+
"content": "Loading routes…",
|
|
555
|
+
"color": "muted"
|
|
556
|
+
}
|
|
557
|
+
],
|
|
558
|
+
"gap": "md",
|
|
559
|
+
"align": "center",
|
|
473
560
|
"type": "stack",
|
|
474
561
|
"direction": "vertical",
|
|
475
|
-
"
|
|
562
|
+
"className": "py-12"
|
|
563
|
+
}
|
|
564
|
+
]
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"from": "browsing",
|
|
569
|
+
"to": "browsing",
|
|
570
|
+
"event": "ROUTE_SEARCH",
|
|
571
|
+
"effects": [
|
|
572
|
+
[
|
|
573
|
+
"fetch",
|
|
574
|
+
"Route",
|
|
575
|
+
{
|
|
576
|
+
"emit": {
|
|
577
|
+
"failure": "RouteLoadFailed",
|
|
578
|
+
"success": "RouteLoaded"
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
],
|
|
582
|
+
[
|
|
583
|
+
"render-ui",
|
|
584
|
+
"main",
|
|
585
|
+
{
|
|
586
|
+
"type": "stack",
|
|
476
587
|
"gap": "md",
|
|
477
588
|
"className": "py-12",
|
|
589
|
+
"direction": "vertical",
|
|
590
|
+
"align": "center",
|
|
478
591
|
"children": [
|
|
479
592
|
{
|
|
480
593
|
"type": "spinner"
|
|
481
594
|
},
|
|
482
595
|
{
|
|
483
596
|
"color": "muted",
|
|
484
|
-
"
|
|
597
|
+
"content": "Searching…",
|
|
485
598
|
"type": "typography",
|
|
486
|
-
"
|
|
599
|
+
"variant": "caption"
|
|
487
600
|
}
|
|
488
601
|
]
|
|
489
602
|
}
|
|
@@ -493,128 +606,145 @@
|
|
|
493
606
|
{
|
|
494
607
|
"from": "browsing",
|
|
495
608
|
"to": "browsing",
|
|
496
|
-
"event": "
|
|
609
|
+
"event": "ROUTE_NOTIFICATIONS_OPEN",
|
|
497
610
|
"effects": [
|
|
498
611
|
[
|
|
499
612
|
"render-ui",
|
|
500
613
|
"main",
|
|
501
614
|
{
|
|
502
|
-
"
|
|
615
|
+
"gap": "md",
|
|
616
|
+
"type": "stack",
|
|
617
|
+
"align": "center",
|
|
618
|
+
"children": [
|
|
503
619
|
{
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"label": "Routes"
|
|
620
|
+
"name": "bell",
|
|
621
|
+
"type": "icon"
|
|
507
622
|
},
|
|
508
623
|
{
|
|
509
|
-
"
|
|
510
|
-
"
|
|
511
|
-
"
|
|
624
|
+
"content": "No notifications",
|
|
625
|
+
"type": "typography",
|
|
626
|
+
"variant": "h3"
|
|
512
627
|
},
|
|
513
628
|
{
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
629
|
+
"color": "muted",
|
|
630
|
+
"variant": "caption",
|
|
631
|
+
"content": "You're all caught up.",
|
|
632
|
+
"type": "typography"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"variant": "ghost",
|
|
636
|
+
"label": "Back to routes",
|
|
637
|
+
"type": "button",
|
|
638
|
+
"action": "INIT"
|
|
517
639
|
}
|
|
518
640
|
],
|
|
519
|
-
"
|
|
641
|
+
"direction": "vertical",
|
|
642
|
+
"className": "py-8"
|
|
643
|
+
}
|
|
644
|
+
]
|
|
645
|
+
]
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"from": "browsing",
|
|
649
|
+
"to": "browsing",
|
|
650
|
+
"event": "RouteLoaded",
|
|
651
|
+
"effects": [
|
|
652
|
+
[
|
|
653
|
+
"render-ui",
|
|
654
|
+
"main",
|
|
655
|
+
{
|
|
656
|
+
"direction": "vertical",
|
|
657
|
+
"type": "stack",
|
|
520
658
|
"children": [
|
|
521
659
|
{
|
|
522
660
|
"children": [
|
|
523
661
|
{
|
|
662
|
+
"direction": "horizontal",
|
|
663
|
+
"gap": "sm",
|
|
664
|
+
"type": "stack",
|
|
524
665
|
"children": [
|
|
525
666
|
{
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"children": [
|
|
529
|
-
{
|
|
530
|
-
"type": "icon",
|
|
531
|
-
"name": "git-branch"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"type": "typography",
|
|
535
|
-
"content": "Routes",
|
|
536
|
-
"variant": "h2"
|
|
537
|
-
}
|
|
538
|
-
],
|
|
539
|
-
"gap": "sm",
|
|
540
|
-
"type": "stack"
|
|
667
|
+
"type": "icon",
|
|
668
|
+
"name": "git-branch"
|
|
541
669
|
},
|
|
542
670
|
{
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
"children": [
|
|
547
|
-
{
|
|
548
|
-
"label": "Create Route",
|
|
549
|
-
"action": "CREATE",
|
|
550
|
-
"variant": "primary",
|
|
551
|
-
"type": "button",
|
|
552
|
-
"icon": "plus"
|
|
553
|
-
}
|
|
554
|
-
]
|
|
671
|
+
"content": "Routes",
|
|
672
|
+
"type": "typography",
|
|
673
|
+
"variant": "h2"
|
|
555
674
|
}
|
|
556
675
|
],
|
|
557
|
-
"align": "center"
|
|
558
|
-
"type": "stack",
|
|
559
|
-
"justify": "between",
|
|
560
|
-
"direction": "horizontal",
|
|
561
|
-
"gap": "md"
|
|
676
|
+
"align": "center"
|
|
562
677
|
},
|
|
563
678
|
{
|
|
564
|
-
"type": "
|
|
565
|
-
|
|
566
|
-
{
|
|
567
|
-
"gap": "sm",
|
|
568
|
-
"variant": "card",
|
|
569
|
-
"itemActions": [
|
|
570
|
-
{
|
|
571
|
-
"variant": "ghost",
|
|
572
|
-
"label": "View",
|
|
573
|
-
"event": "VIEW"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"label": "Edit",
|
|
577
|
-
"event": "EDIT",
|
|
578
|
-
"variant": "ghost"
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"variant": "danger",
|
|
582
|
-
"event": "DELETE",
|
|
583
|
-
"label": "Delete"
|
|
584
|
-
}
|
|
585
|
-
],
|
|
586
|
-
"entity": "@payload.data",
|
|
587
|
-
"fields": [
|
|
588
|
-
{
|
|
589
|
-
"name": "method",
|
|
590
|
-
"variant": "badge"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"variant": "h3",
|
|
594
|
-
"name": "path",
|
|
595
|
-
"icon": "git-branch"
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
"variant": "body",
|
|
599
|
-
"name": "backend"
|
|
600
|
-
},
|
|
679
|
+
"type": "stack",
|
|
680
|
+
"children": [
|
|
601
681
|
{
|
|
602
|
-
"
|
|
603
|
-
"variant": "
|
|
604
|
-
"
|
|
605
|
-
"
|
|
682
|
+
"label": "Create Route",
|
|
683
|
+
"variant": "primary",
|
|
684
|
+
"icon": "plus",
|
|
685
|
+
"type": "button",
|
|
686
|
+
"action": "CREATE"
|
|
606
687
|
}
|
|
607
688
|
],
|
|
608
|
-
"
|
|
689
|
+
"gap": "sm",
|
|
690
|
+
"direction": "horizontal"
|
|
609
691
|
}
|
|
610
692
|
],
|
|
611
693
|
"type": "stack",
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
"
|
|
694
|
+
"direction": "horizontal",
|
|
695
|
+
"gap": "md",
|
|
696
|
+
"justify": "between",
|
|
697
|
+
"align": "center"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"type": "divider"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"fields": [
|
|
704
|
+
{
|
|
705
|
+
"variant": "badge",
|
|
706
|
+
"name": "method"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"name": "path",
|
|
710
|
+
"variant": "h3",
|
|
711
|
+
"icon": "git-branch"
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"name": "backend",
|
|
715
|
+
"variant": "body"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"variant": "caption",
|
|
719
|
+
"format": "number",
|
|
720
|
+
"label": "Rate Limit",
|
|
721
|
+
"name": "rateLimit"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"variant": "card",
|
|
725
|
+
"gap": "sm",
|
|
726
|
+
"type": "data-list",
|
|
727
|
+
"entity": "@payload.data",
|
|
728
|
+
"itemActions": [
|
|
729
|
+
{
|
|
730
|
+
"event": "VIEW",
|
|
731
|
+
"label": "View",
|
|
732
|
+
"variant": "ghost"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"event": "EDIT",
|
|
736
|
+
"variant": "ghost",
|
|
737
|
+
"label": "Edit"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"label": "Delete",
|
|
741
|
+
"event": "DELETE",
|
|
742
|
+
"variant": "danger"
|
|
743
|
+
}
|
|
744
|
+
]
|
|
615
745
|
}
|
|
616
746
|
],
|
|
617
|
-
"
|
|
747
|
+
"gap": "lg"
|
|
618
748
|
}
|
|
619
749
|
]
|
|
620
750
|
]
|
|
@@ -628,20 +758,21 @@
|
|
|
628
758
|
"render-ui",
|
|
629
759
|
"main",
|
|
630
760
|
{
|
|
631
|
-
"direction": "vertical",
|
|
632
|
-
"type": "stack",
|
|
633
761
|
"align": "center",
|
|
762
|
+
"direction": "vertical",
|
|
763
|
+
"gap": "md",
|
|
634
764
|
"className": "py-12",
|
|
765
|
+
"type": "stack",
|
|
635
766
|
"children": [
|
|
636
767
|
{
|
|
637
|
-
"name": "alert-triangle",
|
|
638
768
|
"color": "destructive",
|
|
769
|
+
"name": "alert-triangle",
|
|
639
770
|
"type": "icon"
|
|
640
771
|
},
|
|
641
772
|
{
|
|
642
773
|
"content": "Failed to load routes",
|
|
643
|
-
"
|
|
644
|
-
"
|
|
774
|
+
"type": "typography",
|
|
775
|
+
"variant": "h3"
|
|
645
776
|
},
|
|
646
777
|
{
|
|
647
778
|
"type": "typography",
|
|
@@ -651,13 +782,12 @@
|
|
|
651
782
|
},
|
|
652
783
|
{
|
|
653
784
|
"icon": "rotate-ccw",
|
|
654
|
-
"label": "Retry",
|
|
655
785
|
"type": "button",
|
|
786
|
+
"variant": "primary",
|
|
656
787
|
"action": "INIT",
|
|
657
|
-
"
|
|
788
|
+
"label": "Retry"
|
|
658
789
|
}
|
|
659
|
-
]
|
|
660
|
-
"gap": "md"
|
|
790
|
+
]
|
|
661
791
|
}
|
|
662
792
|
]
|
|
663
793
|
]
|
|
@@ -866,32 +996,32 @@
|
|
|
866
996
|
"render-ui",
|
|
867
997
|
"modal",
|
|
868
998
|
{
|
|
869
|
-
"
|
|
999
|
+
"gap": "md",
|
|
870
1000
|
"children": [
|
|
871
1001
|
{
|
|
1002
|
+
"gap": "sm",
|
|
872
1003
|
"type": "stack",
|
|
873
1004
|
"direction": "horizontal",
|
|
874
1005
|
"children": [
|
|
875
1006
|
{
|
|
876
|
-
"
|
|
877
|
-
"
|
|
1007
|
+
"name": "plus-circle",
|
|
1008
|
+
"type": "icon"
|
|
878
1009
|
},
|
|
879
1010
|
{
|
|
880
|
-
"
|
|
1011
|
+
"variant": "h3",
|
|
881
1012
|
"type": "typography",
|
|
882
|
-
"
|
|
1013
|
+
"content": "Create Route"
|
|
883
1014
|
}
|
|
884
|
-
]
|
|
885
|
-
"gap": "sm"
|
|
1015
|
+
]
|
|
886
1016
|
},
|
|
887
1017
|
{
|
|
888
1018
|
"type": "divider"
|
|
889
1019
|
},
|
|
890
1020
|
{
|
|
891
|
-
"cancelEvent": "CLOSE",
|
|
892
1021
|
"type": "form-section",
|
|
893
1022
|
"submitEvent": "SAVE",
|
|
894
1023
|
"mode": "create",
|
|
1024
|
+
"cancelEvent": "CLOSE",
|
|
895
1025
|
"fields": [
|
|
896
1026
|
"path",
|
|
897
1027
|
"method",
|
|
@@ -901,7 +1031,7 @@
|
|
|
901
1031
|
}
|
|
902
1032
|
],
|
|
903
1033
|
"type": "stack",
|
|
904
|
-
"
|
|
1034
|
+
"direction": "vertical"
|
|
905
1035
|
}
|
|
906
1036
|
]
|
|
907
1037
|
]
|
|
@@ -942,8 +1072,8 @@
|
|
|
942
1072
|
"@payload.data",
|
|
943
1073
|
{
|
|
944
1074
|
"emit": {
|
|
945
|
-
"
|
|
946
|
-
"
|
|
1075
|
+
"success": "RouteSaved",
|
|
1076
|
+
"failure": "RouteSaveFailed"
|
|
947
1077
|
}
|
|
948
1078
|
}
|
|
949
1079
|
],
|
|
@@ -1162,8 +1292,8 @@
|
|
|
1162
1292
|
"Route",
|
|
1163
1293
|
{
|
|
1164
1294
|
"emit": {
|
|
1165
|
-
"
|
|
1166
|
-
"
|
|
1295
|
+
"success": "RouteLoaded",
|
|
1296
|
+
"failure": "RouteLoadFailed"
|
|
1167
1297
|
}
|
|
1168
1298
|
}
|
|
1169
1299
|
]
|
|
@@ -1178,54 +1308,54 @@
|
|
|
1178
1308
|
"fetch",
|
|
1179
1309
|
"Route",
|
|
1180
1310
|
{
|
|
1311
|
+
"id": "@payload.id",
|
|
1181
1312
|
"emit": {
|
|
1182
|
-
"
|
|
1183
|
-
"
|
|
1184
|
-
}
|
|
1185
|
-
"id": "@payload.id"
|
|
1313
|
+
"failure": "RouteLoadFailed",
|
|
1314
|
+
"success": "RouteLoaded"
|
|
1315
|
+
}
|
|
1186
1316
|
}
|
|
1187
1317
|
],
|
|
1188
1318
|
[
|
|
1189
1319
|
"render-ui",
|
|
1190
1320
|
"modal",
|
|
1191
1321
|
{
|
|
1322
|
+
"gap": "md",
|
|
1323
|
+
"type": "stack",
|
|
1192
1324
|
"children": [
|
|
1193
1325
|
{
|
|
1194
|
-
"type": "stack",
|
|
1195
|
-
"direction": "horizontal",
|
|
1196
1326
|
"children": [
|
|
1197
1327
|
{
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
1328
|
+
"name": "edit",
|
|
1329
|
+
"type": "icon"
|
|
1200
1330
|
},
|
|
1201
1331
|
{
|
|
1202
|
-
"type": "typography",
|
|
1203
1332
|
"content": "Edit Route",
|
|
1204
|
-
"variant": "h3"
|
|
1333
|
+
"variant": "h3",
|
|
1334
|
+
"type": "typography"
|
|
1205
1335
|
}
|
|
1206
1336
|
],
|
|
1337
|
+
"direction": "horizontal",
|
|
1338
|
+
"type": "stack",
|
|
1207
1339
|
"gap": "sm"
|
|
1208
1340
|
},
|
|
1209
1341
|
{
|
|
1210
1342
|
"type": "divider"
|
|
1211
1343
|
},
|
|
1212
1344
|
{
|
|
1213
|
-
"mode": "edit",
|
|
1214
|
-
"entity": "@payload.row",
|
|
1215
1345
|
"submitEvent": "SAVE",
|
|
1216
1346
|
"cancelEvent": "CLOSE",
|
|
1347
|
+
"mode": "edit",
|
|
1348
|
+
"type": "form-section",
|
|
1217
1349
|
"fields": [
|
|
1218
1350
|
"path",
|
|
1219
1351
|
"method",
|
|
1220
1352
|
"backend",
|
|
1221
1353
|
"rateLimit"
|
|
1222
1354
|
],
|
|
1223
|
-
"
|
|
1355
|
+
"entity": "@payload.row"
|
|
1224
1356
|
}
|
|
1225
1357
|
],
|
|
1226
|
-
"
|
|
1227
|
-
"direction": "vertical",
|
|
1228
|
-
"gap": "md"
|
|
1358
|
+
"direction": "vertical"
|
|
1229
1359
|
}
|
|
1230
1360
|
]
|
|
1231
1361
|
]
|
|
@@ -1266,8 +1396,8 @@
|
|
|
1266
1396
|
"@payload.data",
|
|
1267
1397
|
{
|
|
1268
1398
|
"emit": {
|
|
1269
|
-
"
|
|
1270
|
-
"
|
|
1399
|
+
"failure": "RouteUpdateFailed",
|
|
1400
|
+
"success": "RouteUpdated"
|
|
1271
1401
|
}
|
|
1272
1402
|
}
|
|
1273
1403
|
],
|
|
@@ -1473,13 +1603,10 @@
|
|
|
1473
1603
|
"modal",
|
|
1474
1604
|
{
|
|
1475
1605
|
"direction": "vertical",
|
|
1476
|
-
"gap": "md",
|
|
1477
|
-
"type": "stack",
|
|
1478
1606
|
"children": [
|
|
1479
1607
|
{
|
|
1480
|
-
"type": "stack",
|
|
1481
|
-
"align": "center",
|
|
1482
1608
|
"gap": "sm",
|
|
1609
|
+
"align": "center",
|
|
1483
1610
|
"direction": "horizontal",
|
|
1484
1611
|
"children": [
|
|
1485
1612
|
{
|
|
@@ -1487,22 +1614,21 @@
|
|
|
1487
1614
|
"name": "eye"
|
|
1488
1615
|
},
|
|
1489
1616
|
{
|
|
1490
|
-
"content": "@entity.path",
|
|
1491
1617
|
"type": "typography",
|
|
1492
|
-
"variant": "h3"
|
|
1618
|
+
"variant": "h3",
|
|
1619
|
+
"content": "@entity.path"
|
|
1493
1620
|
}
|
|
1494
|
-
]
|
|
1621
|
+
],
|
|
1622
|
+
"type": "stack"
|
|
1495
1623
|
},
|
|
1496
1624
|
{
|
|
1497
1625
|
"type": "divider"
|
|
1498
1626
|
},
|
|
1499
1627
|
{
|
|
1500
|
-
"gap": "md",
|
|
1501
|
-
"type": "stack",
|
|
1502
1628
|
"children": [
|
|
1503
1629
|
{
|
|
1504
|
-
"variant": "caption",
|
|
1505
1630
|
"type": "typography",
|
|
1631
|
+
"variant": "caption",
|
|
1506
1632
|
"content": "Path"
|
|
1507
1633
|
},
|
|
1508
1634
|
{
|
|
@@ -1511,16 +1637,17 @@
|
|
|
1511
1637
|
"content": "@entity.path"
|
|
1512
1638
|
}
|
|
1513
1639
|
],
|
|
1514
|
-
"direction": "horizontal"
|
|
1640
|
+
"direction": "horizontal",
|
|
1641
|
+
"type": "stack",
|
|
1642
|
+
"gap": "md"
|
|
1515
1643
|
},
|
|
1516
1644
|
{
|
|
1517
|
-
"direction": "horizontal",
|
|
1518
|
-
"gap": "md",
|
|
1519
1645
|
"type": "stack",
|
|
1646
|
+
"gap": "md",
|
|
1520
1647
|
"children": [
|
|
1521
1648
|
{
|
|
1522
|
-
"type": "typography",
|
|
1523
1649
|
"variant": "caption",
|
|
1650
|
+
"type": "typography",
|
|
1524
1651
|
"content": "Method"
|
|
1525
1652
|
},
|
|
1526
1653
|
{
|
|
@@ -1528,10 +1655,13 @@
|
|
|
1528
1655
|
"type": "typography",
|
|
1529
1656
|
"variant": "body"
|
|
1530
1657
|
}
|
|
1531
|
-
]
|
|
1658
|
+
],
|
|
1659
|
+
"direction": "horizontal"
|
|
1532
1660
|
},
|
|
1533
1661
|
{
|
|
1662
|
+
"gap": "md",
|
|
1534
1663
|
"direction": "horizontal",
|
|
1664
|
+
"type": "stack",
|
|
1535
1665
|
"children": [
|
|
1536
1666
|
{
|
|
1537
1667
|
"variant": "caption",
|
|
@@ -1543,52 +1673,52 @@
|
|
|
1543
1673
|
"type": "typography",
|
|
1544
1674
|
"variant": "body"
|
|
1545
1675
|
}
|
|
1546
|
-
]
|
|
1547
|
-
"gap": "md",
|
|
1548
|
-
"type": "stack"
|
|
1676
|
+
]
|
|
1549
1677
|
},
|
|
1550
1678
|
{
|
|
1551
|
-
"direction": "horizontal",
|
|
1552
1679
|
"children": [
|
|
1553
1680
|
{
|
|
1681
|
+
"type": "typography",
|
|
1554
1682
|
"content": "Rate Limit",
|
|
1555
|
-
"variant": "caption"
|
|
1556
|
-
"type": "typography"
|
|
1683
|
+
"variant": "caption"
|
|
1557
1684
|
},
|
|
1558
1685
|
{
|
|
1559
|
-
"content": "@entity.rateLimit",
|
|
1560
1686
|
"variant": "body",
|
|
1687
|
+
"content": "@entity.rateLimit",
|
|
1561
1688
|
"type": "typography"
|
|
1562
1689
|
}
|
|
1563
1690
|
],
|
|
1564
|
-
"
|
|
1565
|
-
"
|
|
1691
|
+
"gap": "md",
|
|
1692
|
+
"direction": "horizontal",
|
|
1693
|
+
"type": "stack"
|
|
1566
1694
|
},
|
|
1567
1695
|
{
|
|
1568
1696
|
"type": "divider"
|
|
1569
1697
|
},
|
|
1570
1698
|
{
|
|
1571
1699
|
"direction": "horizontal",
|
|
1572
|
-
"gap": "sm",
|
|
1573
|
-
"type": "stack",
|
|
1574
|
-
"justify": "end",
|
|
1575
1700
|
"children": [
|
|
1576
1701
|
{
|
|
1577
|
-
"action": "EDIT",
|
|
1578
1702
|
"icon": "edit",
|
|
1703
|
+
"type": "button",
|
|
1579
1704
|
"label": "Edit",
|
|
1580
|
-
"
|
|
1581
|
-
"
|
|
1705
|
+
"action": "EDIT",
|
|
1706
|
+
"variant": "primary"
|
|
1582
1707
|
},
|
|
1583
1708
|
{
|
|
1584
1709
|
"label": "Close",
|
|
1585
1710
|
"type": "button",
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1711
|
+
"variant": "ghost",
|
|
1712
|
+
"action": "CLOSE"
|
|
1588
1713
|
}
|
|
1589
|
-
]
|
|
1714
|
+
],
|
|
1715
|
+
"gap": "sm",
|
|
1716
|
+
"type": "stack",
|
|
1717
|
+
"justify": "end"
|
|
1590
1718
|
}
|
|
1591
|
-
]
|
|
1719
|
+
],
|
|
1720
|
+
"type": "stack",
|
|
1721
|
+
"gap": "md"
|
|
1592
1722
|
}
|
|
1593
1723
|
]
|
|
1594
1724
|
]
|
|
@@ -1839,36 +1969,37 @@
|
|
|
1839
1969
|
"fetch",
|
|
1840
1970
|
"Route",
|
|
1841
1971
|
{
|
|
1842
|
-
"id": "@payload.id",
|
|
1843
1972
|
"emit": {
|
|
1844
|
-
"
|
|
1845
|
-
"
|
|
1846
|
-
}
|
|
1973
|
+
"failure": "RouteLoadFailed",
|
|
1974
|
+
"success": "RouteLoaded"
|
|
1975
|
+
},
|
|
1976
|
+
"id": "@payload.id"
|
|
1847
1977
|
}
|
|
1848
1978
|
],
|
|
1849
1979
|
[
|
|
1850
1980
|
"render-ui",
|
|
1851
1981
|
"modal",
|
|
1852
1982
|
{
|
|
1853
|
-
"
|
|
1983
|
+
"type": "stack",
|
|
1854
1984
|
"gap": "md",
|
|
1985
|
+
"direction": "vertical",
|
|
1855
1986
|
"children": [
|
|
1856
1987
|
{
|
|
1857
|
-
"gap": "sm",
|
|
1858
|
-
"align": "center",
|
|
1859
1988
|
"children": [
|
|
1860
1989
|
{
|
|
1861
|
-
"
|
|
1862
|
-
"
|
|
1990
|
+
"name": "alert-triangle",
|
|
1991
|
+
"type": "icon"
|
|
1863
1992
|
},
|
|
1864
1993
|
{
|
|
1865
1994
|
"variant": "h3",
|
|
1866
|
-
"
|
|
1867
|
-
"
|
|
1995
|
+
"content": "Delete Route",
|
|
1996
|
+
"type": "typography"
|
|
1868
1997
|
}
|
|
1869
1998
|
],
|
|
1999
|
+
"type": "stack",
|
|
1870
2000
|
"direction": "horizontal",
|
|
1871
|
-
"
|
|
2001
|
+
"gap": "sm",
|
|
2002
|
+
"align": "center"
|
|
1872
2003
|
},
|
|
1873
2004
|
{
|
|
1874
2005
|
"type": "divider"
|
|
@@ -1879,28 +2010,27 @@
|
|
|
1879
2010
|
"message": "This action cannot be undone."
|
|
1880
2011
|
},
|
|
1881
2012
|
{
|
|
1882
|
-
"type": "stack",
|
|
1883
|
-
"direction": "horizontal",
|
|
1884
|
-
"justify": "end",
|
|
1885
|
-
"gap": "sm",
|
|
1886
2013
|
"children": [
|
|
1887
2014
|
{
|
|
2015
|
+
"label": "Cancel",
|
|
1888
2016
|
"variant": "ghost",
|
|
1889
2017
|
"type": "button",
|
|
1890
|
-
"action": "CANCEL"
|
|
1891
|
-
"label": "Cancel"
|
|
2018
|
+
"action": "CANCEL"
|
|
1892
2019
|
},
|
|
1893
2020
|
{
|
|
2021
|
+
"label": "Delete",
|
|
2022
|
+
"variant": "danger",
|
|
1894
2023
|
"type": "button",
|
|
1895
2024
|
"icon": "check",
|
|
1896
|
-
"variant": "danger",
|
|
1897
|
-
"label": "Delete",
|
|
1898
2025
|
"action": "CONFIRM_DELETE"
|
|
1899
2026
|
}
|
|
1900
|
-
]
|
|
2027
|
+
],
|
|
2028
|
+
"gap": "sm",
|
|
2029
|
+
"type": "stack",
|
|
2030
|
+
"direction": "horizontal",
|
|
2031
|
+
"justify": "end"
|
|
1901
2032
|
}
|
|
1902
|
-
]
|
|
1903
|
-
"type": "stack"
|
|
2033
|
+
]
|
|
1904
2034
|
}
|
|
1905
2035
|
]
|
|
1906
2036
|
]
|
|
@@ -1939,8 +2069,8 @@
|
|
|
1939
2069
|
"Route",
|
|
1940
2070
|
{
|
|
1941
2071
|
"emit": {
|
|
1942
|
-
"
|
|
1943
|
-
"
|
|
2072
|
+
"success": "RouteLoaded",
|
|
2073
|
+
"failure": "RouteLoadFailed"
|
|
1944
2074
|
}
|
|
1945
2075
|
}
|
|
1946
2076
|
],
|
|
@@ -1972,8 +2102,8 @@
|
|
|
1972
2102
|
"Route",
|
|
1973
2103
|
{
|
|
1974
2104
|
"emit": {
|
|
1975
|
-
"
|
|
1976
|
-
"
|
|
2105
|
+
"failure": "RouteLoadFailed",
|
|
2106
|
+
"success": "RouteLoaded"
|
|
1977
2107
|
}
|
|
1978
2108
|
}
|
|
1979
2109
|
]
|
|
@@ -2001,8 +2131,8 @@
|
|
|
2001
2131
|
"Route",
|
|
2002
2132
|
{
|
|
2003
2133
|
"emit": {
|
|
2004
|
-
"
|
|
2005
|
-
"
|
|
2134
|
+
"success": "RouteLoaded",
|
|
2135
|
+
"failure": "RouteLoadFailed"
|
|
2006
2136
|
}
|
|
2007
2137
|
}
|
|
2008
2138
|
]
|
|
@@ -2018,6 +2148,9 @@
|
|
|
2018
2148
|
"name": "RoutesPage",
|
|
2019
2149
|
"path": "/routes",
|
|
2020
2150
|
"traits": [
|
|
2151
|
+
{
|
|
2152
|
+
"ref": "RouteAppLayout"
|
|
2153
|
+
},
|
|
2021
2154
|
{
|
|
2022
2155
|
"ref": "RouteBrowse"
|
|
2023
2156
|
},
|
|
@@ -2198,8 +2331,8 @@
|
|
|
2198
2331
|
"Backend",
|
|
2199
2332
|
{
|
|
2200
2333
|
"emit": {
|
|
2201
|
-
"
|
|
2202
|
-
"
|
|
2334
|
+
"success": "BackendLoaded",
|
|
2335
|
+
"failure": "BackendLoadFailed"
|
|
2203
2336
|
}
|
|
2204
2337
|
}
|
|
2205
2338
|
],
|
|
@@ -2208,14 +2341,29 @@
|
|
|
2208
2341
|
"main",
|
|
2209
2342
|
{
|
|
2210
2343
|
"type": "dashboard-layout",
|
|
2344
|
+
"navItems": [
|
|
2345
|
+
{
|
|
2346
|
+
"href": "/routes",
|
|
2347
|
+
"icon": "git-branch",
|
|
2348
|
+
"label": "Routes"
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"label": "Backends",
|
|
2352
|
+
"href": "/backends",
|
|
2353
|
+
"icon": "server"
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"icon": "bar-chart-2",
|
|
2357
|
+
"href": "/analytics",
|
|
2358
|
+
"label": "Analytics"
|
|
2359
|
+
}
|
|
2360
|
+
],
|
|
2211
2361
|
"children": [
|
|
2212
2362
|
{
|
|
2363
|
+
"type": "stack",
|
|
2213
2364
|
"gap": "lg",
|
|
2214
2365
|
"children": [
|
|
2215
2366
|
{
|
|
2216
|
-
"justify": "between",
|
|
2217
|
-
"type": "stack",
|
|
2218
|
-
"direction": "horizontal",
|
|
2219
2367
|
"align": "center",
|
|
2220
2368
|
"children": [
|
|
2221
2369
|
{
|
|
@@ -2227,75 +2375,60 @@
|
|
|
2227
2375
|
},
|
|
2228
2376
|
{
|
|
2229
2377
|
"variant": "h2",
|
|
2230
|
-
"
|
|
2231
|
-
"
|
|
2378
|
+
"type": "typography",
|
|
2379
|
+
"content": "Backend"
|
|
2232
2380
|
}
|
|
2233
2381
|
],
|
|
2234
|
-
"direction": "horizontal",
|
|
2235
2382
|
"type": "stack",
|
|
2236
|
-
"gap": "md"
|
|
2383
|
+
"gap": "md",
|
|
2384
|
+
"direction": "horizontal"
|
|
2237
2385
|
},
|
|
2238
2386
|
{
|
|
2239
|
-
"status": "online",
|
|
2240
|
-
"type": "status-dot",
|
|
2241
2387
|
"pulse": false,
|
|
2388
|
+
"type": "status-dot",
|
|
2389
|
+
"status": "online",
|
|
2242
2390
|
"label": "Circuit Closed"
|
|
2243
2391
|
}
|
|
2244
2392
|
],
|
|
2245
|
-
"
|
|
2393
|
+
"direction": "horizontal",
|
|
2394
|
+
"gap": "md",
|
|
2395
|
+
"justify": "between",
|
|
2396
|
+
"type": "stack"
|
|
2246
2397
|
},
|
|
2247
2398
|
{
|
|
2248
2399
|
"type": "divider"
|
|
2249
2400
|
},
|
|
2250
2401
|
{
|
|
2251
|
-
"variant": "success",
|
|
2252
2402
|
"type": "alert",
|
|
2403
|
+
"variant": "success",
|
|
2253
2404
|
"message": "Service is healthy. All requests are being processed."
|
|
2254
2405
|
},
|
|
2255
2406
|
{
|
|
2256
2407
|
"children": [
|
|
2257
2408
|
{
|
|
2258
|
-
"value": "@entity.failureCount",
|
|
2259
2409
|
"type": "stat-display",
|
|
2260
|
-
"label": "Failures"
|
|
2410
|
+
"label": "Failures",
|
|
2411
|
+
"value": "@entity.failureCount"
|
|
2261
2412
|
},
|
|
2262
2413
|
{
|
|
2263
|
-
"value": "@entity.successCount",
|
|
2264
2414
|
"type": "stat-display",
|
|
2265
|
-
"label": "Successes"
|
|
2415
|
+
"label": "Successes",
|
|
2416
|
+
"value": "@entity.successCount"
|
|
2266
2417
|
}
|
|
2267
2418
|
],
|
|
2268
2419
|
"type": "simple-grid",
|
|
2269
2420
|
"cols": 2.0
|
|
2270
2421
|
},
|
|
2271
2422
|
{
|
|
2272
|
-
"type": "meter",
|
|
2273
|
-
"max": "@entity.threshold",
|
|
2274
2423
|
"min": 0.0,
|
|
2275
|
-
"value": "@entity.failureCount"
|
|
2424
|
+
"value": "@entity.failureCount",
|
|
2425
|
+
"type": "meter",
|
|
2426
|
+
"max": "@entity.threshold"
|
|
2276
2427
|
}
|
|
2277
2428
|
],
|
|
2278
|
-
"type": "stack",
|
|
2279
2429
|
"direction": "vertical"
|
|
2280
2430
|
}
|
|
2281
2431
|
],
|
|
2282
|
-
"navItems": [
|
|
2283
|
-
{
|
|
2284
|
-
"icon": "git-branch",
|
|
2285
|
-
"href": "/routes",
|
|
2286
|
-
"label": "Routes"
|
|
2287
|
-
},
|
|
2288
|
-
{
|
|
2289
|
-
"href": "/backends",
|
|
2290
|
-
"icon": "server",
|
|
2291
|
-
"label": "Backends"
|
|
2292
|
-
},
|
|
2293
|
-
{
|
|
2294
|
-
"label": "Analytics",
|
|
2295
|
-
"icon": "bar-chart-2",
|
|
2296
|
-
"href": "/analytics"
|
|
2297
|
-
}
|
|
2298
|
-
],
|
|
2299
2432
|
"appName": "API Gateway"
|
|
2300
2433
|
}
|
|
2301
2434
|
]
|
|
@@ -2313,56 +2446,56 @@
|
|
|
2313
2446
|
"appName": "API Gateway",
|
|
2314
2447
|
"children": [
|
|
2315
2448
|
{
|
|
2316
|
-
"
|
|
2449
|
+
"gap": "lg",
|
|
2317
2450
|
"type": "stack",
|
|
2451
|
+
"direction": "vertical",
|
|
2318
2452
|
"children": [
|
|
2319
2453
|
{
|
|
2320
|
-
"
|
|
2454
|
+
"gap": "md",
|
|
2455
|
+
"align": "center",
|
|
2321
2456
|
"direction": "horizontal",
|
|
2322
2457
|
"justify": "between",
|
|
2323
2458
|
"children": [
|
|
2324
2459
|
{
|
|
2460
|
+
"direction": "horizontal",
|
|
2325
2461
|
"gap": "md",
|
|
2462
|
+
"align": "center",
|
|
2326
2463
|
"children": [
|
|
2327
2464
|
{
|
|
2328
2465
|
"type": "icon",
|
|
2329
2466
|
"name": "alert-triangle"
|
|
2330
2467
|
},
|
|
2331
2468
|
{
|
|
2469
|
+
"variant": "h2",
|
|
2332
2470
|
"type": "typography",
|
|
2333
|
-
"content": "Backend"
|
|
2334
|
-
"variant": "h2"
|
|
2471
|
+
"content": "Backend"
|
|
2335
2472
|
}
|
|
2336
2473
|
],
|
|
2337
|
-
"type": "stack"
|
|
2338
|
-
"align": "center",
|
|
2339
|
-
"direction": "horizontal"
|
|
2474
|
+
"type": "stack"
|
|
2340
2475
|
},
|
|
2341
2476
|
{
|
|
2342
2477
|
"status": "critical",
|
|
2343
2478
|
"type": "status-dot",
|
|
2344
|
-
"
|
|
2345
|
-
"
|
|
2479
|
+
"label": "Circuit Open",
|
|
2480
|
+
"pulse": true
|
|
2346
2481
|
}
|
|
2347
2482
|
],
|
|
2348
|
-
"
|
|
2349
|
-
"gap": "md"
|
|
2483
|
+
"type": "stack"
|
|
2350
2484
|
},
|
|
2351
2485
|
{
|
|
2352
2486
|
"type": "divider"
|
|
2353
2487
|
},
|
|
2354
2488
|
{
|
|
2355
|
-
"
|
|
2489
|
+
"type": "alert",
|
|
2356
2490
|
"message": "Circuit is open. Requests are being rejected to prevent cascading failures.",
|
|
2357
|
-
"
|
|
2491
|
+
"variant": "error"
|
|
2358
2492
|
},
|
|
2359
2493
|
{
|
|
2360
|
-
"cols": 2.0,
|
|
2361
2494
|
"children": [
|
|
2362
2495
|
{
|
|
2363
|
-
"type": "stat-display",
|
|
2364
2496
|
"label": "Failures",
|
|
2365
|
-
"value": "@entity.failureCount"
|
|
2497
|
+
"value": "@entity.failureCount",
|
|
2498
|
+
"type": "stat-display"
|
|
2366
2499
|
},
|
|
2367
2500
|
{
|
|
2368
2501
|
"type": "stat-display",
|
|
@@ -2370,40 +2503,40 @@
|
|
|
2370
2503
|
"label": "Successes"
|
|
2371
2504
|
}
|
|
2372
2505
|
],
|
|
2373
|
-
"type": "simple-grid"
|
|
2506
|
+
"type": "simple-grid",
|
|
2507
|
+
"cols": 2.0
|
|
2374
2508
|
},
|
|
2375
2509
|
{
|
|
2510
|
+
"type": "meter",
|
|
2376
2511
|
"max": "@entity.threshold",
|
|
2377
|
-
"min": 0.0,
|
|
2378
2512
|
"value": "@entity.failureCount",
|
|
2379
|
-
"
|
|
2513
|
+
"min": 0.0
|
|
2380
2514
|
},
|
|
2381
2515
|
{
|
|
2382
|
-
"label": "Reset",
|
|
2383
2516
|
"type": "button",
|
|
2384
|
-
"action": "RESET",
|
|
2385
2517
|
"variant": "ghost",
|
|
2386
|
-
"
|
|
2518
|
+
"label": "Reset",
|
|
2519
|
+
"icon": "rotate-ccw",
|
|
2520
|
+
"action": "RESET"
|
|
2387
2521
|
}
|
|
2388
|
-
]
|
|
2389
|
-
"gap": "lg"
|
|
2522
|
+
]
|
|
2390
2523
|
}
|
|
2391
2524
|
],
|
|
2392
2525
|
"type": "dashboard-layout",
|
|
2393
2526
|
"navItems": [
|
|
2394
2527
|
{
|
|
2395
|
-
"icon": "git-branch",
|
|
2396
2528
|
"href": "/routes",
|
|
2397
|
-
"label": "Routes"
|
|
2529
|
+
"label": "Routes",
|
|
2530
|
+
"icon": "git-branch"
|
|
2398
2531
|
},
|
|
2399
2532
|
{
|
|
2533
|
+
"href": "/backends",
|
|
2400
2534
|
"icon": "server",
|
|
2401
|
-
"label": "Backends"
|
|
2402
|
-
"href": "/backends"
|
|
2535
|
+
"label": "Backends"
|
|
2403
2536
|
},
|
|
2404
2537
|
{
|
|
2405
|
-
"label": "Analytics",
|
|
2406
2538
|
"icon": "bar-chart-2",
|
|
2539
|
+
"label": "Analytics",
|
|
2407
2540
|
"href": "/analytics"
|
|
2408
2541
|
}
|
|
2409
2542
|
]
|
|
@@ -2420,31 +2553,31 @@
|
|
|
2420
2553
|
"render-ui",
|
|
2421
2554
|
"main",
|
|
2422
2555
|
{
|
|
2423
|
-
"
|
|
2556
|
+
"appName": "API Gateway",
|
|
2424
2557
|
"children": [
|
|
2425
2558
|
{
|
|
2426
|
-
"
|
|
2559
|
+
"type": "stack",
|
|
2427
2560
|
"children": [
|
|
2428
2561
|
{
|
|
2429
|
-
"
|
|
2430
|
-
"
|
|
2562
|
+
"direction": "horizontal",
|
|
2563
|
+
"justify": "between",
|
|
2431
2564
|
"children": [
|
|
2432
2565
|
{
|
|
2566
|
+
"type": "stack",
|
|
2567
|
+
"direction": "horizontal",
|
|
2568
|
+
"gap": "md",
|
|
2569
|
+
"align": "center",
|
|
2433
2570
|
"children": [
|
|
2434
2571
|
{
|
|
2435
|
-
"
|
|
2436
|
-
"
|
|
2572
|
+
"name": "server",
|
|
2573
|
+
"type": "icon"
|
|
2437
2574
|
},
|
|
2438
2575
|
{
|
|
2439
|
-
"type": "typography",
|
|
2440
2576
|
"content": "Backend",
|
|
2577
|
+
"type": "typography",
|
|
2441
2578
|
"variant": "h2"
|
|
2442
2579
|
}
|
|
2443
|
-
]
|
|
2444
|
-
"direction": "horizontal",
|
|
2445
|
-
"align": "center",
|
|
2446
|
-
"type": "stack",
|
|
2447
|
-
"gap": "md"
|
|
2580
|
+
]
|
|
2448
2581
|
},
|
|
2449
2582
|
{
|
|
2450
2583
|
"pulse": false,
|
|
@@ -2453,9 +2586,9 @@
|
|
|
2453
2586
|
"type": "status-dot"
|
|
2454
2587
|
}
|
|
2455
2588
|
],
|
|
2456
|
-
"
|
|
2589
|
+
"type": "stack",
|
|
2457
2590
|
"gap": "md",
|
|
2458
|
-
"
|
|
2591
|
+
"align": "center"
|
|
2459
2592
|
},
|
|
2460
2593
|
{
|
|
2461
2594
|
"type": "divider"
|
|
@@ -2466,7 +2599,6 @@
|
|
|
2466
2599
|
"variant": "success"
|
|
2467
2600
|
},
|
|
2468
2601
|
{
|
|
2469
|
-
"type": "simple-grid",
|
|
2470
2602
|
"children": [
|
|
2471
2603
|
{
|
|
2472
2604
|
"label": "Failures",
|
|
@@ -2474,25 +2606,25 @@
|
|
|
2474
2606
|
"type": "stat-display"
|
|
2475
2607
|
},
|
|
2476
2608
|
{
|
|
2477
|
-
"label": "Successes",
|
|
2478
2609
|
"type": "stat-display",
|
|
2479
|
-
"value": "@entity.successCount"
|
|
2610
|
+
"value": "@entity.successCount",
|
|
2611
|
+
"label": "Successes"
|
|
2480
2612
|
}
|
|
2481
2613
|
],
|
|
2482
|
-
"cols": 2.0
|
|
2483
|
-
|
|
2614
|
+
"cols": 2.0,
|
|
2615
|
+
"type": "simple-grid"
|
|
2616
|
+
},
|
|
2484
2617
|
{
|
|
2485
2618
|
"min": 0.0,
|
|
2486
|
-
"
|
|
2619
|
+
"type": "meter",
|
|
2487
2620
|
"max": "@entity.threshold",
|
|
2488
|
-
"
|
|
2621
|
+
"value": "@entity.failureCount"
|
|
2489
2622
|
}
|
|
2490
2623
|
],
|
|
2491
|
-
"
|
|
2624
|
+
"direction": "vertical",
|
|
2492
2625
|
"gap": "lg"
|
|
2493
2626
|
}
|
|
2494
2627
|
],
|
|
2495
|
-
"appName": "API Gateway",
|
|
2496
2628
|
"navItems": [
|
|
2497
2629
|
{
|
|
2498
2630
|
"label": "Routes",
|
|
@@ -2500,16 +2632,17 @@
|
|
|
2500
2632
|
"icon": "git-branch"
|
|
2501
2633
|
},
|
|
2502
2634
|
{
|
|
2635
|
+
"label": "Backends",
|
|
2503
2636
|
"href": "/backends",
|
|
2504
|
-
"icon": "server"
|
|
2505
|
-
"label": "Backends"
|
|
2637
|
+
"icon": "server"
|
|
2506
2638
|
},
|
|
2507
2639
|
{
|
|
2508
|
-
"
|
|
2640
|
+
"icon": "bar-chart-2",
|
|
2509
2641
|
"label": "Analytics",
|
|
2510
|
-
"
|
|
2642
|
+
"href": "/analytics"
|
|
2511
2643
|
}
|
|
2512
|
-
]
|
|
2644
|
+
],
|
|
2645
|
+
"type": "dashboard-layout"
|
|
2513
2646
|
}
|
|
2514
2647
|
]
|
|
2515
2648
|
]
|
|
@@ -2523,90 +2656,90 @@
|
|
|
2523
2656
|
"render-ui",
|
|
2524
2657
|
"main",
|
|
2525
2658
|
{
|
|
2526
|
-
"type": "dashboard-layout",
|
|
2527
2659
|
"navItems": [
|
|
2528
2660
|
{
|
|
2529
2661
|
"icon": "git-branch",
|
|
2530
|
-
"
|
|
2531
|
-
"
|
|
2662
|
+
"href": "/routes",
|
|
2663
|
+
"label": "Routes"
|
|
2532
2664
|
},
|
|
2533
2665
|
{
|
|
2534
|
-
"
|
|
2666
|
+
"label": "Backends",
|
|
2535
2667
|
"icon": "server",
|
|
2536
|
-
"
|
|
2668
|
+
"href": "/backends"
|
|
2537
2669
|
},
|
|
2538
2670
|
{
|
|
2539
|
-
"label": "Analytics",
|
|
2540
2671
|
"href": "/analytics",
|
|
2672
|
+
"label": "Analytics",
|
|
2541
2673
|
"icon": "bar-chart-2"
|
|
2542
2674
|
}
|
|
2543
2675
|
],
|
|
2676
|
+
"appName": "API Gateway",
|
|
2677
|
+
"type": "dashboard-layout",
|
|
2544
2678
|
"children": [
|
|
2545
2679
|
{
|
|
2680
|
+
"gap": "lg",
|
|
2546
2681
|
"type": "stack",
|
|
2547
2682
|
"direction": "vertical",
|
|
2548
|
-
"gap": "lg",
|
|
2549
2683
|
"children": [
|
|
2550
2684
|
{
|
|
2551
|
-
"type": "stack",
|
|
2552
|
-
"align": "center",
|
|
2553
|
-
"gap": "md",
|
|
2554
2685
|
"children": [
|
|
2555
2686
|
{
|
|
2687
|
+
"type": "stack",
|
|
2688
|
+
"direction": "horizontal",
|
|
2689
|
+
"align": "center",
|
|
2690
|
+
"gap": "md",
|
|
2556
2691
|
"children": [
|
|
2557
2692
|
{
|
|
2558
|
-
"
|
|
2559
|
-
"
|
|
2693
|
+
"name": "activity",
|
|
2694
|
+
"type": "icon"
|
|
2560
2695
|
},
|
|
2561
2696
|
{
|
|
2697
|
+
"variant": "h2",
|
|
2562
2698
|
"type": "typography",
|
|
2563
|
-
"content": "Backend"
|
|
2564
|
-
"variant": "h2"
|
|
2699
|
+
"content": "Backend"
|
|
2565
2700
|
}
|
|
2566
|
-
]
|
|
2567
|
-
"type": "stack",
|
|
2568
|
-
"direction": "horizontal",
|
|
2569
|
-
"align": "center",
|
|
2570
|
-
"gap": "md"
|
|
2701
|
+
]
|
|
2571
2702
|
},
|
|
2572
2703
|
{
|
|
2573
|
-
"label": "Circuit Half-Open",
|
|
2574
2704
|
"status": "warning",
|
|
2705
|
+
"pulse": true,
|
|
2575
2706
|
"type": "status-dot",
|
|
2576
|
-
"
|
|
2707
|
+
"label": "Circuit Half-Open"
|
|
2577
2708
|
}
|
|
2578
2709
|
],
|
|
2710
|
+
"justify": "between",
|
|
2711
|
+
"gap": "md",
|
|
2712
|
+
"type": "stack",
|
|
2579
2713
|
"direction": "horizontal",
|
|
2580
|
-
"
|
|
2714
|
+
"align": "center"
|
|
2581
2715
|
},
|
|
2582
2716
|
{
|
|
2583
2717
|
"type": "divider"
|
|
2584
2718
|
},
|
|
2585
2719
|
{
|
|
2586
2720
|
"message": "Testing recovery. Limited requests are being allowed through.",
|
|
2587
|
-
"
|
|
2588
|
-
"
|
|
2721
|
+
"type": "alert",
|
|
2722
|
+
"variant": "warning"
|
|
2589
2723
|
},
|
|
2590
2724
|
{
|
|
2591
2725
|
"type": "simple-grid",
|
|
2592
|
-
"cols": 2.0,
|
|
2593
2726
|
"children": [
|
|
2594
2727
|
{
|
|
2595
|
-
"
|
|
2728
|
+
"value": "@entity.failureCount",
|
|
2596
2729
|
"label": "Failures",
|
|
2597
|
-
"
|
|
2730
|
+
"type": "stat-display"
|
|
2598
2731
|
},
|
|
2599
2732
|
{
|
|
2600
|
-
"type": "stat-display",
|
|
2601
2733
|
"value": "@entity.successCount",
|
|
2734
|
+
"type": "stat-display",
|
|
2602
2735
|
"label": "Successes"
|
|
2603
2736
|
}
|
|
2604
|
-
]
|
|
2737
|
+
],
|
|
2738
|
+
"cols": 2.0
|
|
2605
2739
|
}
|
|
2606
2740
|
]
|
|
2607
2741
|
}
|
|
2608
|
-
]
|
|
2609
|
-
"appName": "API Gateway"
|
|
2742
|
+
]
|
|
2610
2743
|
}
|
|
2611
2744
|
]
|
|
2612
2745
|
]
|
|
@@ -2621,59 +2754,41 @@
|
|
|
2621
2754
|
"main",
|
|
2622
2755
|
{
|
|
2623
2756
|
"appName": "API Gateway",
|
|
2624
|
-
"navItems": [
|
|
2625
|
-
{
|
|
2626
|
-
"label": "Routes",
|
|
2627
|
-
"href": "/routes",
|
|
2628
|
-
"icon": "git-branch"
|
|
2629
|
-
},
|
|
2630
|
-
{
|
|
2631
|
-
"label": "Backends",
|
|
2632
|
-
"icon": "server",
|
|
2633
|
-
"href": "/backends"
|
|
2634
|
-
},
|
|
2635
|
-
{
|
|
2636
|
-
"label": "Analytics",
|
|
2637
|
-
"href": "/analytics",
|
|
2638
|
-
"icon": "bar-chart-2"
|
|
2639
|
-
}
|
|
2640
|
-
],
|
|
2641
|
-
"type": "dashboard-layout",
|
|
2642
2757
|
"children": [
|
|
2643
2758
|
{
|
|
2644
2759
|
"direction": "vertical",
|
|
2645
|
-
"gap": "lg",
|
|
2646
2760
|
"type": "stack",
|
|
2761
|
+
"gap": "lg",
|
|
2647
2762
|
"children": [
|
|
2648
2763
|
{
|
|
2649
2764
|
"type": "stack",
|
|
2650
2765
|
"direction": "horizontal",
|
|
2651
2766
|
"gap": "md",
|
|
2652
|
-
"align": "center",
|
|
2653
2767
|
"justify": "between",
|
|
2768
|
+
"align": "center",
|
|
2654
2769
|
"children": [
|
|
2655
2770
|
{
|
|
2656
|
-
"type": "stack",
|
|
2657
|
-
"direction": "horizontal",
|
|
2658
|
-
"gap": "md",
|
|
2659
2771
|
"align": "center",
|
|
2660
2772
|
"children": [
|
|
2661
2773
|
{
|
|
2662
|
-
"
|
|
2663
|
-
"
|
|
2774
|
+
"type": "icon",
|
|
2775
|
+
"name": "server"
|
|
2664
2776
|
},
|
|
2665
2777
|
{
|
|
2666
2778
|
"content": "Backend",
|
|
2667
2779
|
"variant": "h2",
|
|
2668
2780
|
"type": "typography"
|
|
2669
2781
|
}
|
|
2670
|
-
]
|
|
2782
|
+
],
|
|
2783
|
+
"type": "stack",
|
|
2784
|
+
"direction": "horizontal",
|
|
2785
|
+
"gap": "md"
|
|
2671
2786
|
},
|
|
2672
2787
|
{
|
|
2673
2788
|
"status": "online",
|
|
2674
|
-
"pulse": false,
|
|
2675
2789
|
"type": "status-dot",
|
|
2676
|
-
"label": "Circuit Closed"
|
|
2790
|
+
"label": "Circuit Closed",
|
|
2791
|
+
"pulse": false
|
|
2677
2792
|
}
|
|
2678
2793
|
]
|
|
2679
2794
|
},
|
|
@@ -2681,17 +2796,17 @@
|
|
|
2681
2796
|
"type": "divider"
|
|
2682
2797
|
},
|
|
2683
2798
|
{
|
|
2684
|
-
"variant": "success",
|
|
2685
2799
|
"type": "alert",
|
|
2800
|
+
"variant": "success",
|
|
2686
2801
|
"message": "Service is healthy. All requests are being processed."
|
|
2687
2802
|
},
|
|
2688
2803
|
{
|
|
2689
|
-
"type": "simple-grid",
|
|
2690
2804
|
"cols": 2.0,
|
|
2805
|
+
"type": "simple-grid",
|
|
2691
2806
|
"children": [
|
|
2692
2807
|
{
|
|
2693
|
-
"type": "stat-display",
|
|
2694
2808
|
"label": "Failures",
|
|
2809
|
+
"type": "stat-display",
|
|
2695
2810
|
"value": "@entity.failureCount"
|
|
2696
2811
|
},
|
|
2697
2812
|
{
|
|
@@ -2702,14 +2817,32 @@
|
|
|
2702
2817
|
]
|
|
2703
2818
|
},
|
|
2704
2819
|
{
|
|
2705
|
-
"value": "@entity.failureCount",
|
|
2706
2820
|
"type": "meter",
|
|
2821
|
+
"max": "@entity.threshold",
|
|
2707
2822
|
"min": 0.0,
|
|
2708
|
-
"
|
|
2823
|
+
"value": "@entity.failureCount"
|
|
2709
2824
|
}
|
|
2710
2825
|
]
|
|
2711
2826
|
}
|
|
2712
|
-
]
|
|
2827
|
+
],
|
|
2828
|
+
"navItems": [
|
|
2829
|
+
{
|
|
2830
|
+
"label": "Routes",
|
|
2831
|
+
"href": "/routes",
|
|
2832
|
+
"icon": "git-branch"
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"label": "Backends",
|
|
2836
|
+
"icon": "server",
|
|
2837
|
+
"href": "/backends"
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"label": "Analytics",
|
|
2841
|
+
"icon": "bar-chart-2",
|
|
2842
|
+
"href": "/analytics"
|
|
2843
|
+
}
|
|
2844
|
+
],
|
|
2845
|
+
"type": "dashboard-layout"
|
|
2713
2846
|
}
|
|
2714
2847
|
]
|
|
2715
2848
|
]
|
|
@@ -2726,19 +2859,18 @@
|
|
|
2726
2859
|
"children": [
|
|
2727
2860
|
{
|
|
2728
2861
|
"type": "stack",
|
|
2729
|
-
"gap": "lg",
|
|
2730
2862
|
"children": [
|
|
2731
2863
|
{
|
|
2864
|
+
"justify": "between",
|
|
2732
2865
|
"gap": "md",
|
|
2733
2866
|
"direction": "horizontal",
|
|
2867
|
+
"align": "center",
|
|
2734
2868
|
"children": [
|
|
2735
2869
|
{
|
|
2736
|
-
"gap": "md",
|
|
2737
|
-
"align": "center",
|
|
2738
2870
|
"children": [
|
|
2739
2871
|
{
|
|
2740
|
-
"
|
|
2741
|
-
"
|
|
2872
|
+
"type": "icon",
|
|
2873
|
+
"name": "server"
|
|
2742
2874
|
},
|
|
2743
2875
|
{
|
|
2744
2876
|
"content": "Backend",
|
|
@@ -2746,56 +2878,57 @@
|
|
|
2746
2878
|
"variant": "h2"
|
|
2747
2879
|
}
|
|
2748
2880
|
],
|
|
2749
|
-
"
|
|
2750
|
-
"direction": "horizontal"
|
|
2881
|
+
"align": "center",
|
|
2882
|
+
"direction": "horizontal",
|
|
2883
|
+
"gap": "md",
|
|
2884
|
+
"type": "stack"
|
|
2751
2885
|
},
|
|
2752
2886
|
{
|
|
2753
|
-
"
|
|
2887
|
+
"type": "status-dot",
|
|
2754
2888
|
"label": "Circuit Closed",
|
|
2755
2889
|
"status": "online",
|
|
2756
|
-
"
|
|
2890
|
+
"pulse": false
|
|
2757
2891
|
}
|
|
2758
2892
|
],
|
|
2759
|
-
"
|
|
2760
|
-
"type": "stack",
|
|
2761
|
-
"justify": "between"
|
|
2893
|
+
"type": "stack"
|
|
2762
2894
|
},
|
|
2763
2895
|
{
|
|
2764
2896
|
"type": "divider"
|
|
2765
2897
|
},
|
|
2766
2898
|
{
|
|
2767
2899
|
"message": "Service is healthy. All requests are being processed.",
|
|
2768
|
-
"
|
|
2769
|
-
"
|
|
2900
|
+
"variant": "success",
|
|
2901
|
+
"type": "alert"
|
|
2770
2902
|
},
|
|
2771
2903
|
{
|
|
2772
|
-
"cols": 2.0,
|
|
2773
2904
|
"children": [
|
|
2774
2905
|
{
|
|
2775
|
-
"type": "stat-display",
|
|
2776
2906
|
"label": "Failures",
|
|
2777
|
-
"value": "@entity.failureCount"
|
|
2907
|
+
"value": "@entity.failureCount",
|
|
2908
|
+
"type": "stat-display"
|
|
2778
2909
|
},
|
|
2779
2910
|
{
|
|
2780
|
-
"
|
|
2911
|
+
"value": "@entity.successCount",
|
|
2781
2912
|
"type": "stat-display",
|
|
2782
|
-
"
|
|
2913
|
+
"label": "Successes"
|
|
2783
2914
|
}
|
|
2784
2915
|
],
|
|
2785
|
-
"type": "simple-grid"
|
|
2916
|
+
"type": "simple-grid",
|
|
2917
|
+
"cols": 2.0
|
|
2786
2918
|
},
|
|
2787
2919
|
{
|
|
2788
|
-
"max": "@entity.threshold",
|
|
2789
|
-
"min": 0.0,
|
|
2790
2920
|
"type": "meter",
|
|
2791
|
-
"value": "@entity.failureCount"
|
|
2921
|
+
"value": "@entity.failureCount",
|
|
2922
|
+
"max": "@entity.threshold",
|
|
2923
|
+
"min": 0.0
|
|
2792
2924
|
}
|
|
2793
2925
|
],
|
|
2794
|
-
"direction": "vertical"
|
|
2926
|
+
"direction": "vertical",
|
|
2927
|
+
"gap": "lg"
|
|
2795
2928
|
}
|
|
2796
2929
|
],
|
|
2797
|
-
"appName": "API Gateway",
|
|
2798
2930
|
"type": "dashboard-layout",
|
|
2931
|
+
"appName": "API Gateway",
|
|
2799
2932
|
"navItems": [
|
|
2800
2933
|
{
|
|
2801
2934
|
"label": "Routes",
|
|
@@ -2803,9 +2936,9 @@
|
|
|
2803
2936
|
"icon": "git-branch"
|
|
2804
2937
|
},
|
|
2805
2938
|
{
|
|
2806
|
-
"icon": "server",
|
|
2807
2939
|
"label": "Backends",
|
|
2808
|
-
"href": "/backends"
|
|
2940
|
+
"href": "/backends",
|
|
2941
|
+
"icon": "server"
|
|
2809
2942
|
},
|
|
2810
2943
|
{
|
|
2811
2944
|
"label": "Analytics",
|
|
@@ -2826,102 +2959,102 @@
|
|
|
2826
2959
|
"render-ui",
|
|
2827
2960
|
"main",
|
|
2828
2961
|
{
|
|
2829
|
-
"type": "dashboard-layout",
|
|
2830
2962
|
"appName": "API Gateway",
|
|
2831
|
-
"
|
|
2832
|
-
{
|
|
2833
|
-
"label": "Routes",
|
|
2834
|
-
"icon": "git-branch",
|
|
2835
|
-
"href": "/routes"
|
|
2836
|
-
},
|
|
2837
|
-
{
|
|
2838
|
-
"href": "/backends",
|
|
2839
|
-
"icon": "server",
|
|
2840
|
-
"label": "Backends"
|
|
2841
|
-
},
|
|
2842
|
-
{
|
|
2843
|
-
"icon": "bar-chart-2",
|
|
2844
|
-
"label": "Analytics",
|
|
2845
|
-
"href": "/analytics"
|
|
2846
|
-
}
|
|
2847
|
-
],
|
|
2963
|
+
"type": "dashboard-layout",
|
|
2848
2964
|
"children": [
|
|
2849
2965
|
{
|
|
2850
|
-
"type": "stack",
|
|
2851
|
-
"direction": "vertical",
|
|
2852
2966
|
"children": [
|
|
2853
2967
|
{
|
|
2854
|
-
"type": "stack",
|
|
2855
2968
|
"children": [
|
|
2856
2969
|
{
|
|
2857
|
-
"direction": "horizontal",
|
|
2858
|
-
"align": "center",
|
|
2859
|
-
"type": "stack",
|
|
2860
|
-
"gap": "md",
|
|
2861
2970
|
"children": [
|
|
2862
2971
|
{
|
|
2863
2972
|
"type": "icon",
|
|
2864
2973
|
"name": "alert-triangle"
|
|
2865
2974
|
},
|
|
2866
2975
|
{
|
|
2867
|
-
"content": "Backend",
|
|
2868
2976
|
"type": "typography",
|
|
2977
|
+
"content": "Backend",
|
|
2869
2978
|
"variant": "h2"
|
|
2870
2979
|
}
|
|
2871
|
-
]
|
|
2980
|
+
],
|
|
2981
|
+
"align": "center",
|
|
2982
|
+
"type": "stack",
|
|
2983
|
+
"direction": "horizontal",
|
|
2984
|
+
"gap": "md"
|
|
2872
2985
|
},
|
|
2873
2986
|
{
|
|
2874
|
-
"
|
|
2875
|
-
"type": "status-dot",
|
|
2987
|
+
"pulse": true,
|
|
2876
2988
|
"status": "critical",
|
|
2877
|
-
"
|
|
2989
|
+
"type": "status-dot",
|
|
2990
|
+
"label": "Circuit Open"
|
|
2878
2991
|
}
|
|
2879
2992
|
],
|
|
2880
|
-
"
|
|
2993
|
+
"type": "stack",
|
|
2994
|
+
"justify": "between",
|
|
2881
2995
|
"direction": "horizontal",
|
|
2882
2996
|
"align": "center",
|
|
2883
|
-
"
|
|
2997
|
+
"gap": "md"
|
|
2884
2998
|
},
|
|
2885
2999
|
{
|
|
2886
3000
|
"type": "divider"
|
|
2887
3001
|
},
|
|
2888
3002
|
{
|
|
3003
|
+
"type": "alert",
|
|
2889
3004
|
"message": "Circuit is open. Requests are being rejected to prevent cascading failures.",
|
|
2890
|
-
"variant": "error"
|
|
2891
|
-
"type": "alert"
|
|
3005
|
+
"variant": "error"
|
|
2892
3006
|
},
|
|
2893
3007
|
{
|
|
3008
|
+
"cols": 2.0,
|
|
3009
|
+
"type": "simple-grid",
|
|
2894
3010
|
"children": [
|
|
2895
3011
|
{
|
|
2896
|
-
"value": "@entity.failureCount",
|
|
2897
3012
|
"label": "Failures",
|
|
3013
|
+
"value": "@entity.failureCount",
|
|
2898
3014
|
"type": "stat-display"
|
|
2899
3015
|
},
|
|
2900
3016
|
{
|
|
2901
3017
|
"value": "@entity.successCount",
|
|
2902
|
-
"
|
|
2903
|
-
"
|
|
3018
|
+
"label": "Successes",
|
|
3019
|
+
"type": "stat-display"
|
|
2904
3020
|
}
|
|
2905
|
-
]
|
|
2906
|
-
"type": "simple-grid",
|
|
2907
|
-
"cols": 2.0
|
|
3021
|
+
]
|
|
2908
3022
|
},
|
|
2909
3023
|
{
|
|
2910
3024
|
"min": 0.0,
|
|
2911
3025
|
"type": "meter",
|
|
2912
|
-
"
|
|
2913
|
-
"
|
|
3026
|
+
"max": "@entity.threshold",
|
|
3027
|
+
"value": "@entity.failureCount"
|
|
2914
3028
|
},
|
|
2915
3029
|
{
|
|
2916
3030
|
"type": "button",
|
|
3031
|
+
"action": "RESET",
|
|
2917
3032
|
"variant": "ghost",
|
|
2918
3033
|
"icon": "rotate-ccw",
|
|
2919
|
-
"label": "Reset"
|
|
2920
|
-
"action": "RESET"
|
|
3034
|
+
"label": "Reset"
|
|
2921
3035
|
}
|
|
2922
3036
|
],
|
|
3037
|
+
"type": "stack",
|
|
3038
|
+
"direction": "vertical",
|
|
2923
3039
|
"gap": "lg"
|
|
2924
3040
|
}
|
|
3041
|
+
],
|
|
3042
|
+
"navItems": [
|
|
3043
|
+
{
|
|
3044
|
+
"href": "/routes",
|
|
3045
|
+
"label": "Routes",
|
|
3046
|
+
"icon": "git-branch"
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
"icon": "server",
|
|
3050
|
+
"label": "Backends",
|
|
3051
|
+
"href": "/backends"
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
"label": "Analytics",
|
|
3055
|
+
"href": "/analytics",
|
|
3056
|
+
"icon": "bar-chart-2"
|
|
3057
|
+
}
|
|
2925
3058
|
]
|
|
2926
3059
|
}
|
|
2927
3060
|
]
|
|
@@ -2936,50 +3069,69 @@
|
|
|
2936
3069
|
"render-ui",
|
|
2937
3070
|
"main",
|
|
2938
3071
|
{
|
|
3072
|
+
"type": "dashboard-layout",
|
|
3073
|
+
"appName": "API Gateway",
|
|
3074
|
+
"navItems": [
|
|
3075
|
+
{
|
|
3076
|
+
"label": "Routes",
|
|
3077
|
+
"href": "/routes",
|
|
3078
|
+
"icon": "git-branch"
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"label": "Backends",
|
|
3082
|
+
"href": "/backends",
|
|
3083
|
+
"icon": "server"
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
"label": "Analytics",
|
|
3087
|
+
"icon": "bar-chart-2",
|
|
3088
|
+
"href": "/analytics"
|
|
3089
|
+
}
|
|
3090
|
+
],
|
|
2939
3091
|
"children": [
|
|
2940
3092
|
{
|
|
3093
|
+
"gap": "lg",
|
|
2941
3094
|
"type": "stack",
|
|
2942
|
-
"direction": "vertical",
|
|
2943
3095
|
"children": [
|
|
2944
3096
|
{
|
|
2945
|
-
"
|
|
3097
|
+
"gap": "md",
|
|
2946
3098
|
"align": "center",
|
|
3099
|
+
"direction": "horizontal",
|
|
2947
3100
|
"justify": "between",
|
|
2948
3101
|
"children": [
|
|
2949
3102
|
{
|
|
2950
3103
|
"type": "stack",
|
|
2951
3104
|
"direction": "horizontal",
|
|
2952
3105
|
"align": "center",
|
|
2953
|
-
"gap": "md",
|
|
2954
3106
|
"children": [
|
|
2955
3107
|
{
|
|
2956
3108
|
"type": "icon",
|
|
2957
3109
|
"name": "server"
|
|
2958
3110
|
},
|
|
2959
3111
|
{
|
|
3112
|
+
"content": "Backend",
|
|
2960
3113
|
"variant": "h2",
|
|
2961
|
-
"type": "typography"
|
|
2962
|
-
"content": "Backend"
|
|
3114
|
+
"type": "typography"
|
|
2963
3115
|
}
|
|
2964
|
-
]
|
|
3116
|
+
],
|
|
3117
|
+
"gap": "md"
|
|
2965
3118
|
},
|
|
2966
3119
|
{
|
|
2967
|
-
"status": "online",
|
|
2968
|
-
"type": "status-dot",
|
|
2969
3120
|
"label": "Circuit Closed",
|
|
3121
|
+
"type": "status-dot",
|
|
3122
|
+
"status": "online",
|
|
2970
3123
|
"pulse": false
|
|
2971
3124
|
}
|
|
2972
3125
|
],
|
|
2973
|
-
"gap": "md",
|
|
2974
3126
|
"type": "stack"
|
|
2975
3127
|
},
|
|
2976
3128
|
{
|
|
2977
3129
|
"type": "divider"
|
|
2978
3130
|
},
|
|
2979
3131
|
{
|
|
3132
|
+
"type": "alert",
|
|
2980
3133
|
"variant": "success",
|
|
2981
|
-
"message": "Service is healthy. All requests are being processed."
|
|
2982
|
-
"type": "alert"
|
|
3134
|
+
"message": "Service is healthy. All requests are being processed."
|
|
2983
3135
|
},
|
|
2984
3136
|
{
|
|
2985
3137
|
"cols": 2.0,
|
|
@@ -2991,8 +3143,8 @@
|
|
|
2991
3143
|
"label": "Failures"
|
|
2992
3144
|
},
|
|
2993
3145
|
{
|
|
2994
|
-
"label": "Successes",
|
|
2995
3146
|
"type": "stat-display",
|
|
3147
|
+
"label": "Successes",
|
|
2996
3148
|
"value": "@entity.successCount"
|
|
2997
3149
|
}
|
|
2998
3150
|
]
|
|
@@ -3000,30 +3152,11 @@
|
|
|
3000
3152
|
{
|
|
3001
3153
|
"type": "meter",
|
|
3002
3154
|
"min": 0.0,
|
|
3003
|
-
"
|
|
3004
|
-
"
|
|
3155
|
+
"max": "@entity.threshold",
|
|
3156
|
+
"value": "@entity.failureCount"
|
|
3005
3157
|
}
|
|
3006
3158
|
],
|
|
3007
|
-
"
|
|
3008
|
-
}
|
|
3009
|
-
],
|
|
3010
|
-
"type": "dashboard-layout",
|
|
3011
|
-
"appName": "API Gateway",
|
|
3012
|
-
"navItems": [
|
|
3013
|
-
{
|
|
3014
|
-
"href": "/routes",
|
|
3015
|
-
"icon": "git-branch",
|
|
3016
|
-
"label": "Routes"
|
|
3017
|
-
},
|
|
3018
|
-
{
|
|
3019
|
-
"href": "/backends",
|
|
3020
|
-
"icon": "server",
|
|
3021
|
-
"label": "Backends"
|
|
3022
|
-
},
|
|
3023
|
-
{
|
|
3024
|
-
"icon": "bar-chart-2",
|
|
3025
|
-
"href": "/analytics",
|
|
3026
|
-
"label": "Analytics"
|
|
3159
|
+
"direction": "vertical"
|
|
3027
3160
|
}
|
|
3028
3161
|
]
|
|
3029
3162
|
}
|
|
@@ -3197,8 +3330,8 @@
|
|
|
3197
3330
|
"Analytics",
|
|
3198
3331
|
{
|
|
3199
3332
|
"emit": {
|
|
3200
|
-
"
|
|
3201
|
-
"
|
|
3333
|
+
"success": "AnalyticsLoaded",
|
|
3334
|
+
"failure": "AnalyticsLoadFailed"
|
|
3202
3335
|
}
|
|
3203
3336
|
}
|
|
3204
3337
|
],
|
|
@@ -3206,23 +3339,6 @@
|
|
|
3206
3339
|
"render-ui",
|
|
3207
3340
|
"main",
|
|
3208
3341
|
{
|
|
3209
|
-
"navItems": [
|
|
3210
|
-
{
|
|
3211
|
-
"icon": "git-branch",
|
|
3212
|
-
"label": "Routes",
|
|
3213
|
-
"href": "/routes"
|
|
3214
|
-
},
|
|
3215
|
-
{
|
|
3216
|
-
"icon": "server",
|
|
3217
|
-
"label": "Backends",
|
|
3218
|
-
"href": "/backends"
|
|
3219
|
-
},
|
|
3220
|
-
{
|
|
3221
|
-
"href": "/analytics",
|
|
3222
|
-
"label": "Analytics",
|
|
3223
|
-
"icon": "bar-chart-2"
|
|
3224
|
-
}
|
|
3225
|
-
],
|
|
3226
3342
|
"appName": "API Gateway",
|
|
3227
3343
|
"type": "dashboard-layout",
|
|
3228
3344
|
"children": [
|
|
@@ -3234,47 +3350,47 @@
|
|
|
3234
3350
|
"gap": "lg",
|
|
3235
3351
|
"children": [
|
|
3236
3352
|
{
|
|
3353
|
+
"type": "breadcrumb",
|
|
3237
3354
|
"items": [
|
|
3238
3355
|
{
|
|
3239
|
-
"
|
|
3240
|
-
"
|
|
3356
|
+
"href": "/",
|
|
3357
|
+
"label": "Home"
|
|
3241
3358
|
},
|
|
3242
3359
|
{
|
|
3243
3360
|
"label": "Analytics"
|
|
3244
3361
|
}
|
|
3245
|
-
]
|
|
3246
|
-
"type": "breadcrumb"
|
|
3362
|
+
]
|
|
3247
3363
|
},
|
|
3248
3364
|
{
|
|
3249
|
-
"
|
|
3365
|
+
"justify": "between",
|
|
3366
|
+
"direction": "horizontal",
|
|
3367
|
+
"type": "stack",
|
|
3250
3368
|
"children": [
|
|
3251
3369
|
{
|
|
3370
|
+
"gap": "md",
|
|
3252
3371
|
"children": [
|
|
3253
3372
|
{
|
|
3254
3373
|
"name": "bar-chart-2",
|
|
3255
3374
|
"type": "icon"
|
|
3256
3375
|
},
|
|
3257
3376
|
{
|
|
3258
|
-
"content": "Analytics",
|
|
3259
3377
|
"variant": "h2",
|
|
3378
|
+
"content": "Analytics",
|
|
3260
3379
|
"type": "typography"
|
|
3261
3380
|
}
|
|
3262
3381
|
],
|
|
3263
|
-
"
|
|
3264
|
-
"
|
|
3265
|
-
"direction": "horizontal"
|
|
3382
|
+
"direction": "horizontal",
|
|
3383
|
+
"type": "stack"
|
|
3266
3384
|
},
|
|
3267
3385
|
{
|
|
3268
|
-
"variant": "secondary",
|
|
3269
3386
|
"label": "Refresh",
|
|
3270
3387
|
"action": "REFRESH",
|
|
3271
|
-
"
|
|
3272
|
-
"
|
|
3388
|
+
"type": "button",
|
|
3389
|
+
"variant": "secondary",
|
|
3390
|
+
"icon": "refresh-cw"
|
|
3273
3391
|
}
|
|
3274
3392
|
],
|
|
3275
|
-
"
|
|
3276
|
-
"direction": "horizontal",
|
|
3277
|
-
"type": "stack"
|
|
3393
|
+
"gap": "md"
|
|
3278
3394
|
},
|
|
3279
3395
|
{
|
|
3280
3396
|
"type": "divider"
|
|
@@ -3285,46 +3401,46 @@
|
|
|
3285
3401
|
"children": [
|
|
3286
3402
|
{
|
|
3287
3403
|
"cols": 3.0,
|
|
3288
|
-
"type": "simple-grid",
|
|
3289
3404
|
"children": [
|
|
3290
3405
|
{
|
|
3291
3406
|
"label": "TotalRequests",
|
|
3292
|
-
"
|
|
3293
|
-
"
|
|
3407
|
+
"value": "@entity.totalRequests",
|
|
3408
|
+
"type": "stat-display"
|
|
3294
3409
|
},
|
|
3295
3410
|
{
|
|
3296
|
-
"
|
|
3411
|
+
"type": "stat-display",
|
|
3297
3412
|
"label": "ErrorRate",
|
|
3298
|
-
"
|
|
3413
|
+
"value": "@entity.errorRate"
|
|
3299
3414
|
},
|
|
3300
3415
|
{
|
|
3301
|
-
"type": "stat-display",
|
|
3302
3416
|
"label": "AvgLatency",
|
|
3303
|
-
"value": "@entity.avgLatency"
|
|
3417
|
+
"value": "@entity.avgLatency",
|
|
3418
|
+
"type": "stat-display"
|
|
3304
3419
|
},
|
|
3305
3420
|
{
|
|
3421
|
+
"type": "card",
|
|
3306
3422
|
"children": [
|
|
3307
3423
|
{
|
|
3308
3424
|
"gap": "sm",
|
|
3309
|
-
"type": "stack",
|
|
3310
|
-
"direction": "vertical",
|
|
3311
3425
|
"children": [
|
|
3312
3426
|
{
|
|
3427
|
+
"variant": "caption",
|
|
3313
3428
|
"content": "Uptime",
|
|
3314
|
-
"type": "typography"
|
|
3315
|
-
"variant": "caption"
|
|
3429
|
+
"type": "typography"
|
|
3316
3430
|
},
|
|
3317
3431
|
{
|
|
3318
|
-
"type": "typography",
|
|
3319
3432
|
"variant": "h3",
|
|
3320
|
-
"content": "@entity.uptime"
|
|
3433
|
+
"content": "@entity.uptime",
|
|
3434
|
+
"type": "typography"
|
|
3321
3435
|
}
|
|
3322
|
-
]
|
|
3436
|
+
],
|
|
3437
|
+
"direction": "vertical",
|
|
3438
|
+
"type": "stack"
|
|
3323
3439
|
}
|
|
3324
|
-
]
|
|
3325
|
-
"type": "card"
|
|
3440
|
+
]
|
|
3326
3441
|
}
|
|
3327
|
-
]
|
|
3442
|
+
],
|
|
3443
|
+
"type": "simple-grid"
|
|
3328
3444
|
}
|
|
3329
3445
|
]
|
|
3330
3446
|
},
|
|
@@ -3332,41 +3448,41 @@
|
|
|
3332
3448
|
"type": "divider"
|
|
3333
3449
|
},
|
|
3334
3450
|
{
|
|
3451
|
+
"gap": "md",
|
|
3452
|
+
"cols": 2.0,
|
|
3453
|
+
"type": "grid",
|
|
3335
3454
|
"children": [
|
|
3336
3455
|
{
|
|
3337
|
-
"type": "card",
|
|
3338
3456
|
"children": [
|
|
3339
3457
|
{
|
|
3340
3458
|
"variant": "caption",
|
|
3341
|
-
"
|
|
3342
|
-
"
|
|
3459
|
+
"content": "Chart View",
|
|
3460
|
+
"type": "typography"
|
|
3343
3461
|
}
|
|
3344
|
-
]
|
|
3462
|
+
],
|
|
3463
|
+
"type": "card"
|
|
3345
3464
|
},
|
|
3346
3465
|
{
|
|
3466
|
+
"type": "card",
|
|
3347
3467
|
"children": [
|
|
3348
3468
|
{
|
|
3349
3469
|
"type": "typography",
|
|
3350
3470
|
"variant": "caption",
|
|
3351
3471
|
"content": "Graph View"
|
|
3352
3472
|
}
|
|
3353
|
-
]
|
|
3354
|
-
"type": "card"
|
|
3473
|
+
]
|
|
3355
3474
|
}
|
|
3356
|
-
]
|
|
3357
|
-
"gap": "md",
|
|
3358
|
-
"type": "grid",
|
|
3359
|
-
"cols": 2.0
|
|
3475
|
+
]
|
|
3360
3476
|
},
|
|
3361
3477
|
{
|
|
3362
3478
|
"data": [
|
|
3363
3479
|
{
|
|
3364
|
-
"
|
|
3365
|
-
"
|
|
3480
|
+
"value": 12.0,
|
|
3481
|
+
"date": "Jan"
|
|
3366
3482
|
},
|
|
3367
3483
|
{
|
|
3368
|
-
"
|
|
3369
|
-
"
|
|
3484
|
+
"value": 19.0,
|
|
3485
|
+
"date": "Feb"
|
|
3370
3486
|
},
|
|
3371
3487
|
{
|
|
3372
3488
|
"value": 15.0,
|
|
@@ -3377,8 +3493,8 @@
|
|
|
3377
3493
|
"value": 25.0
|
|
3378
3494
|
},
|
|
3379
3495
|
{
|
|
3380
|
-
"
|
|
3381
|
-
"
|
|
3496
|
+
"value": 22.0,
|
|
3497
|
+
"date": "May"
|
|
3382
3498
|
},
|
|
3383
3499
|
{
|
|
3384
3500
|
"date": "Jun",
|
|
@@ -3394,46 +3510,63 @@
|
|
|
3394
3510
|
"color": "primary"
|
|
3395
3511
|
},
|
|
3396
3512
|
{
|
|
3397
|
-
"
|
|
3398
|
-
"
|
|
3513
|
+
"label": "Previous",
|
|
3514
|
+
"color": "muted"
|
|
3399
3515
|
}
|
|
3400
3516
|
],
|
|
3401
3517
|
"type": "chart-legend"
|
|
3402
3518
|
},
|
|
3403
3519
|
{
|
|
3404
|
-
"
|
|
3405
|
-
"type": "graph-view",
|
|
3520
|
+
"height": 200.0,
|
|
3406
3521
|
"edges": [
|
|
3407
3522
|
{
|
|
3408
|
-
"
|
|
3409
|
-
"
|
|
3523
|
+
"source": "a",
|
|
3524
|
+
"target": "b"
|
|
3410
3525
|
},
|
|
3411
3526
|
{
|
|
3412
|
-
"
|
|
3413
|
-
"
|
|
3527
|
+
"source": "b",
|
|
3528
|
+
"target": "c"
|
|
3414
3529
|
}
|
|
3415
3530
|
],
|
|
3416
3531
|
"nodes": [
|
|
3417
3532
|
{
|
|
3418
|
-
"
|
|
3419
|
-
"
|
|
3533
|
+
"id": "a",
|
|
3534
|
+
"label": "Start"
|
|
3420
3535
|
},
|
|
3421
3536
|
{
|
|
3422
|
-
"
|
|
3423
|
-
"
|
|
3537
|
+
"id": "b",
|
|
3538
|
+
"label": "Process"
|
|
3424
3539
|
},
|
|
3425
3540
|
{
|
|
3426
3541
|
"id": "c",
|
|
3427
3542
|
"label": "End"
|
|
3428
3543
|
}
|
|
3429
3544
|
],
|
|
3430
|
-
"
|
|
3545
|
+
"type": "graph-view",
|
|
3546
|
+
"width": 400.0
|
|
3431
3547
|
}
|
|
3432
3548
|
],
|
|
3433
3549
|
"type": "stack"
|
|
3434
3550
|
}
|
|
3435
3551
|
]
|
|
3436
3552
|
}
|
|
3553
|
+
],
|
|
3554
|
+
"navItems": [
|
|
3555
|
+
{
|
|
3556
|
+
"href": "/routes",
|
|
3557
|
+
"label": "Routes",
|
|
3558
|
+
"icon": "git-branch"
|
|
3559
|
+
},
|
|
3560
|
+
{
|
|
3561
|
+
"icon": "server",
|
|
3562
|
+
"href": "/backends",
|
|
3563
|
+
"label": "Backends"
|
|
3564
|
+
},
|
|
3565
|
+
{
|
|
3566
|
+
"icon": "bar-chart-2",
|
|
3567
|
+
"label": "Analytics",
|
|
3568
|
+
"href": "/analytics"
|
|
3569
|
+
}
|
|
3437
3570
|
]
|
|
3438
3571
|
}
|
|
3439
3572
|
]
|
|
@@ -3449,8 +3582,8 @@
|
|
|
3449
3582
|
"Analytics",
|
|
3450
3583
|
{
|
|
3451
3584
|
"emit": {
|
|
3452
|
-
"
|
|
3453
|
-
"
|
|
3585
|
+
"success": "AnalyticsLoaded",
|
|
3586
|
+
"failure": "AnalyticsLoadFailed"
|
|
3454
3587
|
}
|
|
3455
3588
|
}
|
|
3456
3589
|
],
|
|
@@ -3458,6 +3591,7 @@
|
|
|
3458
3591
|
"render-ui",
|
|
3459
3592
|
"main",
|
|
3460
3593
|
{
|
|
3594
|
+
"type": "dashboard-layout",
|
|
3461
3595
|
"children": [
|
|
3462
3596
|
{
|
|
3463
3597
|
"type": "scaled-diagram",
|
|
@@ -3477,42 +3611,44 @@
|
|
|
3477
3611
|
"type": "breadcrumb"
|
|
3478
3612
|
},
|
|
3479
3613
|
{
|
|
3480
|
-
"type": "stack",
|
|
3481
|
-
"gap": "md",
|
|
3482
3614
|
"children": [
|
|
3483
3615
|
{
|
|
3616
|
+
"type": "stack",
|
|
3617
|
+
"direction": "horizontal",
|
|
3484
3618
|
"children": [
|
|
3485
3619
|
{
|
|
3486
3620
|
"name": "bar-chart-2",
|
|
3487
3621
|
"type": "icon"
|
|
3488
3622
|
},
|
|
3489
3623
|
{
|
|
3490
|
-
"content": "Analytics",
|
|
3491
3624
|
"type": "typography",
|
|
3625
|
+
"content": "Analytics",
|
|
3492
3626
|
"variant": "h2"
|
|
3493
3627
|
}
|
|
3494
3628
|
],
|
|
3495
|
-
"
|
|
3496
|
-
"gap": "md",
|
|
3497
|
-
"type": "stack"
|
|
3629
|
+
"gap": "md"
|
|
3498
3630
|
},
|
|
3499
3631
|
{
|
|
3500
3632
|
"type": "button",
|
|
3501
3633
|
"variant": "secondary",
|
|
3502
3634
|
"icon": "refresh-cw",
|
|
3503
|
-
"
|
|
3504
|
-
"
|
|
3635
|
+
"action": "REFRESH",
|
|
3636
|
+
"label": "Refresh"
|
|
3505
3637
|
}
|
|
3506
3638
|
],
|
|
3639
|
+
"justify": "between",
|
|
3640
|
+
"gap": "md",
|
|
3507
3641
|
"direction": "horizontal",
|
|
3508
|
-
"
|
|
3642
|
+
"type": "stack"
|
|
3509
3643
|
},
|
|
3510
3644
|
{
|
|
3511
3645
|
"type": "divider"
|
|
3512
3646
|
},
|
|
3513
3647
|
{
|
|
3648
|
+
"padding": "md",
|
|
3514
3649
|
"children": [
|
|
3515
3650
|
{
|
|
3651
|
+
"type": "simple-grid",
|
|
3516
3652
|
"children": [
|
|
3517
3653
|
{
|
|
3518
3654
|
"type": "stat-display",
|
|
@@ -3520,8 +3656,8 @@
|
|
|
3520
3656
|
"value": "@entity.totalRequests"
|
|
3521
3657
|
},
|
|
3522
3658
|
{
|
|
3523
|
-
"value": "@entity.errorRate",
|
|
3524
3659
|
"type": "stat-display",
|
|
3660
|
+
"value": "@entity.errorRate",
|
|
3525
3661
|
"label": "ErrorRate"
|
|
3526
3662
|
},
|
|
3527
3663
|
{
|
|
@@ -3530,52 +3666,48 @@
|
|
|
3530
3666
|
"type": "stat-display"
|
|
3531
3667
|
},
|
|
3532
3668
|
{
|
|
3533
|
-
"type": "card",
|
|
3534
3669
|
"children": [
|
|
3535
3670
|
{
|
|
3536
|
-
"gap": "sm",
|
|
3537
3671
|
"children": [
|
|
3538
3672
|
{
|
|
3539
|
-
"
|
|
3673
|
+
"content": "Uptime",
|
|
3540
3674
|
"type": "typography",
|
|
3541
|
-
"
|
|
3675
|
+
"variant": "caption"
|
|
3542
3676
|
},
|
|
3543
3677
|
{
|
|
3544
3678
|
"content": "@entity.uptime",
|
|
3545
|
-
"
|
|
3546
|
-
"
|
|
3679
|
+
"variant": "h3",
|
|
3680
|
+
"type": "typography"
|
|
3547
3681
|
}
|
|
3548
3682
|
],
|
|
3549
3683
|
"type": "stack",
|
|
3550
|
-
"direction": "vertical"
|
|
3684
|
+
"direction": "vertical",
|
|
3685
|
+
"gap": "sm"
|
|
3551
3686
|
}
|
|
3552
|
-
]
|
|
3687
|
+
],
|
|
3688
|
+
"type": "card"
|
|
3553
3689
|
}
|
|
3554
3690
|
],
|
|
3555
|
-
"type": "simple-grid",
|
|
3556
3691
|
"cols": 3.0
|
|
3557
3692
|
}
|
|
3558
3693
|
],
|
|
3559
|
-
"type": "box"
|
|
3560
|
-
"padding": "md"
|
|
3694
|
+
"type": "box"
|
|
3561
3695
|
},
|
|
3562
3696
|
{
|
|
3563
3697
|
"type": "divider"
|
|
3564
3698
|
},
|
|
3565
3699
|
{
|
|
3566
|
-
"gap": "md",
|
|
3567
|
-
"cols": 2.0,
|
|
3568
3700
|
"type": "grid",
|
|
3569
3701
|
"children": [
|
|
3570
3702
|
{
|
|
3703
|
+
"type": "card",
|
|
3571
3704
|
"children": [
|
|
3572
3705
|
{
|
|
3573
|
-
"
|
|
3706
|
+
"variant": "caption",
|
|
3574
3707
|
"content": "Chart View",
|
|
3575
|
-
"
|
|
3708
|
+
"type": "typography"
|
|
3576
3709
|
}
|
|
3577
|
-
]
|
|
3578
|
-
"type": "card"
|
|
3710
|
+
]
|
|
3579
3711
|
},
|
|
3580
3712
|
{
|
|
3581
3713
|
"type": "card",
|
|
@@ -3587,13 +3719,16 @@
|
|
|
3587
3719
|
}
|
|
3588
3720
|
]
|
|
3589
3721
|
}
|
|
3590
|
-
]
|
|
3722
|
+
],
|
|
3723
|
+
"gap": "md",
|
|
3724
|
+
"cols": 2.0
|
|
3591
3725
|
},
|
|
3592
3726
|
{
|
|
3727
|
+
"type": "line-chart",
|
|
3593
3728
|
"data": [
|
|
3594
3729
|
{
|
|
3595
|
-
"
|
|
3596
|
-
"
|
|
3730
|
+
"date": "Jan",
|
|
3731
|
+
"value": 12.0
|
|
3597
3732
|
},
|
|
3598
3733
|
{
|
|
3599
3734
|
"date": "Feb",
|
|
@@ -3612,67 +3747,65 @@
|
|
|
3612
3747
|
"value": 22.0
|
|
3613
3748
|
},
|
|
3614
3749
|
{
|
|
3615
|
-
"
|
|
3616
|
-
"
|
|
3750
|
+
"date": "Jun",
|
|
3751
|
+
"value": 30.0
|
|
3617
3752
|
}
|
|
3618
|
-
]
|
|
3619
|
-
"type": "line-chart"
|
|
3753
|
+
]
|
|
3620
3754
|
},
|
|
3621
3755
|
{
|
|
3622
|
-
"type": "chart-legend",
|
|
3623
3756
|
"items": [
|
|
3624
3757
|
{
|
|
3625
|
-
"
|
|
3626
|
-
"
|
|
3758
|
+
"color": "primary",
|
|
3759
|
+
"label": "Current"
|
|
3627
3760
|
},
|
|
3628
3761
|
{
|
|
3629
3762
|
"color": "muted",
|
|
3630
3763
|
"label": "Previous"
|
|
3631
3764
|
}
|
|
3632
|
-
]
|
|
3765
|
+
],
|
|
3766
|
+
"type": "chart-legend"
|
|
3633
3767
|
},
|
|
3634
3768
|
{
|
|
3769
|
+
"type": "graph-view",
|
|
3635
3770
|
"edges": [
|
|
3636
3771
|
{
|
|
3637
|
-
"
|
|
3638
|
-
"
|
|
3772
|
+
"target": "b",
|
|
3773
|
+
"source": "a"
|
|
3639
3774
|
},
|
|
3640
3775
|
{
|
|
3641
|
-
"
|
|
3642
|
-
"
|
|
3776
|
+
"source": "b",
|
|
3777
|
+
"target": "c"
|
|
3643
3778
|
}
|
|
3644
3779
|
],
|
|
3780
|
+
"width": 400.0,
|
|
3781
|
+
"height": 200.0,
|
|
3645
3782
|
"nodes": [
|
|
3646
3783
|
{
|
|
3647
3784
|
"id": "a",
|
|
3648
3785
|
"label": "Start"
|
|
3649
3786
|
},
|
|
3650
3787
|
{
|
|
3651
|
-
"
|
|
3652
|
-
"
|
|
3788
|
+
"label": "Process",
|
|
3789
|
+
"id": "b"
|
|
3653
3790
|
},
|
|
3654
3791
|
{
|
|
3655
|
-
"
|
|
3656
|
-
"
|
|
3792
|
+
"label": "End",
|
|
3793
|
+
"id": "c"
|
|
3657
3794
|
}
|
|
3658
|
-
]
|
|
3659
|
-
"type": "graph-view",
|
|
3660
|
-
"width": 400.0,
|
|
3661
|
-
"height": 200.0
|
|
3795
|
+
]
|
|
3662
3796
|
}
|
|
3663
3797
|
],
|
|
3798
|
+
"direction": "vertical",
|
|
3664
3799
|
"gap": "lg",
|
|
3665
|
-
"type": "stack"
|
|
3666
|
-
"direction": "vertical"
|
|
3800
|
+
"type": "stack"
|
|
3667
3801
|
}
|
|
3668
3802
|
]
|
|
3669
3803
|
}
|
|
3670
3804
|
],
|
|
3671
|
-
"appName": "API Gateway",
|
|
3672
3805
|
"navItems": [
|
|
3673
3806
|
{
|
|
3674
|
-
"href": "/routes",
|
|
3675
3807
|
"label": "Routes",
|
|
3808
|
+
"href": "/routes",
|
|
3676
3809
|
"icon": "git-branch"
|
|
3677
3810
|
},
|
|
3678
3811
|
{
|
|
@@ -3686,7 +3819,7 @@
|
|
|
3686
3819
|
"href": "/analytics"
|
|
3687
3820
|
}
|
|
3688
3821
|
],
|
|
3689
|
-
"
|
|
3822
|
+
"appName": "API Gateway"
|
|
3690
3823
|
}
|
|
3691
3824
|
]
|
|
3692
3825
|
]
|
|
@@ -3701,8 +3834,8 @@
|
|
|
3701
3834
|
"Analytics",
|
|
3702
3835
|
{
|
|
3703
3836
|
"emit": {
|
|
3704
|
-
"
|
|
3705
|
-
"
|
|
3837
|
+
"success": "AnalyticsLoaded",
|
|
3838
|
+
"failure": "AnalyticsLoadFailed"
|
|
3706
3839
|
}
|
|
3707
3840
|
}
|
|
3708
3841
|
],
|
|
@@ -3710,32 +3843,13 @@
|
|
|
3710
3843
|
"render-ui",
|
|
3711
3844
|
"main",
|
|
3712
3845
|
{
|
|
3713
|
-
"navItems": [
|
|
3714
|
-
{
|
|
3715
|
-
"href": "/routes",
|
|
3716
|
-
"icon": "git-branch",
|
|
3717
|
-
"label": "Routes"
|
|
3718
|
-
},
|
|
3719
|
-
{
|
|
3720
|
-
"label": "Backends",
|
|
3721
|
-
"icon": "server",
|
|
3722
|
-
"href": "/backends"
|
|
3723
|
-
},
|
|
3724
|
-
{
|
|
3725
|
-
"href": "/analytics",
|
|
3726
|
-
"label": "Analytics",
|
|
3727
|
-
"icon": "bar-chart-2"
|
|
3728
|
-
}
|
|
3729
|
-
],
|
|
3730
|
-
"type": "dashboard-layout",
|
|
3731
3846
|
"appName": "API Gateway",
|
|
3847
|
+
"type": "dashboard-layout",
|
|
3732
3848
|
"children": [
|
|
3733
3849
|
{
|
|
3734
3850
|
"type": "scaled-diagram",
|
|
3735
3851
|
"children": [
|
|
3736
3852
|
{
|
|
3737
|
-
"type": "stack",
|
|
3738
|
-
"direction": "vertical",
|
|
3739
3853
|
"children": [
|
|
3740
3854
|
{
|
|
3741
3855
|
"type": "breadcrumb",
|
|
@@ -3750,50 +3864,49 @@
|
|
|
3750
3864
|
]
|
|
3751
3865
|
},
|
|
3752
3866
|
{
|
|
3867
|
+
"gap": "md",
|
|
3868
|
+
"direction": "horizontal",
|
|
3869
|
+
"justify": "between",
|
|
3870
|
+
"type": "stack",
|
|
3753
3871
|
"children": [
|
|
3754
3872
|
{
|
|
3755
3873
|
"type": "stack",
|
|
3756
3874
|
"gap": "md",
|
|
3875
|
+
"direction": "horizontal",
|
|
3757
3876
|
"children": [
|
|
3758
3877
|
{
|
|
3759
|
-
"
|
|
3760
|
-
"
|
|
3878
|
+
"type": "icon",
|
|
3879
|
+
"name": "bar-chart-2"
|
|
3761
3880
|
},
|
|
3762
3881
|
{
|
|
3763
|
-
"variant": "h2",
|
|
3764
3882
|
"content": "Analytics",
|
|
3883
|
+
"variant": "h2",
|
|
3765
3884
|
"type": "typography"
|
|
3766
3885
|
}
|
|
3767
|
-
]
|
|
3768
|
-
"direction": "horizontal"
|
|
3886
|
+
]
|
|
3769
3887
|
},
|
|
3770
3888
|
{
|
|
3771
|
-
"label": "Refresh",
|
|
3772
|
-
"action": "REFRESH",
|
|
3773
3889
|
"type": "button",
|
|
3890
|
+
"variant": "secondary",
|
|
3774
3891
|
"icon": "refresh-cw",
|
|
3775
|
-
"
|
|
3892
|
+
"action": "REFRESH",
|
|
3893
|
+
"label": "Refresh"
|
|
3776
3894
|
}
|
|
3777
|
-
]
|
|
3778
|
-
"justify": "between",
|
|
3779
|
-
"type": "stack",
|
|
3780
|
-
"gap": "md",
|
|
3781
|
-
"direction": "horizontal"
|
|
3895
|
+
]
|
|
3782
3896
|
},
|
|
3783
3897
|
{
|
|
3784
3898
|
"type": "divider"
|
|
3785
3899
|
},
|
|
3786
3900
|
{
|
|
3787
|
-
"type": "box",
|
|
3788
3901
|
"padding": "md",
|
|
3789
3902
|
"children": [
|
|
3790
3903
|
{
|
|
3791
|
-
"cols": 3.0,
|
|
3792
3904
|
"type": "simple-grid",
|
|
3905
|
+
"cols": 3.0,
|
|
3793
3906
|
"children": [
|
|
3794
3907
|
{
|
|
3795
|
-
"label": "TotalRequests",
|
|
3796
3908
|
"type": "stat-display",
|
|
3909
|
+
"label": "TotalRequests",
|
|
3797
3910
|
"value": "@entity.totalRequests"
|
|
3798
3911
|
},
|
|
3799
3912
|
{
|
|
@@ -3812,31 +3925,32 @@
|
|
|
3812
3925
|
{
|
|
3813
3926
|
"gap": "sm",
|
|
3814
3927
|
"type": "stack",
|
|
3815
|
-
"direction": "vertical",
|
|
3816
3928
|
"children": [
|
|
3817
3929
|
{
|
|
3818
|
-
"variant": "caption",
|
|
3819
3930
|
"type": "typography",
|
|
3931
|
+
"variant": "caption",
|
|
3820
3932
|
"content": "Uptime"
|
|
3821
3933
|
},
|
|
3822
3934
|
{
|
|
3823
3935
|
"content": "@entity.uptime",
|
|
3824
|
-
"
|
|
3825
|
-
"
|
|
3936
|
+
"variant": "h3",
|
|
3937
|
+
"type": "typography"
|
|
3826
3938
|
}
|
|
3827
|
-
]
|
|
3939
|
+
],
|
|
3940
|
+
"direction": "vertical"
|
|
3828
3941
|
}
|
|
3829
3942
|
]
|
|
3830
3943
|
}
|
|
3831
3944
|
]
|
|
3832
3945
|
}
|
|
3833
|
-
]
|
|
3946
|
+
],
|
|
3947
|
+
"type": "box"
|
|
3834
3948
|
},
|
|
3835
3949
|
{
|
|
3836
3950
|
"type": "divider"
|
|
3837
3951
|
},
|
|
3838
3952
|
{
|
|
3839
|
-
"
|
|
3953
|
+
"type": "grid",
|
|
3840
3954
|
"children": [
|
|
3841
3955
|
{
|
|
3842
3956
|
"type": "card",
|
|
@@ -3849,18 +3963,18 @@
|
|
|
3849
3963
|
]
|
|
3850
3964
|
},
|
|
3851
3965
|
{
|
|
3966
|
+
"type": "card",
|
|
3852
3967
|
"children": [
|
|
3853
3968
|
{
|
|
3969
|
+
"variant": "caption",
|
|
3854
3970
|
"type": "typography",
|
|
3855
|
-
"content": "Graph View"
|
|
3856
|
-
"variant": "caption"
|
|
3971
|
+
"content": "Graph View"
|
|
3857
3972
|
}
|
|
3858
|
-
]
|
|
3859
|
-
"type": "card"
|
|
3973
|
+
]
|
|
3860
3974
|
}
|
|
3861
3975
|
],
|
|
3862
3976
|
"cols": 2.0,
|
|
3863
|
-
"
|
|
3977
|
+
"gap": "md"
|
|
3864
3978
|
},
|
|
3865
3979
|
{
|
|
3866
3980
|
"data": [
|
|
@@ -3869,8 +3983,8 @@
|
|
|
3869
3983
|
"value": 12.0
|
|
3870
3984
|
},
|
|
3871
3985
|
{
|
|
3872
|
-
"
|
|
3873
|
-
"
|
|
3986
|
+
"value": 19.0,
|
|
3987
|
+
"date": "Feb"
|
|
3874
3988
|
},
|
|
3875
3989
|
{
|
|
3876
3990
|
"date": "Mar",
|
|
@@ -3895,17 +4009,16 @@
|
|
|
3895
4009
|
"type": "chart-legend",
|
|
3896
4010
|
"items": [
|
|
3897
4011
|
{
|
|
3898
|
-
"
|
|
3899
|
-
"
|
|
4012
|
+
"color": "primary",
|
|
4013
|
+
"label": "Current"
|
|
3900
4014
|
},
|
|
3901
4015
|
{
|
|
3902
|
-
"
|
|
3903
|
-
"
|
|
4016
|
+
"color": "muted",
|
|
4017
|
+
"label": "Previous"
|
|
3904
4018
|
}
|
|
3905
4019
|
]
|
|
3906
4020
|
},
|
|
3907
4021
|
{
|
|
3908
|
-
"type": "graph-view",
|
|
3909
4022
|
"edges": [
|
|
3910
4023
|
{
|
|
3911
4024
|
"target": "b",
|
|
@@ -3918,26 +4031,46 @@
|
|
|
3918
4031
|
],
|
|
3919
4032
|
"nodes": [
|
|
3920
4033
|
{
|
|
3921
|
-
"
|
|
3922
|
-
"
|
|
4034
|
+
"id": "a",
|
|
4035
|
+
"label": "Start"
|
|
3923
4036
|
},
|
|
3924
4037
|
{
|
|
3925
|
-
"
|
|
3926
|
-
"
|
|
4038
|
+
"label": "Process",
|
|
4039
|
+
"id": "b"
|
|
3927
4040
|
},
|
|
3928
4041
|
{
|
|
3929
|
-
"
|
|
3930
|
-
"
|
|
4042
|
+
"id": "c",
|
|
4043
|
+
"label": "End"
|
|
3931
4044
|
}
|
|
3932
4045
|
],
|
|
3933
4046
|
"width": 400.0,
|
|
3934
|
-
"height": 200.0
|
|
4047
|
+
"height": 200.0,
|
|
4048
|
+
"type": "graph-view"
|
|
3935
4049
|
}
|
|
3936
4050
|
],
|
|
3937
|
-
"
|
|
4051
|
+
"type": "stack",
|
|
4052
|
+
"gap": "lg",
|
|
4053
|
+
"direction": "vertical"
|
|
3938
4054
|
}
|
|
3939
4055
|
]
|
|
3940
4056
|
}
|
|
4057
|
+
],
|
|
4058
|
+
"navItems": [
|
|
4059
|
+
{
|
|
4060
|
+
"label": "Routes",
|
|
4061
|
+
"href": "/routes",
|
|
4062
|
+
"icon": "git-branch"
|
|
4063
|
+
},
|
|
4064
|
+
{
|
|
4065
|
+
"icon": "server",
|
|
4066
|
+
"label": "Backends",
|
|
4067
|
+
"href": "/backends"
|
|
4068
|
+
},
|
|
4069
|
+
{
|
|
4070
|
+
"label": "Analytics",
|
|
4071
|
+
"icon": "bar-chart-2",
|
|
4072
|
+
"href": "/analytics"
|
|
4073
|
+
}
|
|
3941
4074
|
]
|
|
3942
4075
|
}
|
|
3943
4076
|
]
|
|
@@ -3953,8 +4086,8 @@
|
|
|
3953
4086
|
"Analytics",
|
|
3954
4087
|
{
|
|
3955
4088
|
"emit": {
|
|
3956
|
-
"
|
|
3957
|
-
"
|
|
4089
|
+
"failure": "AnalyticsLoadFailed",
|
|
4090
|
+
"success": "AnalyticsLoaded"
|
|
3958
4091
|
}
|
|
3959
4092
|
}
|
|
3960
4093
|
],
|
|
@@ -3962,16 +4095,14 @@
|
|
|
3962
4095
|
"render-ui",
|
|
3963
4096
|
"main",
|
|
3964
4097
|
{
|
|
3965
|
-
"type": "dashboard-layout",
|
|
3966
4098
|
"children": [
|
|
3967
4099
|
{
|
|
4100
|
+
"type": "scaled-diagram",
|
|
3968
4101
|
"children": [
|
|
3969
4102
|
{
|
|
3970
4103
|
"type": "stack",
|
|
3971
|
-
"gap": "lg",
|
|
3972
4104
|
"children": [
|
|
3973
4105
|
{
|
|
3974
|
-
"type": "breadcrumb",
|
|
3975
4106
|
"items": [
|
|
3976
4107
|
{
|
|
3977
4108
|
"label": "Home",
|
|
@@ -3980,15 +4111,14 @@
|
|
|
3980
4111
|
{
|
|
3981
4112
|
"label": "Analytics"
|
|
3982
4113
|
}
|
|
3983
|
-
]
|
|
4114
|
+
],
|
|
4115
|
+
"type": "breadcrumb"
|
|
3984
4116
|
},
|
|
3985
4117
|
{
|
|
3986
|
-
"direction": "horizontal",
|
|
3987
4118
|
"type": "stack",
|
|
3988
|
-
"gap": "md",
|
|
3989
|
-
"justify": "between",
|
|
3990
4119
|
"children": [
|
|
3991
4120
|
{
|
|
4121
|
+
"type": "stack",
|
|
3992
4122
|
"direction": "horizontal",
|
|
3993
4123
|
"children": [
|
|
3994
4124
|
{
|
|
@@ -3997,54 +4127,59 @@
|
|
|
3997
4127
|
},
|
|
3998
4128
|
{
|
|
3999
4129
|
"type": "typography",
|
|
4000
|
-
"
|
|
4001
|
-
"
|
|
4130
|
+
"variant": "h2",
|
|
4131
|
+
"content": "Analytics"
|
|
4002
4132
|
}
|
|
4003
4133
|
],
|
|
4004
|
-
"gap": "md"
|
|
4005
|
-
"type": "stack"
|
|
4134
|
+
"gap": "md"
|
|
4006
4135
|
},
|
|
4007
4136
|
{
|
|
4008
|
-
"icon": "refresh-cw",
|
|
4009
4137
|
"type": "button",
|
|
4010
|
-
"label": "Refresh",
|
|
4011
4138
|
"variant": "secondary",
|
|
4012
|
-
"action": "REFRESH"
|
|
4139
|
+
"action": "REFRESH",
|
|
4140
|
+
"icon": "refresh-cw",
|
|
4141
|
+
"label": "Refresh"
|
|
4013
4142
|
}
|
|
4014
|
-
]
|
|
4143
|
+
],
|
|
4144
|
+
"gap": "md",
|
|
4145
|
+
"direction": "horizontal",
|
|
4146
|
+
"justify": "between"
|
|
4015
4147
|
},
|
|
4016
4148
|
{
|
|
4017
4149
|
"type": "divider"
|
|
4018
4150
|
},
|
|
4019
4151
|
{
|
|
4152
|
+
"type": "box",
|
|
4153
|
+
"padding": "md",
|
|
4020
4154
|
"children": [
|
|
4021
4155
|
{
|
|
4022
4156
|
"cols": 3.0,
|
|
4023
4157
|
"children": [
|
|
4024
4158
|
{
|
|
4159
|
+
"type": "stat-display",
|
|
4025
4160
|
"label": "TotalRequests",
|
|
4026
|
-
"value": "@entity.totalRequests"
|
|
4027
|
-
"type": "stat-display"
|
|
4161
|
+
"value": "@entity.totalRequests"
|
|
4028
4162
|
},
|
|
4029
4163
|
{
|
|
4030
|
-
"
|
|
4164
|
+
"type": "stat-display",
|
|
4031
4165
|
"value": "@entity.errorRate",
|
|
4032
|
-
"
|
|
4166
|
+
"label": "ErrorRate"
|
|
4033
4167
|
},
|
|
4034
4168
|
{
|
|
4035
|
-
"
|
|
4169
|
+
"type": "stat-display",
|
|
4036
4170
|
"value": "@entity.avgLatency",
|
|
4037
|
-
"
|
|
4171
|
+
"label": "AvgLatency"
|
|
4038
4172
|
},
|
|
4039
4173
|
{
|
|
4040
|
-
"type": "card",
|
|
4041
4174
|
"children": [
|
|
4042
4175
|
{
|
|
4176
|
+
"type": "stack",
|
|
4177
|
+
"direction": "vertical",
|
|
4043
4178
|
"children": [
|
|
4044
4179
|
{
|
|
4180
|
+
"variant": "caption",
|
|
4045
4181
|
"content": "Uptime",
|
|
4046
|
-
"type": "typography"
|
|
4047
|
-
"variant": "caption"
|
|
4182
|
+
"type": "typography"
|
|
4048
4183
|
},
|
|
4049
4184
|
{
|
|
4050
4185
|
"type": "typography",
|
|
@@ -4052,30 +4187,30 @@
|
|
|
4052
4187
|
"content": "@entity.uptime"
|
|
4053
4188
|
}
|
|
4054
4189
|
],
|
|
4055
|
-
"gap": "sm"
|
|
4056
|
-
"direction": "vertical",
|
|
4057
|
-
"type": "stack"
|
|
4190
|
+
"gap": "sm"
|
|
4058
4191
|
}
|
|
4059
|
-
]
|
|
4192
|
+
],
|
|
4193
|
+
"type": "card"
|
|
4060
4194
|
}
|
|
4061
4195
|
],
|
|
4062
4196
|
"type": "simple-grid"
|
|
4063
4197
|
}
|
|
4064
|
-
]
|
|
4065
|
-
"padding": "md",
|
|
4066
|
-
"type": "box"
|
|
4198
|
+
]
|
|
4067
4199
|
},
|
|
4068
4200
|
{
|
|
4069
4201
|
"type": "divider"
|
|
4070
4202
|
},
|
|
4071
4203
|
{
|
|
4204
|
+
"cols": 2.0,
|
|
4205
|
+
"gap": "md",
|
|
4206
|
+
"type": "grid",
|
|
4072
4207
|
"children": [
|
|
4073
4208
|
{
|
|
4074
4209
|
"children": [
|
|
4075
4210
|
{
|
|
4211
|
+
"content": "Chart View",
|
|
4076
4212
|
"type": "typography",
|
|
4077
|
-
"variant": "caption"
|
|
4078
|
-
"content": "Chart View"
|
|
4213
|
+
"variant": "caption"
|
|
4079
4214
|
}
|
|
4080
4215
|
],
|
|
4081
4216
|
"type": "card"
|
|
@@ -4084,16 +4219,13 @@
|
|
|
4084
4219
|
"type": "card",
|
|
4085
4220
|
"children": [
|
|
4086
4221
|
{
|
|
4087
|
-
"variant": "caption",
|
|
4088
4222
|
"content": "Graph View",
|
|
4089
|
-
"type": "typography"
|
|
4223
|
+
"type": "typography",
|
|
4224
|
+
"variant": "caption"
|
|
4090
4225
|
}
|
|
4091
4226
|
]
|
|
4092
4227
|
}
|
|
4093
|
-
]
|
|
4094
|
-
"gap": "md",
|
|
4095
|
-
"type": "grid",
|
|
4096
|
-
"cols": 2.0
|
|
4228
|
+
]
|
|
4097
4229
|
},
|
|
4098
4230
|
{
|
|
4099
4231
|
"data": [
|
|
@@ -4102,24 +4234,24 @@
|
|
|
4102
4234
|
"value": 12.0
|
|
4103
4235
|
},
|
|
4104
4236
|
{
|
|
4105
|
-
"
|
|
4106
|
-
"
|
|
4237
|
+
"date": "Feb",
|
|
4238
|
+
"value": 19.0
|
|
4107
4239
|
},
|
|
4108
4240
|
{
|
|
4109
4241
|
"value": 15.0,
|
|
4110
4242
|
"date": "Mar"
|
|
4111
4243
|
},
|
|
4112
4244
|
{
|
|
4113
|
-
"
|
|
4114
|
-
"
|
|
4245
|
+
"date": "Apr",
|
|
4246
|
+
"value": 25.0
|
|
4115
4247
|
},
|
|
4116
4248
|
{
|
|
4117
|
-
"
|
|
4118
|
-
"
|
|
4249
|
+
"date": "May",
|
|
4250
|
+
"value": 22.0
|
|
4119
4251
|
},
|
|
4120
4252
|
{
|
|
4121
|
-
"
|
|
4122
|
-
"
|
|
4253
|
+
"date": "Jun",
|
|
4254
|
+
"value": 30.0
|
|
4123
4255
|
}
|
|
4124
4256
|
],
|
|
4125
4257
|
"type": "line-chart"
|
|
@@ -4128,8 +4260,8 @@
|
|
|
4128
4260
|
"type": "chart-legend",
|
|
4129
4261
|
"items": [
|
|
4130
4262
|
{
|
|
4131
|
-
"
|
|
4132
|
-
"
|
|
4263
|
+
"color": "primary",
|
|
4264
|
+
"label": "Current"
|
|
4133
4265
|
},
|
|
4134
4266
|
{
|
|
4135
4267
|
"color": "muted",
|
|
@@ -4138,59 +4270,60 @@
|
|
|
4138
4270
|
]
|
|
4139
4271
|
},
|
|
4140
4272
|
{
|
|
4141
|
-
"
|
|
4142
|
-
|
|
4143
|
-
"id": "a",
|
|
4144
|
-
"label": "Start"
|
|
4145
|
-
},
|
|
4273
|
+
"type": "graph-view",
|
|
4274
|
+
"edges": [
|
|
4146
4275
|
{
|
|
4147
|
-
"
|
|
4148
|
-
"
|
|
4276
|
+
"target": "b",
|
|
4277
|
+
"source": "a"
|
|
4149
4278
|
},
|
|
4150
4279
|
{
|
|
4151
|
-
"
|
|
4152
|
-
"
|
|
4280
|
+
"target": "c",
|
|
4281
|
+
"source": "b"
|
|
4153
4282
|
}
|
|
4154
4283
|
],
|
|
4155
4284
|
"height": 200.0,
|
|
4156
4285
|
"width": 400.0,
|
|
4157
|
-
"
|
|
4158
|
-
"edges": [
|
|
4286
|
+
"nodes": [
|
|
4159
4287
|
{
|
|
4160
|
-
"
|
|
4161
|
-
"
|
|
4288
|
+
"id": "a",
|
|
4289
|
+
"label": "Start"
|
|
4162
4290
|
},
|
|
4163
4291
|
{
|
|
4164
|
-
"
|
|
4165
|
-
"
|
|
4292
|
+
"id": "b",
|
|
4293
|
+
"label": "Process"
|
|
4294
|
+
},
|
|
4295
|
+
{
|
|
4296
|
+
"label": "End",
|
|
4297
|
+
"id": "c"
|
|
4166
4298
|
}
|
|
4167
4299
|
]
|
|
4168
4300
|
}
|
|
4169
4301
|
],
|
|
4170
|
-
"direction": "vertical"
|
|
4302
|
+
"direction": "vertical",
|
|
4303
|
+
"gap": "lg"
|
|
4171
4304
|
}
|
|
4172
|
-
]
|
|
4173
|
-
"type": "scaled-diagram"
|
|
4305
|
+
]
|
|
4174
4306
|
}
|
|
4175
4307
|
],
|
|
4176
4308
|
"appName": "API Gateway",
|
|
4177
4309
|
"navItems": [
|
|
4178
4310
|
{
|
|
4179
|
-
"
|
|
4311
|
+
"label": "Routes",
|
|
4180
4312
|
"icon": "git-branch",
|
|
4181
|
-
"
|
|
4313
|
+
"href": "/routes"
|
|
4182
4314
|
},
|
|
4183
4315
|
{
|
|
4184
|
-
"label": "Backends",
|
|
4185
4316
|
"href": "/backends",
|
|
4186
|
-
"icon": "server"
|
|
4317
|
+
"icon": "server",
|
|
4318
|
+
"label": "Backends"
|
|
4187
4319
|
},
|
|
4188
4320
|
{
|
|
4189
|
-
"href": "/analytics",
|
|
4190
4321
|
"label": "Analytics",
|
|
4191
|
-
"icon": "bar-chart-2"
|
|
4322
|
+
"icon": "bar-chart-2",
|
|
4323
|
+
"href": "/analytics"
|
|
4192
4324
|
}
|
|
4193
|
-
]
|
|
4325
|
+
],
|
|
4326
|
+
"type": "dashboard-layout"
|
|
4194
4327
|
}
|
|
4195
4328
|
]
|
|
4196
4329
|
]
|
|
@@ -4218,13 +4351,16 @@
|
|
|
4218
4351
|
{
|
|
4219
4352
|
"children": [
|
|
4220
4353
|
{
|
|
4354
|
+
"type": "stack",
|
|
4355
|
+
"direction": "vertical",
|
|
4356
|
+
"gap": "lg",
|
|
4221
4357
|
"children": [
|
|
4222
4358
|
{
|
|
4223
4359
|
"type": "breadcrumb",
|
|
4224
4360
|
"items": [
|
|
4225
4361
|
{
|
|
4226
|
-
"
|
|
4227
|
-
"
|
|
4362
|
+
"label": "Home",
|
|
4363
|
+
"href": "/"
|
|
4228
4364
|
},
|
|
4229
4365
|
{
|
|
4230
4366
|
"label": "Analytics"
|
|
@@ -4232,35 +4368,35 @@
|
|
|
4232
4368
|
]
|
|
4233
4369
|
},
|
|
4234
4370
|
{
|
|
4235
|
-
"
|
|
4371
|
+
"type": "stack",
|
|
4372
|
+
"gap": "md",
|
|
4236
4373
|
"direction": "horizontal",
|
|
4374
|
+
"justify": "between",
|
|
4237
4375
|
"children": [
|
|
4238
4376
|
{
|
|
4239
|
-
"direction": "horizontal",
|
|
4240
|
-
"gap": "md",
|
|
4241
4377
|
"children": [
|
|
4242
4378
|
{
|
|
4243
4379
|
"name": "bar-chart-2",
|
|
4244
4380
|
"type": "icon"
|
|
4245
4381
|
},
|
|
4246
4382
|
{
|
|
4247
|
-
"content": "Analytics",
|
|
4248
4383
|
"type": "typography",
|
|
4384
|
+
"content": "Analytics",
|
|
4249
4385
|
"variant": "h2"
|
|
4250
4386
|
}
|
|
4251
4387
|
],
|
|
4388
|
+
"direction": "horizontal",
|
|
4389
|
+
"gap": "md",
|
|
4252
4390
|
"type": "stack"
|
|
4253
4391
|
},
|
|
4254
4392
|
{
|
|
4255
|
-
"action": "REFRESH",
|
|
4256
|
-
"label": "Refresh",
|
|
4257
4393
|
"variant": "secondary",
|
|
4394
|
+
"label": "Refresh",
|
|
4395
|
+
"action": "REFRESH",
|
|
4258
4396
|
"type": "button",
|
|
4259
4397
|
"icon": "refresh-cw"
|
|
4260
4398
|
}
|
|
4261
|
-
]
|
|
4262
|
-
"gap": "md",
|
|
4263
|
-
"type": "stack"
|
|
4399
|
+
]
|
|
4264
4400
|
},
|
|
4265
4401
|
{
|
|
4266
4402
|
"type": "divider"
|
|
@@ -4268,16 +4404,18 @@
|
|
|
4268
4404
|
{
|
|
4269
4405
|
"children": [
|
|
4270
4406
|
{
|
|
4407
|
+
"type": "simple-grid",
|
|
4408
|
+
"cols": 3.0,
|
|
4271
4409
|
"children": [
|
|
4272
4410
|
{
|
|
4273
|
-
"label": "TotalRequests",
|
|
4274
4411
|
"value": "@entity.totalRequests",
|
|
4412
|
+
"label": "TotalRequests",
|
|
4275
4413
|
"type": "stat-display"
|
|
4276
4414
|
},
|
|
4277
4415
|
{
|
|
4278
|
-
"
|
|
4416
|
+
"value": "@entity.errorRate",
|
|
4279
4417
|
"label": "ErrorRate",
|
|
4280
|
-
"
|
|
4418
|
+
"type": "stat-display"
|
|
4281
4419
|
},
|
|
4282
4420
|
{
|
|
4283
4421
|
"value": "@entity.avgLatency",
|
|
@@ -4291,14 +4429,14 @@
|
|
|
4291
4429
|
"gap": "sm",
|
|
4292
4430
|
"children": [
|
|
4293
4431
|
{
|
|
4294
|
-
"type": "typography",
|
|
4295
4432
|
"content": "Uptime",
|
|
4296
|
-
"variant": "caption"
|
|
4433
|
+
"variant": "caption",
|
|
4434
|
+
"type": "typography"
|
|
4297
4435
|
},
|
|
4298
4436
|
{
|
|
4299
|
-
"
|
|
4437
|
+
"type": "typography",
|
|
4300
4438
|
"content": "@entity.uptime",
|
|
4301
|
-
"
|
|
4439
|
+
"variant": "h3"
|
|
4302
4440
|
}
|
|
4303
4441
|
],
|
|
4304
4442
|
"type": "stack",
|
|
@@ -4306,98 +4444,85 @@
|
|
|
4306
4444
|
}
|
|
4307
4445
|
]
|
|
4308
4446
|
}
|
|
4309
|
-
]
|
|
4310
|
-
"type": "simple-grid",
|
|
4311
|
-
"cols": 3.0
|
|
4447
|
+
]
|
|
4312
4448
|
}
|
|
4313
4449
|
],
|
|
4314
|
-
"
|
|
4315
|
-
"
|
|
4450
|
+
"type": "box",
|
|
4451
|
+
"padding": "md"
|
|
4316
4452
|
},
|
|
4317
4453
|
{
|
|
4318
4454
|
"type": "divider"
|
|
4319
4455
|
},
|
|
4320
4456
|
{
|
|
4321
|
-
"
|
|
4457
|
+
"type": "grid",
|
|
4322
4458
|
"cols": 2.0,
|
|
4459
|
+
"gap": "md",
|
|
4323
4460
|
"children": [
|
|
4324
4461
|
{
|
|
4325
|
-
"type": "card",
|
|
4326
4462
|
"children": [
|
|
4327
4463
|
{
|
|
4328
4464
|
"type": "typography",
|
|
4329
|
-
"
|
|
4330
|
-
"
|
|
4465
|
+
"variant": "caption",
|
|
4466
|
+
"content": "Chart View"
|
|
4331
4467
|
}
|
|
4332
|
-
]
|
|
4468
|
+
],
|
|
4469
|
+
"type": "card"
|
|
4333
4470
|
},
|
|
4334
4471
|
{
|
|
4335
4472
|
"type": "card",
|
|
4336
4473
|
"children": [
|
|
4337
4474
|
{
|
|
4338
|
-
"content": "Graph View",
|
|
4339
4475
|
"type": "typography",
|
|
4476
|
+
"content": "Graph View",
|
|
4340
4477
|
"variant": "caption"
|
|
4341
4478
|
}
|
|
4342
4479
|
]
|
|
4343
4480
|
}
|
|
4344
|
-
]
|
|
4345
|
-
"type": "grid"
|
|
4481
|
+
]
|
|
4346
4482
|
},
|
|
4347
4483
|
{
|
|
4348
4484
|
"type": "line-chart",
|
|
4349
4485
|
"data": [
|
|
4350
4486
|
{
|
|
4351
|
-
"
|
|
4352
|
-
"
|
|
4487
|
+
"date": "Jan",
|
|
4488
|
+
"value": 12.0
|
|
4353
4489
|
},
|
|
4354
4490
|
{
|
|
4355
4491
|
"date": "Feb",
|
|
4356
4492
|
"value": 19.0
|
|
4357
4493
|
},
|
|
4358
4494
|
{
|
|
4359
|
-
"
|
|
4360
|
-
"
|
|
4495
|
+
"date": "Mar",
|
|
4496
|
+
"value": 15.0
|
|
4361
4497
|
},
|
|
4362
4498
|
{
|
|
4363
|
-
"
|
|
4364
|
-
"
|
|
4499
|
+
"value": 25.0,
|
|
4500
|
+
"date": "Apr"
|
|
4365
4501
|
},
|
|
4366
4502
|
{
|
|
4367
|
-
"
|
|
4368
|
-
"
|
|
4503
|
+
"date": "May",
|
|
4504
|
+
"value": 22.0
|
|
4369
4505
|
},
|
|
4370
4506
|
{
|
|
4371
|
-
"
|
|
4372
|
-
"
|
|
4507
|
+
"date": "Jun",
|
|
4508
|
+
"value": 30.0
|
|
4373
4509
|
}
|
|
4374
4510
|
]
|
|
4375
4511
|
},
|
|
4376
4512
|
{
|
|
4377
|
-
"type": "chart-legend",
|
|
4378
4513
|
"items": [
|
|
4379
4514
|
{
|
|
4380
4515
|
"color": "primary",
|
|
4381
4516
|
"label": "Current"
|
|
4382
4517
|
},
|
|
4383
4518
|
{
|
|
4384
|
-
"
|
|
4385
|
-
"
|
|
4519
|
+
"label": "Previous",
|
|
4520
|
+
"color": "muted"
|
|
4386
4521
|
}
|
|
4387
|
-
]
|
|
4522
|
+
],
|
|
4523
|
+
"type": "chart-legend"
|
|
4388
4524
|
},
|
|
4389
4525
|
{
|
|
4390
|
-
"edges": [
|
|
4391
|
-
{
|
|
4392
|
-
"source": "a",
|
|
4393
|
-
"target": "b"
|
|
4394
|
-
},
|
|
4395
|
-
{
|
|
4396
|
-
"source": "b",
|
|
4397
|
-
"target": "c"
|
|
4398
|
-
}
|
|
4399
|
-
],
|
|
4400
|
-
"type": "graph-view",
|
|
4401
4526
|
"height": 200.0,
|
|
4402
4527
|
"nodes": [
|
|
4403
4528
|
{
|
|
@@ -4409,40 +4534,48 @@
|
|
|
4409
4534
|
"label": "Process"
|
|
4410
4535
|
},
|
|
4411
4536
|
{
|
|
4412
|
-
"
|
|
4413
|
-
"
|
|
4537
|
+
"label": "End",
|
|
4538
|
+
"id": "c"
|
|
4414
4539
|
}
|
|
4415
4540
|
],
|
|
4416
|
-
"width": 400.0
|
|
4541
|
+
"width": 400.0,
|
|
4542
|
+
"type": "graph-view",
|
|
4543
|
+
"edges": [
|
|
4544
|
+
{
|
|
4545
|
+
"target": "b",
|
|
4546
|
+
"source": "a"
|
|
4547
|
+
},
|
|
4548
|
+
{
|
|
4549
|
+
"target": "c",
|
|
4550
|
+
"source": "b"
|
|
4551
|
+
}
|
|
4552
|
+
]
|
|
4417
4553
|
}
|
|
4418
|
-
]
|
|
4419
|
-
"direction": "vertical",
|
|
4420
|
-
"gap": "lg",
|
|
4421
|
-
"type": "stack"
|
|
4554
|
+
]
|
|
4422
4555
|
}
|
|
4423
4556
|
],
|
|
4424
4557
|
"type": "scaled-diagram"
|
|
4425
4558
|
}
|
|
4426
4559
|
],
|
|
4427
|
-
"appName": "API Gateway",
|
|
4428
4560
|
"navItems": [
|
|
4429
4561
|
{
|
|
4430
|
-
"href": "/routes",
|
|
4431
4562
|
"label": "Routes",
|
|
4563
|
+
"href": "/routes",
|
|
4432
4564
|
"icon": "git-branch"
|
|
4433
4565
|
},
|
|
4434
4566
|
{
|
|
4435
|
-
"label": "Backends",
|
|
4436
4567
|
"href": "/backends",
|
|
4568
|
+
"label": "Backends",
|
|
4437
4569
|
"icon": "server"
|
|
4438
4570
|
},
|
|
4439
4571
|
{
|
|
4440
|
-
"label": "Analytics",
|
|
4441
4572
|
"icon": "bar-chart-2",
|
|
4573
|
+
"label": "Analytics",
|
|
4442
4574
|
"href": "/analytics"
|
|
4443
4575
|
}
|
|
4444
4576
|
],
|
|
4445
|
-
"type": "dashboard-layout"
|
|
4577
|
+
"type": "dashboard-layout",
|
|
4578
|
+
"appName": "API Gateway"
|
|
4446
4579
|
}
|
|
4447
4580
|
]
|
|
4448
4581
|
]
|