Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
- double ts = cr->GetExecutionEnd();
+ double ts = Utility::GetTime();
Dictionary::Ptr fields = new Dictionary();
fields->Set("_current_check_attempt", checkable->GetCheckAttempt());
fields->Set("_max_check_attempts", checkable->GetMaxCheckAttempts());
- fields->Set("_latency", cr->CalculateLatency());
- fields->Set("_execution_time", cr->CalculateExecutionTime());
- fields->Set("_reachable", checkable->IsReachable());
+ fields->Set("_reachable", checkable->IsReachable());
if (cr) {
+ fields->Set("_latency", cr->CalculateLatency());
+ fields->Set("_execution_time", cr->CalculateExecutionTime());
fields->Set("short_message", CompatUtility::GetCheckResultOutput(cr));
fields->Set("full_message", cr->GetOutput());
fields->Set("_check_source", cr->GetCheckSource());
+ ts = cr->GetExecutionEnd();
}
- if (GetEnableSendPerfdata()) {
+ if (cr && GetEnableSendPerfdata()) {
Array::Ptr perfdata = cr->GetPerformanceData();
if (perfdata) {
else {
try {
pdv = PerfdataValue::Parse(val);
-
- String escaped_key = pdv->GetLabel();
- boost::replace_all(escaped_key, " ", "_");
- boost::replace_all(escaped_key, ".", "_");
- boost::replace_all(escaped_key, "\\", "_");
- boost::algorithm::replace_all(escaped_key, "::", ".");
-
- fields->Set("_" + escaped_key, pdv->GetValue());
-
- if (pdv->GetMin())
- fields->Set("_" + escaped_key + "_min", pdv->GetMin());
- if (pdv->GetMax())
- fields->Set("_" + escaped_key + "_max", pdv->GetMax());
- if (pdv->GetWarn())
- fields->Set("_" + escaped_key + "_warn", pdv->GetWarn());
- if (pdv->GetCrit())
- fields->Set("_" + escaped_key + "_crit", pdv->GetCrit());
} catch (const std::exception&) {
Log(LogWarning, "GelfWriter")
<< "Ignoring invalid perfdata value: '" << val << "' for object '"
- << checkable-GetName() << "'.";
+ << checkable->GetName() << "'.";
}
}
+
+ String escaped_key = pdv->GetLabel();
+ boost::replace_all(escaped_key, " ", "_");
+ boost::replace_all(escaped_key, ".", "_");
+ boost::replace_all(escaped_key, "\\", "_");
+ boost::algorithm::replace_all(escaped_key, "::", ".");
+
+ fields->Set("_" + escaped_key, pdv->GetValue());
+
+ if (pdv->GetMin())
+ fields->Set("_" + escaped_key + "_min", pdv->GetMin());
+ if (pdv->GetMax())
+ fields->Set("_" + escaped_key + "_max", pdv->GetMax());
+ if (pdv->GetWarn())
+ fields->Set("_" + escaped_key + "_warn", pdv->GetWarn());
+ if (pdv->GetCrit())
+ fields->Set("_" + escaped_key + "_crit", pdv->GetCrit());
}
}
}
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
- double ts = cr->GetExecutionEnd();
+ double ts = Utility::GetTime();
String notification_type_str = Notification::NotificationTypeToString(notification_type);
String output;
- if (cr)
+ if (cr) {
output = CompatUtility::GetCheckResultOutput(cr);
+ ts = cr->GetExecutionEnd();
+ }
Dictionary::Ptr fields = new Dictionary();
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
- double ts = cr->GetExecutionEnd();
+ double ts = Utility::GetTime();
Dictionary::Ptr fields = new Dictionary();
fields->Set("short_message", CompatUtility::GetCheckResultOutput(cr));
fields->Set("full_message", cr->GetOutput());
fields->Set("_check_source", cr->GetCheckSource());
+ ts = cr->GetExecutionEnd();
}
SendLogMessage(ComposeGelfMessage(fields, GetSource(), ts));