Ashish Chaudhary

· Manager · gmail.com · ← all users

Active hours
2.05
real mouse/keyboard time
Active days
11
Sessions
1,526
Brands touched
1
Profiles touched
1
Pages touched
2

Daily

Day Sessions Active min Active hours
2026-05-26 20 26.8 0.45
2026-05-27 1 0.2 0.00
2026-06-05 1 2.3 0.04
2026-06-06 6 10.4 0.17
2026-06-08 5 4.7 0.08
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-09 38 0.8 0.01
2026-06-18 11 12.7 0.21
2026-06-19 20 21.5 0.36
2026-06-20 9 5.9 0.10
2026-06-23 6 3.9 0.06
2026-06-25 3 2.8 0.05

Brands

BrandOwnerRoleSessionsActive min
LeCalla Sterling Silver ashish.chaudhary1807@gmail.com Manager 119 119.0
Charmsy Silver ashish.chaudhary1807@gmail.com Manager 1 3.8

Pages

PageReportSessionsActive min
Amazon Smart Campaigns List other 59 49.6
Amazon Targeting 360 targeting_360 31 32.1
Amazon Campaign Drafts Auto Create other 25 31.4
Amazon Portfolio Budget Manager other 1 3.8
Amazon CPC Jobs other 1 2.4
Amazon Audience Report amc 1 2.3
Amazon Smart Campaigns other 1 1.0
Amazon Campaign Drafts Manual Keyword Create other 1 0.2

Actions

No actions recorded.

5 queries · scanned 23.21 MB · cost $0.000138 · 7.17s
Query 1 · 1 rows · 8.38 MB · $0.000050 · 1.42s
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('ashish.chaudhary1807@gmail.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('ashish.chaudhary1807@gmail.com')
GROUP BY i.email
Query 2 · 48 rows · 3.61 MB · $0.000022 · 1.55s
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('ashish.chaudhary1807@gmail.com')
    AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('ashish.chaudhary1807@gmail.com')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 2 rows · 5.92 MB · $0.000035 · 1.50s
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('ashish.chaudhary1807@gmail.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 8 rows · 5.07 MB · $0.000030 · 1.26s
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('ashish.chaudhary1807@gmail.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY report_page
ORDER BY active_min DESC
LIMIT 5000
Query 5 · 0 rows · 225.1 KB · $0.000001 · 1.45s
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('ashish.chaudhary1807@gmail.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC