icinga2/lib/icinga/notificationresult.ti

25 lines
359 B
Plaintext
Raw Normal View History

2019-03-28 11:47:47 +01:00
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2018-07-24 17:51:17 +02:00
library icinga;
namespace icinga
{
class NotificationResult
{
[state] Timestamp execution_start;
[state] Timestamp execution_end;
[state] Value command;
[state] int exit_status;
[state] String output;
[state] bool active {
default {{{ return true; }}}
};
[state] String execution_endpoint;
};
}