wp_burst_gsc_diagnostic_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑IDbigint unsignedNO
timeint unsignedNO
eventvarchar(64)NO
statusvarchar(24)NO
messagevarchar(191)NO
contextlongtextNO

CREATE TABLE Statement

CREATE TABLE wp_burst_gsc_diagnostic_logs ( `ID` bigint unsigned NOT NULL AUTO_INCREMENT, `time` int unsigned NOT NULL, `event` varchar(64) NOT NULL, `status` varchar(24) NOT NULL, `message` varchar(191) NOT NULL, `context` longtext NOT NULL, PRIMARY KEY (ID), KEY `time` (`time`) ) $charset_collate;" );

Safe to delete?

If you have uninstalled Burst Statistics – Simple WordPress Analytics (Google Analytics Alternative), 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_burst_gsc_diagnostic_logs`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Burst Statistics – Simple WordPress Analytics (Google Analytics Alternative)