|
|
|
|
@ -25,7 +25,23 @@ class EventMeta {
|
|
|
|
|
public $servicename;
|
|
|
|
|
public $data;
|
|
|
|
|
public $status;
|
|
|
|
|
public $result;
|
|
|
|
|
public $result;
|
|
|
|
|
function Clear() {
|
|
|
|
|
$this->eventrecordid = 0;
|
|
|
|
|
$this->time = 0;
|
|
|
|
|
$this->eventid = 0;
|
|
|
|
|
$this->task = "";
|
|
|
|
|
$this->level = "";
|
|
|
|
|
$this->keywords = "";
|
|
|
|
|
$this->computer = "";
|
|
|
|
|
$this->server = "";
|
|
|
|
|
$this->username = "";
|
|
|
|
|
$this->domainname = "";
|
|
|
|
|
$this->servicename = "";
|
|
|
|
|
$this->data = "";
|
|
|
|
|
$this->status = "";
|
|
|
|
|
$this->result= 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class EventData {
|
|
|
|
|
@ -72,6 +88,7 @@ function sql_addmeta ($data, $darray) {
|
|
|
|
|
$data->data,
|
|
|
|
|
$data->status
|
|
|
|
|
);
|
|
|
|
|
$data->Clear();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|