From 11c6c110765ca652852bcb872191af7e2e44de7a Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Thu, 5 Mar 2020 14:36:58 +0100 Subject: [PATCH] Add Checkable#last_check_started refs #7888 --- lib/icinga/checkable.ti | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/icinga/checkable.ti b/lib/icinga/checkable.ti index 98d18cd7f..ad34f6d42 100644 --- a/lib/icinga/checkable.ti +++ b/lib/icinga/checkable.ti @@ -90,6 +90,8 @@ abstract class Checkable : CustomVarObject [config] String icon_image_alt; [state] Timestamp next_check; + [state, no_user_view, no_user_modify] Timestamp last_check_started; + [state] int check_attempt { default {{{ return 1; }}} };