-
Notifications
You must be signed in to change notification settings - Fork 14.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bugfix/Feature] Fixed slice render staggering on dashboard first load #3478
[Bugfix/Feature] Fixed slice render staggering on dashboard first load #3478
Conversation
Coverage remained the same at 69.142% when pulling 1c9bbefacc6b9245ba6bec6bab6d20d8ccd71f07 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
3 similar comments
Coverage remained the same at 69.142% when pulling 1c9bbefacc6b9245ba6bec6bab6d20d8ccd71f07 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
Coverage remained the same at 69.142% when pulling 1c9bbefacc6b9245ba6bec6bab6d20d8ccd71f07 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
Coverage remained the same at 69.142% when pulling 1c9bbefacc6b9245ba6bec6bab6d20d8ccd71f07 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
Coverage remained the same at 69.142% when pulling 0d9a97e3ddbccdf1ab07ae406e0dd98d05ced96f on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
Coverage remained the same at 69.142% when pulling 0f84378cd4f88de2c75d0fa2ccf37a0cb7ca7786 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
2 similar comments
Coverage remained the same at 69.142% when pulling 0f84378cd4f88de2c75d0fa2ccf37a0cb7ca7786 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
Coverage remained the same at 69.142% when pulling 0f84378cd4f88de2c75d0fa2ccf37a0cb7ca7786 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
0f84378
to
c622f95
Compare
Coverage remained the same at 69.142% when pulling c622f9580abbbb85cd4feda85f1f733a44a34a60 on Mogball:mogball/feature/dashboard_loading into e22aecb on apache:master. |
These 2 new configuration elements ( |
9d9a9d1
to
963b9cb
Compare
@mistercrunch Added to docs |
2 similar comments
Wait I didn't realize that there was a We need to remove that delay on the first load, the idea with the delay was to randomize the subsequent refreshes so that if you set it to refresh every 5 minutes, it won't go all reload at once, it's nicer if the slices go randomly over that period. Do you want take this on as part of this PR since you're already deep into it? |
Alrighty. I'll make changes so that
|
5b225d9
to
1b71821
Compare
1b71821
to
268804e
Compare
2 similar comments
@mistercrunch Done |
apache#3478) * Feature: disable dashboard refresh staggering * Removed refresh staggering everywhere except during periodic render
timed_refresh_immune_slices
it will not load upon initial renderingRefreshing the dashboard now will either stagger or not stagger slice rendering, regardless of how it is triggered, and there is the option to disable this and set the stagger interval (in milliseconds) in the dashboard's JSON Metadata:
{ ... "stagger_refresh": false, "stagger_time": 15000 }
Default value is true and 5 seconds. Staggering is also more deterministic.