Prachi Das
prachi.d@hectorai.live
· Manager
· hectorai.live
· ← all users
Active hours
3.44
real mouse/keyboard time
Active days
6
Sessions
225
Brands touched
1
Profiles touched
1
Pages touched
2
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-06-17 | 65 | 65.0 | 1.08 |
| 2026-06-18 | 26 | 19.8 | 0.33 |
| 2026-06-19 | 33 | 14.4 | 0.24 |
| 2026-06-22 | 11 | 11.3 | 0.19 |
| 2026-06-23 | 50 | 47.2 | 0.79 |
| 2026-06-24 | 40 | 49.0 | 0.82 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| HolidayTraditions | prachi.d@hectorai.live | Manager | 153 | 157.2 |
| COCONIQ | prachi.d@hectorai.live | Manager | 13 | 24.1 |
| Sprig & Sprouts LLC | prachi.d@hectorai.live | Manager | 32 | 15.6 |
| Sandhu Products Inc. | prachi.d@hectorai.live | Manager | 21 | 5.8 |
| SaiTech IT | prachi.d@hectorai.live | Manager | 5 | 3.5 |
| INSPIRED NUTRITION LLC | prachi.d@hectorai.live | Manager | 1 | 0.4 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Targeting 360 | targeting_360 | 83 | 100.7 |
| Amazon Snapshot | snapshot | 84 | 63.2 |
| Amazon Search Query Performance | targeting_360 | 35 | 14.4 |
| Amazon Dayparting Performance | dayparting | 6 | 12.2 |
| Amazon Master Overview | master_overview | 4 | 7.2 |
| Amazon Marketing Stream | targeting_360 | 5 | 3.3 |
| Amazon Dayparting Scheduler | dayparting | 2 | 3.2 |
| Amazon Categorization | other | 2 | 1.6 |
| Amazon Dayparting Schedule Log Budget | dayparting | 2 | 0.4 |
| Logout | other | 1 | 0.3 |
| Profile | other | 1 | 0.3 |
Actions
| Category | Action | Actions | Entities |
|---|---|---|---|
| bid | target_bid_updated | 41 | 41 |
| bid | keyword_bid_updated | 17 | 77 |
| bid | campaign_placement_bid_updated | 8 | 8 |
5 queries · scanned 5.52 MB · cost $0.000033 · 6.62s
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('prachi.d@hectorai.live')
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('prachi.d@hectorai.live')
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('prachi.d@hectorai.live')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('prachi.d@hectorai.live')
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('prachi.d@hectorai.live')
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('prachi.d@hectorai.live')
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('prachi.d@hectorai.live')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC