2015-07-14 12:30:16 +02:00
|
|
|
<?php
|
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
|
|
|
|
namespace Icinga\Data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An object for which the user can retrieve status information
|
2015-07-15 18:36:19 +02:00
|
|
|
*
|
|
|
|
* This interface is useful for providing summaries or diagnostic information about objects
|
|
|
|
* to users.
|
2015-07-14 12:30:16 +02:00
|
|
|
*/
|
|
|
|
interface Inspectable
|
|
|
|
{
|
|
|
|
/**
|
2015-07-15 18:36:19 +02:00
|
|
|
* Inspect this object to gain extended information about its health
|
2015-07-14 12:30:16 +02:00
|
|
|
*
|
2015-07-15 18:36:19 +02:00
|
|
|
* @return Inspection The inspection result
|
2015-07-14 12:30:16 +02:00
|
|
|
*/
|
2015-07-15 17:30:39 +02:00
|
|
|
public function inspect();
|
2015-07-14 12:30:16 +02:00
|
|
|
}
|