mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-03-01 20:50:23 -05:00
23 lines
457 B
PHP
23 lines
457 B
PHP
<?php
|
|
|
|
namespace Icinga\Monitoring\View;
|
|
|
|
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
|
|
),
|
|
);
|
|
}
|