2014-08-27 16:13:25 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
|
2014-08-27 16:13:25 +02:00
|
|
|
|
|
|
|
namespace Icinga\Module\Monitoring\DataView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* View representation for commands
|
|
|
|
*/
|
|
|
|
class Command extends DataView
|
|
|
|
{
|
|
|
|
/**
|
2015-08-17 14:03:05 +02:00
|
|
|
* {@inheritdoc}
|
2014-08-27 16:13:25 +02:00
|
|
|
*/
|
|
|
|
public function getColumns()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'command_id',
|
|
|
|
'command_instance_id',
|
|
|
|
'command_config_type',
|
|
|
|
'command_line',
|
|
|
|
'command_name'
|
|
|
|
);
|
|
|
|
}
|
2015-02-03 16:27:59 +01:00
|
|
|
}
|