assert !appConfig.isCluster();
String dashboardId = request.getParameter("dashBID");
DashboardConfig currentDashboardConfig = DashboardRepository.getInstance().get(dashboardId);
assert currentDashboardConfig != null : "Error retrieving dashboard details";
DashboardComponent component =
currentDashboardConfig.getComponents().get(getId());
String componentDisplay = component.draw(new DashboardContextImpl(context, currentDashboardConfig,
(HttpServletRequest)pageContext.getRequest()));
componentDisplay = MessageFormat.format(componentDisplay, getWidth(),
getHeight(), Utils.getCookieValue(request, "JSESSIONID"));
pageContext.getOut().println(componentDisplay);
}catch(Throwable e){