Manoj Y N

· Executive · californiadesignden.com · ← all users

Active hours
12.25
real mouse/keyboard time
Active days
23
Sessions
465
Brands touched
1
Profiles touched
1
Pages touched
2

Daily

Day Sessions Active min Active hours
2026-05-26 3 5.1 0.09
2026-05-27 7 14.3 0.24
2026-05-28 36 61.1 1.02
2026-05-29 13 40.4 0.67
2026-06-01 48 70.7 1.18
2026-06-02 59 103.2 1.72
2026-06-03 25 38.1 0.64
2026-06-04 52 96.4 1.61
2026-06-05 1 0.9 0.01
2026-06-08 27 19.7 0.33
2026-06-09 3 5.0 0.08
2026-06-10 40 99.1 1.65
2026-06-11 3 3.1 0.05
2026-06-12 1 1.3 0.02
2026-06-15 43 51.0 0.85
2026-06-16 42 45.5 0.76
2026-06-17 13 19.4 0.32
2026-06-18 6 13.6 0.23
2026-06-19 22 29.7 0.49
2026-06-22 7 9.0 0.15
2026-06-23 8 4.7 0.08
2026-06-24 3 2.2 0.04
2026-06-25 3 1.4 0.02

Brands

BrandOwnerRoleSessionsActive min
California Design Den manoj@californiadesignden.com Manager 462 729.6
CDD - US - Main manoj@californiadesignden.com Executive 3 5.1

Pages

PageReportSessionsActive min
Amazon Dayparting Performance dayparting 142 262.1
Amazon Master Overview master_overview 172 201.4
Amazon Dayparting Scheduler dayparting 30 89.5
Create Amazon Automated Bid Rule rule_automation 33 45.3
Create Amazon Audience amc 24 35.5
Amazon Audience Report amc 25 28.5
Amazon Targeting 360 targeting_360 9 23.9
Amazon Automated Bid Rules rule_automation 10 20.1
Amazon Text Categorization other 13 17.3
Amazon Automated Budget Rules rule_automation 1 4.0
AMC Amazon Tentpole Report amc 2 2.2
Logout other 1 2.0
DSP dsp 1 1.4
Amazon Marketing Stream targeting_360 2 1.4

Actions

CategoryActionActionsEntities
scheduler dayparting_scheduler_status_switched 20 20
audience audience_created 7 7
scheduler dayparting_scheduler_status_change 4 4
5 queries · scanned 23.69 MB · cost $0.000141 · 7.22s
Query 1 · 1 rows · 8.56 MB · $0.000051 · 1.78s
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('manoj@californiadesignden.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('manoj@californiadesignden.com')
GROUP BY i.email
Query 2 · 23 rows · 3.69 MB · $0.000022 · 1.35s
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('manoj@californiadesignden.com')
    AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('manoj@californiadesignden.com')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 2 rows · 6.04 MB · $0.000036 · 1.32s
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('manoj@californiadesignden.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 14 rows · 5.17 MB · $0.000031 · 1.36s
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('manoj@californiadesignden.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 · 3 rows · 226.9 KB · $0.000001 · 1.41s
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('manoj@californiadesignden.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC