Neel Wadgaonkar
neel@neondigital.media
· Manager
· neondigital.media
· ← all users
Active hours
1.20
real mouse/keyboard time
Active days
7
Sessions
121
Brands touched
1
Profiles touched
1
Pages touched
1
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-06-17 | 8 | 5.0 | 0.08 |
| 2026-06-18 | 11 | 14.3 | 0.24 |
| 2026-06-19 | 52 | 25.2 | 0.42 |
| 2026-06-20 | 1 | 1.1 | 0.02 |
| 2026-06-22 | 5 | 2.1 | 0.04 |
| 2026-06-23 | 9 | 5.4 | 0.09 |
| 2026-06-24 | 35 | 18.6 | 0.31 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| Native Fab | neel@neondigital.media | Manager | 42 | 28.4 |
| GoBiotix | neel@neondigital.media | Manager | 28 | 16.9 |
| Amadurra | neel@neondigital.media | Manager | 26 | 10.8 |
| Caden Lane Baby | neel@neondigital.media | Manager | 13 | 7.7 |
| BÆRSkin Tactical Supply Co. | neel@neondigital.media | Manager | 6 | 3.5 |
| Factory Standard AMS | neel@neondigital.media | Manager | 3 | 2.3 |
| trtl travel | neel@neondigital.media | Manager | 2 | 1.8 |
| LJ Distribution | neel@neondigital.media | Manager | 1 | 0.2 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Targeting 360 | targeting_360 | 51 | 36.5 |
| Amazon Snapshot | snapshot | 22 | 7.8 |
| Amazon Dayparting Scheduler | dayparting | 6 | 7.5 |
| Create Amazon Automated Bid Rule | rule_automation | 14 | 5.2 |
| Amazon Automated Bid Rules | rule_automation | 9 | 4.9 |
| Amazon Automated Budget Rules | rule_automation | 8 | 4.5 |
| Amazon Text Categorization | other | 6 | 2.2 |
| Amazon Categorization | other | 1 | 1.4 |
| Amazon Automated Placement Rules | rule_automation | 1 | 1.0 |
| Create Amazon Automated Budget Rule | rule_automation | 2 | 0.6 |
| Amazon Marketing Stream | targeting_360 | 1 | 0.2 |
Actions
| Category | Action | Actions | Entities |
|---|---|---|---|
| budget | campaign_budget_updated | 27 | 274 |
| scheduler | dayparting_scheduler_status_switched | 4 | 4 |
| bid | campaign_placement_bid_updated | 2 | 2 |
5 queries · scanned 5.63 MB · cost $0.000034 · 6.72s
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('neel@neondigital.media')
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('neel@neondigital.media')
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('neel@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('neel@neondigital.media')
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('neel@neondigital.media')
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('neel@neondigital.media')
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('neel@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC