log recieved time

This commit is contained in:
dave 2018-07-15 13:49:05 -07:00
parent ff6c67d02c
commit cf6e2935b4
2 changed files with 8 additions and 1 deletions

View File

@ -22,6 +22,9 @@
"date": {
"type": "date"
},
"log_date": {
"type": "date"
},
"dest_addr": {
"type": "ip"
},

View File

@ -78,8 +78,12 @@ int handle_message(char* msg) {
result.date.minute,
result.date.second);
char time_now[sizeof "2018-07-15T13:49:05Z"];
strftime(time_now, sizeof time_now, "%FT%TZ", gmtime(&cur_t));
json_object* jobj = json_object_new_object();
add_strfield(jobj, "date", date_formtted);
add_strfield(jobj, "date", time_now);
add_strfield(jobj, "log_date", date_formtted);
add_strfield(jobj, "app", result.application);
pfdata_to_json(&fwdata, jobj);
const char* json_msg = json_object_to_json_string(jobj);