Ah, right. Looks like I misunderstood your request.
Anyway I’ll just copy/paste what I found in the WordPress Dashboard contextual help:
The bar at the top of the screen is a summary of the number of Security related events that occurred on your website in the last 30 days.
- Events Tracked: Total logged events across all of iThemes Security.
- Suspicious Activities: Total activity that iThemes Security deems suspicious such as 404s, invalid login attempts, missing reCAPTCHA, or unrecognized Trusted Devices.
- Activities Blocked: The number of times iThemes Security takes action to block a suspicious user. Includes lockouts, banned IPs and protected hijacked sessions.
- IPs Monitored: Total number of IPs being tracked by iThemes Security.
It clarifies to some extend what the stats are about.
To understand exactly how these 4 numbers are calculated you’ll need to look at the SQL query used for each. Below per stat an overview of the table the SQL statement is run upon and between brackets the class method (args incl) which contains the SQL query used. The class methods can be found in the file:
ithemes-security-pro/pro/dashboard/class-itsec-dashboard-util.php
Events Tracked – wp_itsec_dashboard_events (total_events( $period = false ))
Suspicious Activities – wp_itsec_dashboard_events (count_events( $slug_or_slugs, $period = false ))
Activities Blocked – wp_itsec_dashboard_events (count_events( $slug_or_slugs, $period = false ))
IPs Monitored – wp_itsec_logs (total_ips( $period = false ))
To understand the difference between Suspicious Activities and Activities Blocked have a look at the get_item() class method in the file:
ithemes-security-pro/pro/dashboard/rest/class-itsec-rest-dashboard-static-controller.php
Hope this helps to better understand what these 4 stats are based upon.
-
This reply was modified 5 years, 3 months ago by
nlpro.