public Response widgetValue(@ApiParam(name = "dashboardId", required = true) @PathParam("dashboardId") String dashboardId,
@ApiParam(name = "widgetId", required = true) @PathParam("widgetId") String widgetId) {
restrictToMaster();
checkPermission(RestPermissions.DASHBOARDS_READ, dashboardId);
Dashboard dashboard = dashboardRegistry.get(dashboardId);
if (dashboard == null) {
LOG.error("Dashboard not found.");
throw new WebApplicationException(404);
}
DashboardWidget widget = dashboard.getWidget(widgetId);
if (widget == null) {
LOG.error("Widget not found.");
throw new WebApplicationException(404);
}