Sreenath
sreenathpg@gokratos.com
· Admin
· gokratos.com
· ← all users
Active hours
1.92
real mouse/keyboard time
Active days
14
Sessions
98
Brands touched
1
Profiles touched
1
Pages touched
1
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-05-27 | 5 | 6.5 | 0.11 |
| 2026-05-28 | 4 | 4.9 | 0.08 |
| 2026-05-29 | 1 | 1.4 | 0.02 |
| 2026-06-01 | 22 | 56.8 | 0.95 |
| 2026-06-02 | 6 | 4.7 | 0.08 |
| 2026-06-03 | 10 | 10.1 | 0.17 |
| 2026-06-04 | 6 | 3.7 | 0.06 |
| 2026-06-05 | 1 | 0.2 | 0.00 |
| 2026-06-12 | 7 | 4.7 | 0.08 |
| 2026-06-13 | 5 | 3.5 | 0.06 |
| 2026-06-14 | 15 | 10.0 | 0.17 |
| 2026-06-15 | 4 | 2.5 | 0.04 |
| 2026-06-18 | 8 | 4.6 | 0.08 |
| 2026-06-23 | 4 | 1.7 | 0.03 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| Kratos | sreenathpg@gokratos.com | Admin | 91 | 110.9 |
| Kratos_MobileAccessories_PO | sreenathpg@gokratos.com | Admin | 5 | 2.7 |
| Gokratos | sreenathpg@gokratos.com | Admin | 2 | 1.7 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Master Overview | master_overview | 51 | 52.0 |
| Amazon Smart Campaigns List | other | 4 | 20.2 |
| Amazon Snapshot | snapshot | 4 | 6.8 |
| Amazon Dayparting Performance | dayparting | 3 | 6.2 |
| Amazon Categorization | other | 6 | 5.2 |
| Amazon Text Categorization | other | 2 | 4.8 |
| Amazon Targeting 360 | targeting_360 | 6 | 4.6 |
| Flipkart Targeting 360 | targeting_360 | 7 | 4.4 |
| Amazon Portfolio Budget Manager | other | 3 | 3.2 |
| Amazon Campaign Drafts Manual Keyword Create | other | 1 | 2.3 |
| Amazon Campaign Drafts ASIN Harvesting Create | other | 1 | 1.7 |
| Profile | other | 3 | 1.0 |
| Amazon Marketing Stream | targeting_360 | 2 | 0.8 |
| Account Settings | account_settings | 1 | 0.8 |
| Edit Profile | other | 2 | 0.7 |
| Logout | other | 2 | 0.7 |
Actions
No actions recorded.
5 queries · scanned 23.21 MB · cost $0.000138 · 7.04s
SELECT
i.email,
ANY_VALUE(i.full_name) AS full_name,
ANY_VALUE(i.email_domain) AS email_domain,
ANY_VALUE(s.role) AS role,
COUNT(DISTINCT i.day) AS active_days,
ANY_VALUE(s.brands_touched) AS brands_touched,
ANY_VALUE(s.profiles_touched) AS profiles_touched,
ANY_VALUE(s.pages_touched) AS pages_touched,
SUM(s.sessions) AS sessions,
SUM(i.sum_active_seconds) AS active_seconds,
ROUND(SUM(i.sum_active_seconds)/3600.0, 2) AS active_hours
FROM `amazoneast.customerio_data.fact_session_intervals_daily` i
LEFT JOIN (
SELECT day, email, SUM(sessions) AS sessions, ANY_VALUE(role) AS role,
COUNT(DISTINCT brand_group) AS brands_touched,
COUNT(DISTINCT profile_id) AS profiles_touched,
COUNT(DISTINCT report_page) AS pages_touched
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
AND LOWER(email) = LOWER('sreenathpg@gokratos.com')
GROUP BY day, email
) s USING (day, email)
WHERE i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
AND LOWER(i.email) = LOWER('sreenathpg@gokratos.com')
GROUP BY i.email
SELECT i.day,
s.sessions,
ROUND(i.sum_active_seconds/60.0, 1) AS active_min,
ROUND(i.sum_active_seconds/3600.0, 2) AS active_hours
FROM `amazoneast.customerio_data.fact_session_intervals_daily` i
LEFT JOIN (
SELECT day, SUM(sessions) AS sessions
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(email) = LOWER('sreenathpg@gokratos.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('sreenathpg@gokratos.com')
AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
SELECT brand_group,
ANY_VALUE(profile_owner_email) AS profile_owner_email,
ANY_VALUE(role) AS role,
SUM(sessions) AS sessions,
ROUND(SUM(active_seconds)/60.0, 1) AS active_min
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(email) = LOWER('sreenathpg@gokratos.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_min DESC
SELECT report_page,
ANY_VALUE(report) AS report,
SUM(sessions) AS sessions,
ROUND(SUM(active_seconds)/60.0, 1) AS active_min
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(email) = LOWER('sreenathpg@gokratos.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY report_page
ORDER BY active_min DESC
LIMIT 5000
SELECT action_category,
action_type,
SUM(action_count) AS actions,
SUM(entity_count) AS entities
FROM `amazoneast.customerio_data.fact_actions_daily`
WHERE LOWER(email) = LOWER('sreenathpg@gokratos.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC