blob: 3860a661099e35a9eef1222c48fbcfc3ef5596ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Icinga\Module\Monitoring\DataView;
class Hostdependency extends DataView {
public function getColumns() {
return array(
'host_name',
'dependent_host_name',
);
}
}
|