Hey there @adriders,
The sgs_log_events table logs specific events in your WordPress Application. You can monitor in detail the activity of registered, unknown, and blocked visitors. If your site is being hacked, a user, or a plugin was compromised, you can always use the quick tools to block their future actions.
By default, the table is automatically cleared every 12 days.
If you need to decrease the log lifetime you can use the following filter we have provided for that purpose and set it in a specific range between 1 and 12 days.
add_filter( 'sgs_set_activity_log_lifetime', 'set_custom_log_lifetime' );
function set_custom_log_lifetime() {
return 'your-custom-log-lifetime-in-days';
}
Kind regards,
Stoyan