query1.Table = "hoststatus";
query1.Type = DbQueryUpdate;
+ query1.Category = DbCatState;
Dictionary::Ptr fields1 = new Dictionary();
fields1->Set("next_check", DbValue::FromTimestamp(nextCheck));
query1.Table = "hoststatus";
query1.Type = DbQueryUpdate;
+ query1.Category = DbCatState;
Dictionary::Ptr fields1 = new Dictionary();
fields1->Set("is_flapping", CompatUtility::GetCheckableIsFlapping(checkable));
query1.Table = "hoststatus";
query1.Type = DbQueryUpdate;
+ query1.Category = DbCatState;
Dictionary::Ptr fields1 = new Dictionary();
fields1->Set("last_notification", DbValue::FromTimestamp(now_bag.first));
query1.Table = "hoststatus";
query1.Type = DbQueryUpdate;
+ query1.Category = DbCatState;
Dictionary::Ptr fields1 = new Dictionary();
DbQuery query1;
query1.Table = "endpointstatus";
query1.Type = DbQueryUpdate;
+ query1.Category = DbCatState;
Dictionary::Ptr fields1 = new Dictionary();
fields1->Set("is_connected", (connected ? 1 : 0));
DbQuery query1;
query1.Table = "endpointstatus";
query1.Type = DbQueryInsert;
+ query1.Category = DbCatConfig;
Dictionary::Ptr fields1 = new Dictionary();
fields1->Set("identity", endpoint->GetName());