Atul
atulituagencies@yahoo.com
· Admin
· yahoo.com
· ← all users
Active hours
8.00
real mouse/keyboard time
Active days
18
Sessions
184
Brands touched
1
Profiles touched
1
Pages touched
5
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-05-26 | 18 | 53.4 | 0.89 |
| 2026-05-27 | 5 | 8.5 | 0.14 |
| 2026-05-29 | 9 | 19.0 | 0.32 |
| 2026-05-30 | 4 | 6.5 | 0.11 |
| 2026-06-03 | 1 | 1.7 | 0.03 |
| 2026-06-04 | 11 | 39.3 | 0.65 |
| 2026-06-05 | 17 | 35.4 | 0.59 |
| 2026-06-06 | 7 | 46.6 | 0.78 |
| 2026-06-08 | 10 | 46.0 | 0.77 |
| 2026-06-09 | 4 | 11.2 | 0.19 |
| 2026-06-10 | 8 | 26.4 | 0.44 |
| 2026-06-11 | 24 | 51.5 | 0.86 |
| 2026-06-13 | 3 | 4.3 | 0.07 |
| 2026-06-15 | 24 | 33.4 | 0.56 |
| 2026-06-17 | 7 | 11.6 | 0.19 |
| 2026-06-18 | 14 | 57.5 | 0.96 |
| 2026-06-20 | 17 | 27.3 | 0.46 |
| 2026-06-23 | 1 | 0.3 | 0.01 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| ZIPLINE | atulituagencies@yahoo.com | Admin | 184 | 479.9 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Targeting 360 | targeting_360 | 63 | 161.0 |
| Amazon Automated Budget Rules | rule_automation | 14 | 57.6 |
| Amazon Automated Master Rules | rule_automation | 21 | 38.3 |
| Amazon Dayparting Performance | dayparting | 8 | 34.9 |
| Amazon Master Overview | master_overview | 14 | 33.7 |
| Amazon Dayparting Scheduler | dayparting | 5 | 30.2 |
| Amazon Text Categorization | other | 6 | 17.3 |
| Amazon Search Query Performance | targeting_360 | 9 | 15.7 |
| Create Amazon Automated Searchterm-negation Rule | rule_automation | 1 | 14.8 |
| Amazon Automated Placement Rules | rule_automation | 9 | 14.6 |
| Amazon Marketing Stream | targeting_360 | 5 | 13.2 |
| Amazon Dayparting Schedule Log Budget | dayparting | 6 | 10.8 |
| Amazon Automated Bid Rules | rule_automation | 3 | 10.6 |
| Amazon Automated Search Term Negation Rules | rule_automation | 2 | 8.3 |
| Amazon Ranking Configuration | ranking_360 | 2 | 4.8 |
| Amazon CPC Jobs | other | 1 | 3.9 |
| Amazon Categorization | other | 6 | 3.7 |
| Amazon Automated Budget Rule Details | rule_automation | 2 | 2.0 |
| Amazon Ranking Activity | ranking_360 | 2 | 1.3 |
| Logout | other | 1 | 0.8 |
| Amazon Dayparting Schedule Log Placement | dayparting | 1 | 0.8 |
| Create Amazon Automated Placement Rule | rule_automation | 1 | 0.7 |
| Amazon Audience Instance | amc | 1 | 0.6 |
| Amazon Ranking Dashboard | ranking_360 | 1 | 0.3 |
Actions
| Category | Action | Actions | Entities |
|---|---|---|---|
| rule | rule_based_created | 23 | 23 |
| budget | campaign_budget_updated | 21 | 21 |
| rule | rule_based_status_change | 11 | 11 |
| bid | campaign_placement_bid_updated | 9 | 9 |
| rule | rule_based_updated | 6 | 6 |
| scheduler | dayparting_scheduler_created | 2 | 2 |
| scheduler | dayparting_scheduler_status_change | 1 | 1 |
| bid | keyword_bid_updated | 1 | 1 |
5 queries · scanned 23.36 MB · cost $0.000139 · 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-05-26' AND DATE '2026-06-25'
AND LOWER(email) = LOWER('atulituagencies@yahoo.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('atulituagencies@yahoo.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('atulituagencies@yahoo.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('atulituagencies@yahoo.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('atulituagencies@yahoo.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('atulituagencies@yahoo.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('atulituagencies@yahoo.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC