52 lines
2.5 KiB
SQL
52 lines
2.5 KiB
SQL
CREATE TABLE IF NOT EXISTS connector_events
|
|
(
|
|
sessionid BIGINT,
|
|
connectioninformation_downlink BIGINT,
|
|
connectioninformation_type VARCHAR(300),
|
|
consolelog_level VARCHAR(300),
|
|
consolelog_value VARCHAR(300),
|
|
customevent_messageid BIGINT,
|
|
customevent_name VARCHAR(300),
|
|
customevent_payload VARCHAR(300),
|
|
customevent_timestamp BIGINT,
|
|
errorevent_message VARCHAR(300),
|
|
errorevent_messageid BIGINT,
|
|
errorevent_name VARCHAR(300),
|
|
errorevent_payload VARCHAR(300),
|
|
errorevent_source VARCHAR(300),
|
|
errorevent_timestamp BIGINT,
|
|
jsexception_message VARCHAR(300),
|
|
jsexception_name VARCHAR(300),
|
|
jsexception_payload VARCHAR(300),
|
|
metadata_key VARCHAR(300),
|
|
metadata_value VARCHAR(300),
|
|
mouseclick_id BIGINT,
|
|
mouseclick_hesitationtime BIGINT,
|
|
mouseclick_label VARCHAR(300),
|
|
pageevent_firstcontentfulpaint BIGINT,
|
|
pageevent_firstpaint BIGINT,
|
|
pageevent_messageid BIGINT,
|
|
pageevent_referrer VARCHAR(300),
|
|
pageevent_speedindex BIGINT,
|
|
pageevent_timestamp BIGINT,
|
|
pageevent_url VARCHAR(300),
|
|
pagerendertiming_timetointeractive BIGINT,
|
|
pagerendertiming_visuallycomplete BIGINT,
|
|
rawcustomevent_name VARCHAR(300),
|
|
rawcustomevent_payload VARCHAR(300),
|
|
setviewportsize_height BIGINT,
|
|
setviewportsize_width BIGINT,
|
|
timestamp_timestamp BIGINT,
|
|
user_anonymous_id VARCHAR(300),
|
|
user_id VARCHAR(300),
|
|
issueevent_messageid BIGINT,
|
|
issueevent_timestamp BIGINT,
|
|
issueevent_type VARCHAR(300),
|
|
issueevent_contextstring VARCHAR(300),
|
|
issueevent_context VARCHAR(300),
|
|
issueevent_payload VARCHAR(300),
|
|
customissue_name VARCHAR(300),
|
|
customissue_payload VARCHAR(300),
|
|
received_at BIGINT,
|
|
batch_order_number BIGINT
|
|
);
|