Aayush Goel

· Admin · gmail.com · ← all users

Active hours
3.45
real mouse/keyboard time
Active days
12
Sessions
161
Brands touched
1
Profiles touched
1
Pages touched
4

Daily

Day Sessions Active min Active hours
2026-05-26 19 9.2 0.15
2026-05-29 11 12.4 0.21
2026-06-01 8 7.3 0.12
2026-06-04 25 35.7 0.59
2026-06-05 5 5.7 0.10
2026-06-09 2 0.8 0.01
2026-06-10 34 38.9 0.65
2026-06-11 22 40.9 0.68
2026-06-12 1 1.2 0.02
2026-06-13 16 21.9 0.36
2026-06-15 6 11.6 0.19
2026-06-22 12 21.6 0.36

Brands

BrandOwnerRoleSessionsActive min
Gulika Apparel gulikaapparel1@gmail.com Admin 155 197.4
Gulika Apparel Pvt Ltd gulikaapparel1@gmail.com Admin 4 7.7
Gulika apparel private limited - ads gulikaapparel1@gmail.com Admin 1 1.9
gulika gulikaapparel1@gmail.com Admin 1 0.2

Pages

PageReportSessionsActive min
Amazon Automated Placement Rules rule_automation 38 53.8
Amazon Automated Bid Rules rule_automation 45 42.4
Amazon Dayparting Scheduler dayparting 18 39.7
Amazon Dayparting Performance dayparting 17 29.5
Create Amazon Automated Placement Rule rule_automation 7 8.3
Flipkart Master Overview master_overview 3 6.1
Amazon Automated Bid Rule Details rule_automation 10 5.6
Amazon Master Overview master_overview 1 4.4
Amazon Automated Status Rules rule_automation 3 3.3
Amazon Automated Bid Rule Logs rule_automation 2 2.9
Amazon Automated Placement Rule Logs rule_automation 2 2.2
Flipkart Snapshot snapshot 1 2.1
Amazon Targeting 360 targeting_360 3 1.6
Amazon Automated Placement Rule Details rule_automation 6 1.6
Placement other 1 1.4
Create Amazon Automated Status Rule rule_automation 1 0.9
Amazon Automated Search Term Negation Rules rule_automation 1 0.9
Amazon Automated Status Rule Details rule_automation 1 0.4
Blinkit Text Categorization other 1 0.2

Actions

CategoryActionActionsEntities
rule rule_based_updated 60 60
rule rule_based_status_change 36 36
scheduler dayparting_scheduler_status_switched 27 27
scheduler dayparting_scheduler_updated 24 24
scheduler dayparting_scheduler_status_change 22 22
rule rule_based_created 11 11
scheduler dayparting_scheduler_created 5 5
5 queries · scanned 23.17 MB · cost $0.000138 · 7.28s
Query 1 · 1 rows · 8.37 MB · $0.000050 · 1.61s
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('gulikaapparel1@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('gulikaapparel1@gmail.com')
GROUP BY i.email
Query 2 · 12 rows · 3.61 MB · $0.000021 · 1.50s
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('gulikaapparel1@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('gulikaapparel1@gmail.com')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 4 rows · 5.91 MB · $0.000035 · 1.29s
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('gulikaapparel1@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 · 19 rows · 5.06 MB · $0.000030 · 1.31s
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('gulikaapparel1@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 · 7 rows · 224.8 KB · $0.000001 · 1.57s
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('gulikaapparel1@gmail.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC