diff --git a/lib/methods/icingachecktask.cpp b/lib/methods/icingachecktask.cpp index d3eae1f33..d1789023b 100644 --- a/lib/methods/icingachecktask.cpp +++ b/lib/methods/icingachecktask.cpp @@ -155,7 +155,12 @@ void IcingaCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckRes String appVersion = Application::GetAppVersion(); String output = "Icinga 2 has been running for " + Utility::FormatDuration(uptime) + - ". Version: " + appVersion; + ". Version: " + appVersion + + "; Platform: " + Utility::GetPlatformName() + + "; Platform version: " + Utility::GetPlatformVersion() + + "; Kernel: " + Utility::GetPlatformKernel() + + "; Kernel version: " + Utility::GetPlatformKernelVersion() + + "; Architecture: " + Utility::GetPlatformArchitecture(); /* Indicate a warning if the last reload failed. */ double lastReloadFailed = Application::GetLastReloadFailed();