parent
ebf8d183a7
commit
77b60588bc
|
@ -72,8 +72,12 @@ class Monitoring_HostsController extends Controller
|
|||
$this->getTabs()->add(
|
||||
'show',
|
||||
array(
|
||||
'title' => mt('monitoring', 'Hosts'),
|
||||
'url' => Url::fromRequest()
|
||||
'title' => sprintf(
|
||||
$this->translate('Show summarized information for %u hosts'),
|
||||
count($this->hostList)
|
||||
),
|
||||
'label' => $this->translate('Hosts'),
|
||||
'url' => Url::fromRequest()
|
||||
)
|
||||
)->activate('show');
|
||||
$this->setAutorefreshInterval(15);
|
||||
|
|
|
@ -93,8 +93,12 @@ class Monitoring_ServicesController extends Controller
|
|||
$this->getTabs()->add(
|
||||
'show',
|
||||
array(
|
||||
'title' => mt('monitoring', 'Services'),
|
||||
'url' => Url::fromRequest()
|
||||
'title' => sprintf(
|
||||
$this->translate('Show summarized information for %u services'),
|
||||
count($this->serviceList)
|
||||
),
|
||||
'label' => $this->translate('Services'),
|
||||
'url' => Url::fromRequest()
|
||||
)
|
||||
)->activate('show');
|
||||
$this->setAutorefreshInterval(15);
|
||||
|
|
Loading…
Reference in New Issue