The web dashboard is based on ajax similar to google maps. The dashboard is rendered in memory, then broken down into a number of images that are sent to the browser. If the update rate is set to be quick, then the image engine may not be able to keep up. You can try to increase the 'tileCacheSize' and decrease the 'updateRate' in your config.xml file. |
Add the following to the config.xml: <dashboardDefaults>
<updateRate>10</updateRate> <dashboardRefreshRate>60</dashboardRefreshRate> <tileSize> <width>200</width> <height>200</height> </tileSize> <tileCacheSize>100</tileCacheSize> <tileCacheTime>30</tileCacheTime> </dashboardDefaults> |
Comments
0 comments
Please sign in to leave a comment.