-
Notifications
You must be signed in to change notification settings - Fork 12.2k
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
[Bug] 100% client CPU usage on red alert glow animation #8222
Comments
@mattttt your animation needs a tweak :) |
I think I have a solution for this, based on this post: http://tobiasahlin.com/blog/how-to-animate-box-shadow/ Testing now in a branch. |
While I wasnt able to replicate CPU usage spiking to 100%, I did observe that it did spike a bit (~15-20% on my laptop) and looked for more efficient ways to handle the animation. Refactored code in PR: #8227 |
great, thanks @mattttt for quick fix! |
Hi, the animation is definitely still taxing, e.g. on laptops (Macbook/Chrome), and on a bigger dashboard page with several open alerts, it adds up and the laptop goes into a full-fan/very-hot mode. Things go back to normal after adding this CSS (e.g. via the Stylebot extension): .panel-alert-state--alerting:after {
-webkit-animation: none;
animation: none;
opacity: inherit;
} ... plus I feel I have even better overview of where the alerts are because the red border is now solid. Perhaps this could make it as an option into future Grafanas -- to have the animation on a user setting, possible to turn on/off (or just remove it entirely). |
@youurayy thanks for the suggestions. I would recommend you to open a new issue where you can report more detailed information since this issue have been closed for over 2 years. |
When having an alert, the corresponding panel receives a red heart and glows red in the background. This glow animation consumes 100% desktop CPU load, which is pretty bad.
Expected: Less than 5% CPU load or no animation.
I'm using Grafana v4.1.0 with Influx on Linux. My desktop machine is the latest MacbookPro with the latest Chrome 57.0.2987.133.
The text was updated successfully, but these errors were encountered: