wp_jg_website_analytics_bot_aggregates

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑_idBIGINTYES
_bucket_startDATETIMENO
_route_groupVARCHAR(30)NO
_risk_bucketTINYINTNO
_count_requestsINTNO
_count_htmlINTNO
_count_assetINTNO
_count_404INTNO
_count_4xxINTNO
_count_5xxINTNO

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