Advanced cache monitoring tool for Sitecore that was designed to replace built-in /sitecore/admin/cache.aspx
- Display cache statistic for each cache:
- Amount of objects in cache
- Occupied cache size
- Max cache size
- Cache load
- Perform live update
- Show live chart for each cache to display its loading
- Filter
- Display total cache statistic for filtered caches
- Sort
- Clear caches
Sitecore Cache Observer uses SignalR for live updates and SignalR needs to be initialized as an OWIN middleware.
If you don't have configured OWIN in your Sitecore instance, then the easiest way to make Sitecore Cache Observer work is to install Sitecore SignalR nuget package:
Install-Package Sitecore.SignalR
Otherwise add a call of app.MapSignalR()
in your Startup
class and update IgnoreUrlPrefixes
setting in config to ignore /signalr.
Install-Package Sitecore.CacheObserver
Navigate to /sitecore/admin/cache/cacheobserver.aspx. The page requires the same permissions as the /sitecore/admin/cache.aspx: the user must be either an administrator or be in the 'sitecore\developer' or 'sitecore\sitecore client developing' role.