I am wondering if there is a way to disable a view in order to see if my design is causing spikes in memory/cpu usage. I am pretty sure they are but wanted to confirm.
The only way I can think to do this is to export the page and keep as a copy. Then delete the page from the project and can later add it back in.
Is there a way to determine what is polling or using the resources. I have looked in the logs and diagnostics but nothing definitive. I believe it is in my queries and polling.
Java is always rolling through its available memory. Every temporary class instance created as java runs will be discarded and then have to be collected. There’s so much of that going on that the unusual is often lost in the crowd. Snapshots of memory usage or histograms can help (jhat, flight recorder, etc).
A sawtooth is utterly normal. Spiky charts without known spiky loads, not so much.