/**
  * Show the history for a host or service
  */
 public function historyAction()
 {
     $this->getTabs()->activate('history');
     $this->view->history = $this->object->fetchEventHistory()->eventhistory;
     $this->applyRestriction('monitoring/filter/objects', $this->view->history);
     $this->setupLimitControl(50);
     $this->setupPaginationControl($this->view->history, 50);
     $this->view->object = $this->object;
 }