Ripul Sharma
babyorgano.orders@gmail.com
· Admin
· gmail.com
· ← all users
Active hours
1.18
real mouse/keyboard time
Active days
6
Sessions
171
Brands touched
2
Profiles touched
2
Pages touched
4
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-06-17 | 4 | 5.2 | 0.09 |
| 2026-06-18 | 7 | 10.2 | 0.17 |
| 2026-06-19 | 30 | 37.8 | 0.63 |
| 2026-06-22 | 7 | 8.1 | 0.13 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 0.5 | 0.01 |
| 2026-06-23 | 13 | 2.6 | 0.04 |
| 2026-06-24 | 6 | 3.2 | 0.05 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| BabyOrgano Store | babyorgano.orders@gmail.com | Admin | 50 | 56.4 |
| BABYORGANO - seller | babyorgano.orders@gmail.com | Admin | 17 | 14.4 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Flipkart Targeting 360 | targeting_360 | 15 | 13.5 |
| Create Amazon Automated Placement Rule | rule_automation | 6 | 12.4 |
| Amazon Master Overview | master_overview | 13 | 12.3 |
| Amazon Automated Placement Rules | rule_automation | 8 | 11.3 |
| Amazon Targeting 360 | targeting_360 | 10 | 6.7 |
| Amazon Automated Placement Rule Details | rule_automation | 2 | 3.8 |
| Amazon DSP Creative | dsp | 4 | 3.3 |
| Amazon Marketing Stream | targeting_360 | 1 | 3.2 |
| Amazon Dayparting Performance | dayparting | 3 | 2.0 |
| Placement | other | 1 | 0.7 |
| Amazon Dayparting Scheduler | dayparting | 1 | 0.6 |
| Edit Profile | other | 1 | 0.5 |
| Budget | other | 1 | 0.2 |
| Amazon Automated Master Rules | rule_automation | 1 | 0.2 |
Actions
| Category | Action | Actions | Entities |
|---|---|---|---|
| rule | rule_based_created | 2 | 2 |
| rule | rule_based_updated | 1 | 1 |
5 queries · scanned 5.70 MB · cost $0.000034 · 7.15s
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('babyorgano.orders@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('babyorgano.orders@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('babyorgano.orders@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('babyorgano.orders@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('babyorgano.orders@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('babyorgano.orders@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('babyorgano.orders@gmail.com')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC