3.69 ms (58.30%)
|
1 |
SELECT t0.id AS id_1, t0.ip AS ip_2, t0.user_agent AS user_agent_3, t0.page_url AS page_url_4, t0.accessed_at AS accessed_at_5, t0.session_id AS session_id_6, t0.visit_count AS visit_count_7, t0.referer AS referer_8, t0.country AS country_9, t0.city AS city_10, t0.is_bot AS is_bot_11, t0.bot_type AS bot_type_12 FROM analytics_page_access t0 WHERE t0.ip = ? AND t0.page_url = ? LIMIT 1
Parameters: [
"44.248.222.47"
"/landing"
]
SELECT t0.id AS id_1, t0.ip AS ip_2, t0.user_agent AS user_agent_3, t0.page_url AS page_url_4, t0.accessed_at AS accessed_at_5, t0.session_id AS session_id_6, t0.visit_count AS visit_count_7, t0.referer AS referer_8, t0.country AS country_9, t0.city AS city_10, t0.is_bot AS is_bot_11, t0.bot_type AS bot_type_12 FROM analytics_page_access t0 WHERE t0.ip = '44.248.222.47' AND t0.page_url = '/landing' LIMIT 1;
|
0.34 ms (5.40%)
|
1 |
INSERT INTO analytics_page_access (ip, user_agent, page_url, accessed_at, session_id, visit_count, referer, country, city, is_bot, bot_type) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
"44.248.222.47"
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.102 Safari/537.36 Edge/18.19582"
"/landing"
"2026-06-12 17:29:24"
""
1
null
null
null
0
null
]
INSERT INTO analytics_page_access (ip, user_agent, page_url, accessed_at, session_id, visit_count, referer, country, city, is_bot, bot_type) VALUES ('44.248.222.47', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.102 Safari/537.36 Edge/18.19582', '/landing', '2026-06-12 17:29:24', '', 1, NULL, NULL, NULL, 0, NULL);
|