mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-15 04:29:38 +02:00
24 lines
457 B
PHP
24 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
|
|
),
|
|
);
|
|
}
|