wp_jg_website_analytics_bot_aggregates
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑_id | BIGINT | YES |
| _bucket_start | DATETIME | NO |
| _route_group | VARCHAR(30) | NO |
| _risk_bucket | TINYINT | NO |
| _count_requests | INT | NO |
| _count_html | INT | NO |
| _count_asset | INT | NO |
| _count_404 | INT | NO |
| _count_4xx | INT | NO |
| _count_5xx | INT | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_JG_website_analytics_bot_aggregates ( _id BIGINT AUTO_INCREMENT PRIMARY KEY, _bucket_start DATETIME NOT NULL, _route_group VARCHAR(30) NOT NULL, _risk_bucket TINYINT NOT NULL DEFAULT 0, _count_requests INT NOT NULL DEFAULT 0, _count_html INT NOT NULL DEFAULT 0, _count_asset INT NOT NULL DEFAULT 0, _count_404 INT NOT NULL DEFAULT 0, _count_4xx INT NOT NULL DEFAULT 0, _count_5xx INT NOT NULL DEFAULT 0, UNIQUE KEY bucket_route_risk (_bucket_start, _route_group, _risk_bucket), KEY idx_bucket_start (_bucket_start) ) ENGINE
Safe to delete?
If you have uninstalled JG Website Analytics, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_jg_website_analytics_bot_aggregates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from JG Website Analytics