cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
31 lines (30 loc) • 731 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ICoreSylog = void 0;
/* INTERFASE START */
class ICoreSylog {
}
exports.ICoreSylog = ICoreSylog;
/*
|| EXAMPLE for TRACE log type
||{
|| user_id: "user001", // this is after login succuess for each route
|| log_type: "TRACE",
|| timestamp: new Date(),
|| method: "POST",
|| route: "/auth/login",
|| request: {},
|| ip_address" "192.168.0.6",
||}
*/
/*
|| EXAMPLE for SECURITY log type
||{
|| user_id: "user001", // this is after reset password link sent
|| log_type: "SECURITY",
|| timestamp: new Date(),
|| sylog_security_event: "reset_password",
|| sylog_config_data: {"reset_password_id":""}
|| ip_address" "192.168.0.6",
||}
*/