mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-01 21:58:59 +02:00
26 lines
506 B
PHP
26 lines
506 B
PHP
<?php
|
|
|
|
namespace Icinga\Monitoring\View;
|
|
|
|
use Icinga\Module\Monitoring\View\AbstractView;
|
|
|
|
class StatehistoryView extends AbstractView
|
|
{
|
|
protected $availableColumns = array(
|
|
'raw_timestamp',
|
|
'timestamp',
|
|
'state',
|
|
'attempt',
|
|
'max_attempts',
|
|
'output',
|
|
'type'
|
|
);
|
|
|
|
protected $sortDefaults = array(
|
|
'timestamp' => array(
|
|
'columns' => array('raw_timestamp'),
|
|
'default_dir' => self::SORT_DESC
|
|
),
|
|
);
|
|
}
|