File: Hostdependency.php

package info (click to toggle)
icingaweb2-module-statusmap 20160720-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,000 kB
  • sloc: javascript: 29,517; php: 89; makefile: 11
file content (14 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (4)
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',
		);
	}

}