@almadar/std 6.5.2 → 7.2.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/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "count",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "window",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 0
|
|
46
|
+
"default": 0.0
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "limiterStatus",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"traits": [
|
|
56
56
|
{
|
|
57
57
|
"name": "RateBucketRateLimiter",
|
|
58
|
-
"linkedEntity": "RateBucket",
|
|
59
58
|
"category": "interaction",
|
|
59
|
+
"linkedEntity": "RateBucket",
|
|
60
60
|
"stateMachine": {
|
|
61
61
|
"states": [
|
|
62
62
|
{
|
|
@@ -96,21 +96,17 @@
|
|
|
96
96
|
"main",
|
|
97
97
|
{
|
|
98
98
|
"type": "stack",
|
|
99
|
-
"direction": "vertical",
|
|
100
|
-
"gap": "lg",
|
|
101
99
|
"children": [
|
|
102
100
|
{
|
|
103
101
|
"type": "stack",
|
|
104
|
-
"direction": "horizontal",
|
|
105
|
-
"gap": "md",
|
|
106
102
|
"align": "center",
|
|
103
|
+
"direction": "horizontal",
|
|
107
104
|
"justify": "space-between",
|
|
108
105
|
"children": [
|
|
109
106
|
{
|
|
110
|
-
"type": "stack",
|
|
111
107
|
"direction": "horizontal",
|
|
112
|
-
"gap": "md",
|
|
113
108
|
"align": "center",
|
|
109
|
+
"gap": "md",
|
|
114
110
|
"children": [
|
|
115
111
|
{
|
|
116
112
|
"type": "icon",
|
|
@@ -118,26 +114,27 @@
|
|
|
118
114
|
"size": "lg"
|
|
119
115
|
},
|
|
120
116
|
{
|
|
121
|
-
"
|
|
117
|
+
"variant": "h2",
|
|
122
118
|
"content": "RateBucket Rate Limiter",
|
|
123
|
-
"
|
|
119
|
+
"type": "typography"
|
|
124
120
|
}
|
|
125
|
-
]
|
|
121
|
+
],
|
|
122
|
+
"type": "stack"
|
|
126
123
|
},
|
|
127
124
|
{
|
|
128
125
|
"type": "status-dot",
|
|
129
126
|
"status": "success",
|
|
130
|
-
"
|
|
131
|
-
"
|
|
127
|
+
"label": "Open",
|
|
128
|
+
"pulse": false
|
|
132
129
|
}
|
|
133
|
-
]
|
|
130
|
+
],
|
|
131
|
+
"gap": "md"
|
|
134
132
|
},
|
|
135
133
|
{
|
|
136
134
|
"type": "divider"
|
|
137
135
|
},
|
|
138
136
|
{
|
|
139
137
|
"type": "simple-grid",
|
|
140
|
-
"columns": 2,
|
|
141
138
|
"children": [
|
|
142
139
|
{
|
|
143
140
|
"type": "stat-display",
|
|
@@ -152,8 +149,6 @@
|
|
|
152
149
|
]
|
|
153
150
|
},
|
|
154
151
|
{
|
|
155
|
-
"type": "stat-display",
|
|
156
|
-
"label": "Window",
|
|
157
152
|
"value": [
|
|
158
153
|
"object/get",
|
|
159
154
|
[
|
|
@@ -161,11 +156,15 @@
|
|
|
161
156
|
"@entity"
|
|
162
157
|
],
|
|
163
158
|
"window"
|
|
164
|
-
]
|
|
159
|
+
],
|
|
160
|
+
"label": "Window",
|
|
161
|
+
"type": "stat-display"
|
|
165
162
|
}
|
|
166
|
-
]
|
|
163
|
+
],
|
|
164
|
+
"columns": 2.0
|
|
167
165
|
},
|
|
168
166
|
{
|
|
167
|
+
"max": 100.0,
|
|
169
168
|
"type": "meter",
|
|
170
169
|
"value": [
|
|
171
170
|
"object/get",
|
|
@@ -175,11 +174,12 @@
|
|
|
175
174
|
],
|
|
176
175
|
"count"
|
|
177
176
|
],
|
|
178
|
-
"min": 0
|
|
179
|
-
"max": 100
|
|
177
|
+
"min": 0.0
|
|
180
178
|
},
|
|
181
179
|
{
|
|
182
180
|
"type": "progress-bar",
|
|
181
|
+
"max": 100.0,
|
|
182
|
+
"showPercentage": true,
|
|
183
183
|
"value": [
|
|
184
184
|
"object/get",
|
|
185
185
|
[
|
|
@@ -187,33 +187,33 @@
|
|
|
187
187
|
"@entity"
|
|
188
188
|
],
|
|
189
189
|
"count"
|
|
190
|
-
]
|
|
191
|
-
"max": 100,
|
|
192
|
-
"showPercentage": true
|
|
190
|
+
]
|
|
193
191
|
},
|
|
194
192
|
{
|
|
195
193
|
"type": "stack",
|
|
196
|
-
"direction": "horizontal",
|
|
197
|
-
"gap": "sm",
|
|
198
|
-
"justify": "center",
|
|
199
194
|
"children": [
|
|
200
195
|
{
|
|
201
196
|
"type": "button",
|
|
202
197
|
"label": "Request",
|
|
203
|
-
"
|
|
198
|
+
"icon": "send",
|
|
204
199
|
"variant": "primary",
|
|
205
|
-
"
|
|
200
|
+
"event": "REQUEST"
|
|
206
201
|
},
|
|
207
202
|
{
|
|
208
|
-
"
|
|
209
|
-
"label": "Reset",
|
|
210
|
-
"event": "RESET",
|
|
203
|
+
"icon": "rotate-ccw",
|
|
211
204
|
"variant": "ghost",
|
|
212
|
-
"
|
|
205
|
+
"label": "Reset",
|
|
206
|
+
"type": "button",
|
|
207
|
+
"event": "RESET"
|
|
213
208
|
}
|
|
214
|
-
]
|
|
209
|
+
],
|
|
210
|
+
"direction": "horizontal",
|
|
211
|
+
"gap": "sm",
|
|
212
|
+
"justify": "center"
|
|
215
213
|
}
|
|
216
|
-
]
|
|
214
|
+
],
|
|
215
|
+
"direction": "vertical",
|
|
216
|
+
"gap": "lg"
|
|
217
217
|
}
|
|
218
218
|
]
|
|
219
219
|
]
|
|
@@ -227,34 +227,31 @@
|
|
|
227
227
|
"render-ui",
|
|
228
228
|
"main",
|
|
229
229
|
{
|
|
230
|
-
"type": "stack",
|
|
231
230
|
"direction": "vertical",
|
|
232
231
|
"gap": "lg",
|
|
233
232
|
"children": [
|
|
234
233
|
{
|
|
235
234
|
"type": "stack",
|
|
236
235
|
"direction": "horizontal",
|
|
237
|
-
"gap": "md",
|
|
238
|
-
"align": "center",
|
|
239
236
|
"justify": "space-between",
|
|
240
237
|
"children": [
|
|
241
238
|
{
|
|
242
|
-
"type": "stack",
|
|
243
239
|
"direction": "horizontal",
|
|
244
|
-
"
|
|
240
|
+
"type": "stack",
|
|
245
241
|
"align": "center",
|
|
246
242
|
"children": [
|
|
247
243
|
{
|
|
244
|
+
"size": "lg",
|
|
248
245
|
"type": "icon",
|
|
249
|
-
"name": "shield"
|
|
250
|
-
"size": "lg"
|
|
246
|
+
"name": "shield"
|
|
251
247
|
},
|
|
252
248
|
{
|
|
253
|
-
"type": "typography",
|
|
254
249
|
"content": "RateBucket Rate Limiter",
|
|
250
|
+
"type": "typography",
|
|
255
251
|
"variant": "h2"
|
|
256
252
|
}
|
|
257
|
-
]
|
|
253
|
+
],
|
|
254
|
+
"gap": "md"
|
|
258
255
|
},
|
|
259
256
|
{
|
|
260
257
|
"type": "status-dot",
|
|
@@ -262,18 +259,16 @@
|
|
|
262
259
|
"pulse": false,
|
|
263
260
|
"label": "Open"
|
|
264
261
|
}
|
|
265
|
-
]
|
|
262
|
+
],
|
|
263
|
+
"align": "center",
|
|
264
|
+
"gap": "md"
|
|
266
265
|
},
|
|
267
266
|
{
|
|
268
267
|
"type": "divider"
|
|
269
268
|
},
|
|
270
269
|
{
|
|
271
|
-
"type": "simple-grid",
|
|
272
|
-
"columns": 2,
|
|
273
270
|
"children": [
|
|
274
271
|
{
|
|
275
|
-
"type": "stat-display",
|
|
276
|
-
"label": "Requests",
|
|
277
272
|
"value": [
|
|
278
273
|
"object/get",
|
|
279
274
|
[
|
|
@@ -281,11 +276,11 @@
|
|
|
281
276
|
"@entity"
|
|
282
277
|
],
|
|
283
278
|
"count"
|
|
284
|
-
]
|
|
279
|
+
],
|
|
280
|
+
"label": "Requests",
|
|
281
|
+
"type": "stat-display"
|
|
285
282
|
},
|
|
286
283
|
{
|
|
287
|
-
"type": "stat-display",
|
|
288
|
-
"label": "Window",
|
|
289
284
|
"value": [
|
|
290
285
|
"object/get",
|
|
291
286
|
[
|
|
@@ -293,12 +288,15 @@
|
|
|
293
288
|
"@entity"
|
|
294
289
|
],
|
|
295
290
|
"window"
|
|
296
|
-
]
|
|
291
|
+
],
|
|
292
|
+
"label": "Window",
|
|
293
|
+
"type": "stat-display"
|
|
297
294
|
}
|
|
298
|
-
]
|
|
295
|
+
],
|
|
296
|
+
"columns": 2.0,
|
|
297
|
+
"type": "simple-grid"
|
|
299
298
|
},
|
|
300
299
|
{
|
|
301
|
-
"type": "meter",
|
|
302
300
|
"value": [
|
|
303
301
|
"object/get",
|
|
304
302
|
[
|
|
@@ -307,11 +305,13 @@
|
|
|
307
305
|
],
|
|
308
306
|
"count"
|
|
309
307
|
],
|
|
310
|
-
"min": 0,
|
|
311
|
-
"max": 100
|
|
308
|
+
"min": 0.0,
|
|
309
|
+
"max": 100.0,
|
|
310
|
+
"type": "meter"
|
|
312
311
|
},
|
|
313
312
|
{
|
|
314
313
|
"type": "progress-bar",
|
|
314
|
+
"max": 100.0,
|
|
315
315
|
"value": [
|
|
316
316
|
"object/get",
|
|
317
317
|
[
|
|
@@ -320,32 +320,32 @@
|
|
|
320
320
|
],
|
|
321
321
|
"count"
|
|
322
322
|
],
|
|
323
|
-
"max": 100,
|
|
324
323
|
"showPercentage": true
|
|
325
324
|
},
|
|
326
325
|
{
|
|
327
|
-
"type": "stack",
|
|
328
|
-
"direction": "horizontal",
|
|
329
|
-
"gap": "sm",
|
|
330
326
|
"justify": "center",
|
|
327
|
+
"type": "stack",
|
|
331
328
|
"children": [
|
|
332
329
|
{
|
|
333
|
-
"type": "button",
|
|
334
|
-
"label": "Request",
|
|
335
330
|
"event": "REQUEST",
|
|
336
|
-
"
|
|
337
|
-
"
|
|
331
|
+
"icon": "send",
|
|
332
|
+
"label": "Request",
|
|
333
|
+
"type": "button",
|
|
334
|
+
"variant": "primary"
|
|
338
335
|
},
|
|
339
336
|
{
|
|
340
|
-
"type": "button",
|
|
341
|
-
"label": "Reset",
|
|
342
|
-
"event": "RESET",
|
|
343
337
|
"variant": "ghost",
|
|
344
|
-
"
|
|
338
|
+
"event": "RESET",
|
|
339
|
+
"label": "Reset",
|
|
340
|
+
"icon": "rotate-ccw",
|
|
341
|
+
"type": "button"
|
|
345
342
|
}
|
|
346
|
-
]
|
|
343
|
+
],
|
|
344
|
+
"gap": "sm",
|
|
345
|
+
"direction": "horizontal"
|
|
347
346
|
}
|
|
348
|
-
]
|
|
347
|
+
],
|
|
348
|
+
"type": "stack"
|
|
349
349
|
}
|
|
350
350
|
]
|
|
351
351
|
]
|
|
@@ -364,58 +364,58 @@
|
|
|
364
364
|
"render-ui",
|
|
365
365
|
"main",
|
|
366
366
|
{
|
|
367
|
-
"type": "stack",
|
|
368
|
-
"direction": "vertical",
|
|
369
367
|
"gap": "lg",
|
|
368
|
+
"direction": "vertical",
|
|
369
|
+
"type": "stack",
|
|
370
370
|
"children": [
|
|
371
371
|
{
|
|
372
|
-
"type": "stack",
|
|
373
|
-
"direction": "horizontal",
|
|
374
|
-
"gap": "md",
|
|
375
|
-
"align": "center",
|
|
376
372
|
"justify": "space-between",
|
|
377
373
|
"children": [
|
|
378
374
|
{
|
|
379
|
-
"type": "stack",
|
|
380
375
|
"direction": "horizontal",
|
|
381
376
|
"gap": "md",
|
|
382
377
|
"align": "center",
|
|
378
|
+
"type": "stack",
|
|
383
379
|
"children": [
|
|
384
380
|
{
|
|
385
|
-
"type": "icon",
|
|
386
381
|
"name": "shield",
|
|
387
|
-
"size": "lg"
|
|
382
|
+
"size": "lg",
|
|
383
|
+
"type": "icon"
|
|
388
384
|
},
|
|
389
385
|
{
|
|
390
|
-
"type": "typography",
|
|
391
386
|
"content": "RateBucket Rate Limiter",
|
|
392
|
-
"variant": "h2"
|
|
387
|
+
"variant": "h2",
|
|
388
|
+
"type": "typography"
|
|
393
389
|
}
|
|
394
390
|
]
|
|
395
391
|
},
|
|
396
392
|
{
|
|
397
|
-
"type": "status-dot",
|
|
398
393
|
"status": "error",
|
|
399
394
|
"pulse": true,
|
|
395
|
+
"type": "status-dot",
|
|
400
396
|
"label": "Throttled"
|
|
401
397
|
}
|
|
402
|
-
]
|
|
398
|
+
],
|
|
399
|
+
"type": "stack",
|
|
400
|
+
"gap": "md",
|
|
401
|
+
"direction": "horizontal",
|
|
402
|
+
"align": "center"
|
|
403
403
|
},
|
|
404
404
|
{
|
|
405
405
|
"type": "divider"
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
|
+
"message": "Rate limit exceeded. Requests are being throttled.",
|
|
408
409
|
"type": "alert",
|
|
409
|
-
"variant": "danger"
|
|
410
|
-
"message": "Rate limit exceeded. Requests are being throttled."
|
|
410
|
+
"variant": "danger"
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
413
|
"type": "simple-grid",
|
|
414
|
-
"columns": 2,
|
|
414
|
+
"columns": 2.0,
|
|
415
415
|
"children": [
|
|
416
416
|
{
|
|
417
|
-
"type": "stat-display",
|
|
418
417
|
"label": "Requests",
|
|
418
|
+
"type": "stat-display",
|
|
419
419
|
"value": [
|
|
420
420
|
"object/get",
|
|
421
421
|
[
|
|
@@ -426,8 +426,6 @@
|
|
|
426
426
|
]
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"type": "stat-display",
|
|
430
|
-
"label": "Window",
|
|
431
429
|
"value": [
|
|
432
430
|
"object/get",
|
|
433
431
|
[
|
|
@@ -435,12 +433,15 @@
|
|
|
435
433
|
"@entity"
|
|
436
434
|
],
|
|
437
435
|
"window"
|
|
438
|
-
]
|
|
436
|
+
],
|
|
437
|
+
"label": "Window",
|
|
438
|
+
"type": "stat-display"
|
|
439
439
|
}
|
|
440
440
|
]
|
|
441
441
|
},
|
|
442
442
|
{
|
|
443
|
-
"
|
|
443
|
+
"min": 0.0,
|
|
444
|
+
"max": 100.0,
|
|
444
445
|
"value": [
|
|
445
446
|
"object/get",
|
|
446
447
|
[
|
|
@@ -449,23 +450,22 @@
|
|
|
449
450
|
],
|
|
450
451
|
"count"
|
|
451
452
|
],
|
|
452
|
-
"
|
|
453
|
-
"max": 100
|
|
453
|
+
"type": "meter"
|
|
454
454
|
},
|
|
455
455
|
{
|
|
456
|
-
"type": "stack",
|
|
457
|
-
"direction": "horizontal",
|
|
458
|
-
"gap": "sm",
|
|
459
456
|
"justify": "center",
|
|
457
|
+
"gap": "sm",
|
|
460
458
|
"children": [
|
|
461
459
|
{
|
|
462
460
|
"type": "button",
|
|
463
461
|
"label": "Reset",
|
|
464
|
-
"event": "RESET",
|
|
465
462
|
"variant": "primary",
|
|
463
|
+
"event": "RESET",
|
|
466
464
|
"icon": "rotate-ccw"
|
|
467
465
|
}
|
|
468
|
-
]
|
|
466
|
+
],
|
|
467
|
+
"type": "stack",
|
|
468
|
+
"direction": "horizontal"
|
|
469
469
|
}
|
|
470
470
|
]
|
|
471
471
|
}
|
|
@@ -473,57 +473,56 @@
|
|
|
473
473
|
]
|
|
474
474
|
},
|
|
475
475
|
{
|
|
476
|
-
"from": "
|
|
476
|
+
"from": "open",
|
|
477
477
|
"to": "open",
|
|
478
478
|
"event": "RESET",
|
|
479
479
|
"effects": [
|
|
480
480
|
[
|
|
481
481
|
"set",
|
|
482
|
-
"@entity.
|
|
483
|
-
|
|
482
|
+
"@entity.count",
|
|
483
|
+
0.0
|
|
484
484
|
],
|
|
485
485
|
[
|
|
486
486
|
"set",
|
|
487
|
-
"@entity.
|
|
488
|
-
|
|
487
|
+
"@entity.limiterStatus",
|
|
488
|
+
"open"
|
|
489
489
|
],
|
|
490
490
|
[
|
|
491
491
|
"render-ui",
|
|
492
492
|
"main",
|
|
493
493
|
{
|
|
494
494
|
"type": "stack",
|
|
495
|
-
"direction": "vertical",
|
|
496
495
|
"gap": "lg",
|
|
497
496
|
"children": [
|
|
498
497
|
{
|
|
499
|
-
"type": "stack",
|
|
500
498
|
"direction": "horizontal",
|
|
501
|
-
"
|
|
499
|
+
"type": "stack",
|
|
502
500
|
"align": "center",
|
|
503
501
|
"justify": "space-between",
|
|
502
|
+
"gap": "md",
|
|
504
503
|
"children": [
|
|
505
504
|
{
|
|
506
505
|
"type": "stack",
|
|
507
|
-
"direction": "horizontal",
|
|
508
|
-
"gap": "md",
|
|
509
|
-
"align": "center",
|
|
510
506
|
"children": [
|
|
511
507
|
{
|
|
512
|
-
"type": "icon",
|
|
513
508
|
"name": "shield",
|
|
509
|
+
"type": "icon",
|
|
514
510
|
"size": "lg"
|
|
515
511
|
},
|
|
516
512
|
{
|
|
517
|
-
"type": "typography",
|
|
518
513
|
"content": "RateBucket Rate Limiter",
|
|
519
|
-
"variant": "h2"
|
|
514
|
+
"variant": "h2",
|
|
515
|
+
"type": "typography"
|
|
520
516
|
}
|
|
521
|
-
]
|
|
517
|
+
],
|
|
518
|
+
"direction": "horizontal",
|
|
519
|
+
"align": "center",
|
|
520
|
+
"gap": "md"
|
|
522
521
|
},
|
|
523
522
|
{
|
|
524
|
-
"type": "status-dot",
|
|
525
523
|
"status": "success",
|
|
526
524
|
"pulse": false,
|
|
525
|
+
"type": "status-dot",
|
|
527
526
|
"label": "Open"
|
|
528
527
|
}
|
|
529
528
|
]
|
|
@@ -533,11 +532,8 @@
|
|
|
533
532
|
},
|
|
534
533
|
{
|
|
535
534
|
"type": "simple-grid",
|
|
536
|
-
"columns": 2,
|
|
537
535
|
"children": [
|
|
538
536
|
{
|
|
539
|
-
"type": "stat-display",
|
|
540
|
-
"label": "Requests",
|
|
541
537
|
"value": [
|
|
542
538
|
"object/get",
|
|
543
539
|
[
|
|
@@ -545,10 +541,11 @@
|
|
|
545
541
|
"@entity"
|
|
546
542
|
],
|
|
547
543
|
"count"
|
|
548
|
-
]
|
|
544
|
+
],
|
|
545
|
+
"type": "stat-display",
|
|
546
|
+
"label": "Requests"
|
|
549
547
|
},
|
|
550
548
|
{
|
|
551
|
-
"type": "stat-display",
|
|
552
549
|
"label": "Window",
|
|
553
550
|
"value": [
|
|
554
551
|
"object/get",
|
|
@@ -557,11 +554,15 @@
|
|
|
557
554
|
"@entity"
|
|
558
555
|
],
|
|
559
556
|
"window"
|
|
560
|
-
]
|
|
557
|
+
],
|
|
558
|
+
"type": "stat-display"
|
|
561
559
|
}
|
|
562
|
-
]
|
|
560
|
+
],
|
|
561
|
+
"columns": 2.0
|
|
563
562
|
},
|
|
564
563
|
{
|
|
564
|
+
"min": 0.0,
|
|
565
|
+
"max": 100.0,
|
|
565
566
|
"type": "meter",
|
|
566
567
|
"value": [
|
|
567
568
|
"object/get",
|
|
@@ -570,12 +571,10 @@
|
|
|
570
571
|
"@entity"
|
|
571
572
|
],
|
|
572
573
|
"count"
|
|
573
|
-
]
|
|
574
|
-
"min": 0,
|
|
575
|
-
"max": 100
|
|
574
|
+
]
|
|
576
575
|
},
|
|
577
576
|
{
|
|
578
|
-
"
|
|
577
|
+
"showPercentage": true,
|
|
579
578
|
"value": [
|
|
580
579
|
"object/get",
|
|
581
580
|
[
|
|
@@ -584,93 +583,94 @@
|
|
|
584
583
|
],
|
|
585
584
|
"count"
|
|
586
585
|
],
|
|
587
|
-
"max": 100,
|
|
588
|
-
"
|
|
586
|
+
"max": 100.0,
|
|
587
|
+
"type": "progress-bar"
|
|
589
588
|
},
|
|
590
589
|
{
|
|
590
|
+
"gap": "sm",
|
|
591
591
|
"type": "stack",
|
|
592
592
|
"direction": "horizontal",
|
|
593
|
-
"gap": "sm",
|
|
594
593
|
"justify": "center",
|
|
595
594
|
"children": [
|
|
596
595
|
{
|
|
597
|
-
"type": "button",
|
|
598
596
|
"label": "Request",
|
|
599
|
-
"
|
|
597
|
+
"type": "button",
|
|
598
|
+
"icon": "send",
|
|
600
599
|
"variant": "primary",
|
|
601
|
-
"
|
|
600
|
+
"event": "REQUEST"
|
|
602
601
|
},
|
|
603
602
|
{
|
|
604
|
-
"type": "button",
|
|
605
|
-
"label": "Reset",
|
|
606
603
|
"event": "RESET",
|
|
604
|
+
"type": "button",
|
|
607
605
|
"variant": "ghost",
|
|
608
|
-
"icon": "rotate-ccw"
|
|
606
|
+
"icon": "rotate-ccw",
|
|
607
|
+
"label": "Reset"
|
|
609
608
|
}
|
|
610
609
|
]
|
|
611
610
|
}
|
|
612
|
-
]
|
|
611
|
+
],
|
|
612
|
+
"direction": "vertical"
|
|
613
613
|
}
|
|
614
614
|
]
|
|
615
615
|
]
|
|
616
616
|
},
|
|
617
617
|
{
|
|
618
618
|
"from": "throttled",
|
|
619
|
-
"to": "
|
|
620
|
-
"event": "
|
|
619
|
+
"to": "open",
|
|
620
|
+
"event": "RESET",
|
|
621
621
|
"effects": [
|
|
622
|
+
[
|
|
623
|
+
"set",
|
|
624
|
+
"@entity.limiterStatus",
|
|
625
|
+
"open"
|
|
626
|
+
],
|
|
627
|
+
[
|
|
628
|
+
"set",
|
|
629
|
+
"@entity.count",
|
|
630
|
+
0.0
|
|
631
|
+
],
|
|
622
632
|
[
|
|
623
633
|
"render-ui",
|
|
624
634
|
"main",
|
|
625
635
|
{
|
|
626
|
-
"type": "stack",
|
|
627
|
-
"direction": "vertical",
|
|
628
|
-
"gap": "lg",
|
|
629
636
|
"children": [
|
|
630
637
|
{
|
|
631
|
-
"type": "stack",
|
|
632
638
|
"direction": "horizontal",
|
|
639
|
+
"type": "stack",
|
|
633
640
|
"gap": "md",
|
|
634
|
-
"align": "center",
|
|
635
|
-
"justify": "space-between",
|
|
636
641
|
"children": [
|
|
637
642
|
{
|
|
638
|
-
"type": "stack",
|
|
639
|
-
"direction": "horizontal",
|
|
640
|
-
"gap": "md",
|
|
641
|
-
"align": "center",
|
|
642
643
|
"children": [
|
|
643
644
|
{
|
|
644
|
-
"type": "icon",
|
|
645
645
|
"name": "shield",
|
|
646
|
+
"type": "icon",
|
|
646
647
|
"size": "lg"
|
|
647
648
|
},
|
|
648
649
|
{
|
|
649
|
-
"type": "typography",
|
|
650
650
|
"content": "RateBucket Rate Limiter",
|
|
651
|
-
"variant": "h2"
|
|
651
|
+
"variant": "h2",
|
|
652
|
+
"type": "typography"
|
|
652
653
|
}
|
|
653
|
-
]
|
|
654
|
+
],
|
|
655
|
+
"type": "stack",
|
|
656
|
+
"gap": "md",
|
|
657
|
+
"align": "center",
|
|
658
|
+
"direction": "horizontal"
|
|
654
659
|
},
|
|
655
660
|
{
|
|
661
|
+
"pulse": false,
|
|
656
662
|
"type": "status-dot",
|
|
657
|
-
"status": "
|
|
658
|
-
"
|
|
659
|
-
"label": "Throttled"
|
|
663
|
+
"status": "success",
|
|
664
|
+
"label": "Open"
|
|
660
665
|
}
|
|
661
|
-
]
|
|
666
|
+
],
|
|
667
|
+
"justify": "space-between",
|
|
668
|
+
"align": "center"
|
|
662
669
|
},
|
|
663
670
|
{
|
|
664
671
|
"type": "divider"
|
|
665
672
|
},
|
|
666
673
|
{
|
|
667
|
-
"type": "alert",
|
|
668
|
-
"variant": "danger",
|
|
669
|
-
"message": "Rate limit exceeded. Requests are being throttled."
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"type": "simple-grid",
|
|
673
|
-
"columns": 2,
|
|
674
674
|
"children": [
|
|
675
675
|
{
|
|
676
676
|
"type": "stat-display",
|
|
@@ -696,10 +696,26 @@
|
|
|
696
696
|
"window"
|
|
697
697
|
]
|
|
698
698
|
}
|
|
699
|
-
]
|
|
699
|
+
],
|
|
700
|
+
"type": "simple-grid",
|
|
701
|
+
"columns": 2.0
|
|
700
702
|
},
|
|
701
703
|
{
|
|
704
|
+
"max": 100.0,
|
|
705
|
+
"value": [
|
|
706
|
+
"object/get",
|
|
707
|
+
[
|
|
708
|
+
"array/first",
|
|
709
|
+
"@entity"
|
|
710
|
+
],
|
|
711
|
+
"count"
|
|
712
|
+
],
|
|
702
713
|
"type": "meter",
|
|
714
|
+
"min": 0.0
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"max": 100.0,
|
|
718
|
+
"type": "progress-bar",
|
|
703
719
|
"value": [
|
|
704
720
|
"object/get",
|
|
705
721
|
[
|
|
@@ -708,95 +724,96 @@
|
|
|
708
724
|
],
|
|
709
725
|
"count"
|
|
710
726
|
],
|
|
711
|
-
"
|
|
712
|
-
"max": 100
|
|
727
|
+
"showPercentage": true
|
|
713
728
|
},
|
|
714
729
|
{
|
|
715
|
-
"type": "stack",
|
|
716
|
-
"direction": "horizontal",
|
|
717
|
-
"gap": "sm",
|
|
718
|
-
"justify": "center",
|
|
719
730
|
"children": [
|
|
720
731
|
{
|
|
732
|
+
"variant": "primary",
|
|
733
|
+
"icon": "send",
|
|
721
734
|
"type": "button",
|
|
722
|
-
"
|
|
735
|
+
"event": "REQUEST",
|
|
736
|
+
"label": "Request"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
723
739
|
"event": "RESET",
|
|
724
|
-
"
|
|
740
|
+
"type": "button",
|
|
741
|
+
"label": "Reset",
|
|
742
|
+
"variant": "ghost",
|
|
725
743
|
"icon": "rotate-ccw"
|
|
726
744
|
}
|
|
727
|
-
]
|
|
745
|
+
],
|
|
746
|
+
"justify": "center",
|
|
747
|
+
"direction": "horizontal",
|
|
748
|
+
"type": "stack",
|
|
749
|
+
"gap": "sm"
|
|
728
750
|
}
|
|
729
|
-
]
|
|
751
|
+
],
|
|
752
|
+
"gap": "lg",
|
|
753
|
+
"type": "stack",
|
|
754
|
+
"direction": "vertical"
|
|
730
755
|
}
|
|
731
756
|
]
|
|
732
757
|
]
|
|
733
758
|
},
|
|
734
759
|
{
|
|
735
|
-
"from": "
|
|
736
|
-
"to": "
|
|
737
|
-
"event": "
|
|
760
|
+
"from": "throttled",
|
|
761
|
+
"to": "throttled",
|
|
762
|
+
"event": "INIT",
|
|
738
763
|
"effects": [
|
|
739
|
-
[
|
|
740
|
-
"set",
|
|
741
|
-
"@entity.count",
|
|
742
|
-
0
|
|
743
|
-
],
|
|
744
|
-
[
|
|
745
|
-
"set",
|
|
746
|
-
"@entity.limiterStatus",
|
|
747
|
-
"open"
|
|
748
|
-
],
|
|
749
764
|
[
|
|
750
765
|
"render-ui",
|
|
751
766
|
"main",
|
|
752
767
|
{
|
|
753
768
|
"type": "stack",
|
|
754
|
-
"direction": "vertical",
|
|
755
769
|
"gap": "lg",
|
|
756
770
|
"children": [
|
|
757
771
|
{
|
|
758
|
-
"type": "stack",
|
|
759
|
-
"direction": "horizontal",
|
|
760
|
-
"gap": "md",
|
|
761
|
-
"align": "center",
|
|
762
|
-
"justify": "space-between",
|
|
763
772
|
"children": [
|
|
764
773
|
{
|
|
765
774
|
"type": "stack",
|
|
766
|
-
"direction": "horizontal",
|
|
767
775
|
"gap": "md",
|
|
768
|
-
"align": "center",
|
|
769
776
|
"children": [
|
|
770
777
|
{
|
|
778
|
+
"size": "lg",
|
|
771
779
|
"type": "icon",
|
|
772
|
-
"name": "shield"
|
|
773
|
-
"size": "lg"
|
|
780
|
+
"name": "shield"
|
|
774
781
|
},
|
|
775
782
|
{
|
|
776
|
-
"type": "typography",
|
|
777
783
|
"content": "RateBucket Rate Limiter",
|
|
778
|
-
"variant": "h2"
|
|
784
|
+
"variant": "h2",
|
|
785
|
+
"type": "typography"
|
|
779
786
|
}
|
|
780
|
-
]
|
|
787
|
+
],
|
|
788
|
+
"align": "center",
|
|
789
|
+
"direction": "horizontal"
|
|
781
790
|
},
|
|
782
791
|
{
|
|
792
|
+
"pulse": true,
|
|
793
|
+
"status": "error",
|
|
783
794
|
"type": "status-dot",
|
|
784
|
-
"
|
|
785
|
-
"pulse": false,
|
|
786
|
-
"label": "Open"
|
|
795
|
+
"label": "Throttled"
|
|
787
796
|
}
|
|
788
|
-
]
|
|
797
|
+
],
|
|
798
|
+
"align": "center",
|
|
799
|
+
"gap": "md",
|
|
800
|
+
"type": "stack",
|
|
801
|
+
"justify": "space-between",
|
|
802
|
+
"direction": "horizontal"
|
|
789
803
|
},
|
|
790
804
|
{
|
|
791
805
|
"type": "divider"
|
|
792
806
|
},
|
|
793
807
|
{
|
|
794
|
-
"type": "
|
|
795
|
-
"
|
|
808
|
+
"type": "alert",
|
|
809
|
+
"message": "Rate limit exceeded. Requests are being throttled.",
|
|
810
|
+
"variant": "danger"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"columns": 2.0,
|
|
796
814
|
"children": [
|
|
797
815
|
{
|
|
798
816
|
"type": "stat-display",
|
|
799
|
-
"label": "Requests",
|
|
800
817
|
"value": [
|
|
801
818
|
"object/get",
|
|
802
819
|
[
|
|
@@ -804,7 +821,8 @@
|
|
|
804
821
|
"@entity"
|
|
805
822
|
],
|
|
806
823
|
"count"
|
|
807
|
-
]
|
|
824
|
+
],
|
|
825
|
+
"label": "Requests"
|
|
808
826
|
},
|
|
809
827
|
{
|
|
810
828
|
"type": "stat-display",
|
|
@@ -818,23 +836,10 @@
|
|
|
818
836
|
"window"
|
|
819
837
|
]
|
|
820
838
|
}
|
|
821
|
-
]
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
"type": "meter",
|
|
825
|
-
"value": [
|
|
826
|
-
"object/get",
|
|
827
|
-
[
|
|
828
|
-
"array/first",
|
|
829
|
-
"@entity"
|
|
830
|
-
],
|
|
831
|
-
"count"
|
|
832
839
|
],
|
|
833
|
-
"
|
|
834
|
-
"max": 100
|
|
840
|
+
"type": "simple-grid"
|
|
835
841
|
},
|
|
836
842
|
{
|
|
837
|
-
"type": "progress-bar",
|
|
838
843
|
"value": [
|
|
839
844
|
"object/get",
|
|
840
845
|
[
|
|
@@ -843,38 +848,34 @@
|
|
|
843
848
|
],
|
|
844
849
|
"count"
|
|
845
850
|
],
|
|
846
|
-
"max": 100,
|
|
847
|
-
"
|
|
851
|
+
"max": 100.0,
|
|
852
|
+
"type": "meter",
|
|
853
|
+
"min": 0.0
|
|
848
854
|
},
|
|
849
855
|
{
|
|
850
856
|
"type": "stack",
|
|
851
|
-
"direction": "horizontal",
|
|
852
|
-
"gap": "sm",
|
|
853
857
|
"justify": "center",
|
|
854
858
|
"children": [
|
|
855
859
|
{
|
|
856
|
-
"
|
|
857
|
-
"label": "Request",
|
|
858
|
-
"event": "REQUEST",
|
|
859
|
-
"variant": "primary",
|
|
860
|
-
"icon": "send"
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
"type": "button",
|
|
860
|
+
"icon": "rotate-ccw",
|
|
864
861
|
"label": "Reset",
|
|
862
|
+
"variant": "primary",
|
|
865
863
|
"event": "RESET",
|
|
866
|
-
"
|
|
867
|
-
"icon": "rotate-ccw"
|
|
864
|
+
"type": "button"
|
|
868
865
|
}
|
|
869
|
-
]
|
|
866
|
+
],
|
|
867
|
+
"gap": "sm",
|
|
868
|
+
"direction": "horizontal"
|
|
870
869
|
}
|
|
871
|
-
]
|
|
870
|
+
],
|
|
871
|
+
"direction": "vertical"
|
|
872
872
|
}
|
|
873
873
|
]
|
|
874
874
|
]
|
|
875
875
|
}
|
|
876
876
|
]
|
|
877
|
-
}
|
|
877
|
+
},
|
|
878
|
+
"scope": "collection"
|
|
878
879
|
}
|
|
879
880
|
],
|
|
880
881
|
"pages": [
|
|
@@ -890,4 +891,4 @@
|
|
|
890
891
|
]
|
|
891
892
|
}
|
|
892
893
|
]
|
|
893
|
-
}
|
|
894
|
+
}
|