Siddharth Patel
ssp.saitech@gmail.com
· Manager
· gmail.com
· ← all users
Active hours
1.20
real mouse/keyboard time
Active days
7
Sessions
78
Brands touched
1
Profiles touched
1
Pages touched
2
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-06-17 | 20 | 20.1 | 0.34 |
| 2026-06-18 | 7 | 7.6 | 0.13 |
| 2026-06-19 | 6 | 9.5 | 0.16 |
| 2026-06-20 | 4 | 2.8 | 0.05 |
| 2026-06-22 | 9 | 6.9 | 0.12 |
| 2026-06-23 | 11 | 8.7 | 0.14 |
| 2026-06-24 | 21 | 16.6 | 0.28 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| SaiTech IT | ssp.saitech@gmail.com | Manager | 59 | 55.1 |
| Storite by Saitech IT PVT LTD(New) | ssp.saitech@gmail.com | Manager | 10 | 10.0 |
| Saitech | ssp.saitech@gmail.com | Manager | 9 | 7.1 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Targeting 360 | targeting_360 | 21 | 17.3 |
| Amazon Master Overview | master_overview | 18 | 13.3 |
| Amazon DSP Reports | dsp | 5 | 8.2 |
| Amazon Snapshot | snapshot | 5 | 8.1 |
| Amazon DSP Audience | dsp | 5 | 5.4 |
| Amazon Dayparting Performance | dayparting | 3 | 3.8 |
| Flipkart Master Overview | master_overview | 4 | 2.8 |
| DSP | dsp | 3 | 2.3 |
| Flipkart Targeting 360 | targeting_360 | 3 | 2.3 |
| Amazon CPC Jobs | other | 3 | 1.9 |
| Amazon Marketing Stream | targeting_360 | 2 | 1.8 |
| Flipkart Snapshot | snapshot | 1 | 1.8 |
| Amazon DSP Adgroup | dsp | 2 | 1.3 |
| Amazon DSP Snapshot | snapshot | 1 | 1.2 |
| AMC Amazon Tentpole Report | amc | 1 | 0.4 |
| Budget | other | 1 | 0.2 |
Actions
No actions recorded.
5 queries · scanned 5.50 MB · cost $0.000033 · 6.88s
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-06-17' AND DATE '2026-06-24'
AND LOWER(email) = LOWER('ssp.saitech@gmail.com')
GROUP BY day, email
) s USING (day, email)
WHERE i.day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
AND LOWER(i.email) = LOWER('ssp.saitech@gmail.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('ssp.saitech@gmail.com')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('ssp.saitech@gmail.com')
AND i.day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
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('ssp.saitech@gmail.com')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
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('ssp.saitech@gmail.com')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
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('ssp.saitech@gmail.com')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC