Atul Kanojiya

· Manager · aceblend.com · ← all users

Active hours
4.19
real mouse/keyboard time
Active days
18
Sessions
942
Brands touched
1
Profiles touched
1
Pages touched
5

Daily

Day Sessions Active min Active hours
2026-06-05 24 28.5 0.47
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 3.1 0.05
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-06 29 0.7 0.01
2026-06-07 9 8.2 0.14
2026-06-08 28 46.6 0.78
2026-06-09 18 22.5 0.37
2026-06-10 24 21.4 0.36
2026-06-11 12 12.2 0.20
2026-06-12 8 7.6 0.13
2026-06-13 4 3.5 0.06
2026-06-14 3 3.5 0.06
2026-06-15 22 17.6 0.29
2026-06-16 22 12.5 0.21
2026-06-17 10 12.1 0.20
2026-06-18 6 8.5 0.14
2026-06-22 9 7.6 0.13
2026-06-23 5 7.6 0.13
2026-06-24 3 1.1 0.02
2026-06-25 10 9.4 0.16

Brands

BrandOwnerRoleSessionsActive min
Ace Blend atul.kanojiya@aceblend.com Manager 246 251.2

Pages

PageReportSessionsActive min
Amazon Snapshot snapshot 138 122.3
Amazon Targeting 360 targeting_360 38 49.1
Amazon Master Overview master_overview 20 34.3
Amazon CPC Jobs other 27 21.3
Amazon Marketing Stream targeting_360 6 6.8
Amazon Smart Campaigns List other 5 4.9
Amazon Categorization other 2 3.4
Amazon Ranking Dashboard ranking_360 1 3.2
Amazon User Management other 1 1.8
Amazon Campaign Drafts Auto Create other 1 1.5
Amazon Targeting - Asin Details targeting_360 1 0.8
Profile other 2 0.7
Edit Profile Verify Whatsapp other 2 0.4
Amazon DSP Request dsp 1 0.4
Logout other 1 0.2

Actions

No actions recorded.

5 queries · scanned 23.31 MB · cost $0.000139 · 6.61s
Query 1 · 1 rows · 8.42 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('atul.kanojiya@aceblend.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('atul.kanojiya@aceblend.com')
GROUP BY i.email
Query 2 · 42 rows · 3.63 MB · $0.000022 · 1.30s
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('atul.kanojiya@aceblend.com')
    AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('atul.kanojiya@aceblend.com')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 1 rows · 5.95 MB · $0.000035 · 1.26s
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('atul.kanojiya@aceblend.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 15 rows · 5.09 MB · $0.000030 · 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('atul.kanojiya@aceblend.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 · 226.1 KB · $0.000001 · 1.31s
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('atul.kanojiya@aceblend.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC