Shashi Ranjan Singh

· Manager · californiadesignden.com · ← all users

Active hours
1.12
real mouse/keyboard time
Active days
6
Sessions
50
Brands touched
1
Profiles touched
1
Pages touched
1

Daily

Day Sessions Active min Active hours
2026-06-17 2 3.2 0.05
2026-06-18 28 34.7 0.58
2026-06-19 15 22.3 0.37
2026-06-22 2 1.9 0.03
2026-06-23 2 3.8 0.06
2026-06-24 1 1.4 0.02

Brands

BrandOwnerRoleSessionsActive min
CDD - US - Main shashi@californiadesignden.com Manager 50 67.2

Pages

PageReportSessionsActive min
Amazon Master Overview master_overview 3 10.4
Amazon Automated Bid Rules rule_automation 9 9.7
Amazon Dayparting Scheduler dayparting 6 9.4
Amazon Automated Placement Rules rule_automation 5 7.0
Amazon Dayparting Performance dayparting 5 6.3
Amazon Audience Report amc 1 5.4
Amazon Portfolio Budget Manager other 5 4.8
Amazon Automated Budget Rules rule_automation 1 4.3
Amazon Automated Placement Rule Details rule_automation 3 2.0
Create Amazon Automated Bid Rule rule_automation 2 1.8
Amazon Text Categorization other 2 1.8
Amazon Automated Bid Rule Details rule_automation 6 1.6
Amazon Targeting 360 targeting_360 1 1.5
Amazon Marketing Stream targeting_360 1 1.4

Actions

CategoryActionActionsEntities
scheduler dayparting_scheduler_status_change 18 18
scheduler dayparting_scheduler_status_switched 6 6
5 queries · scanned 5.57 MB · cost $0.000033 · 6.81s
Query 1 · 1 rows · 2.00 MB · $0.000012 · 1.46s
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('shashi@californiadesignden.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('shashi@californiadesignden.com')
GROUP BY i.email
Query 2 · 6 rows · 868.6 KB · $0.000005 · 1.34s
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('shashi@californiadesignden.com')
    AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('shashi@californiadesignden.com')
  AND i.day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
ORDER BY i.day
Query 3 · 1 rows · 1.42 MB · $0.000008 · 1.48s
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('shashi@californiadesignden.com')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 14 rows · 1.24 MB · $0.000007 · 1.32s
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('shashi@californiadesignden.com')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY report_page
ORDER BY active_min DESC
LIMIT 5000
Query 5 · 2 rows · 70.7 KB · $0.000000 · 1.22s
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('shashi@californiadesignden.com')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC