Amit Pandey

· Manager · neondigital.media · ← all users

Active hours
2.75
real mouse/keyboard time
Active days
21
Sessions
1,463
Brands touched
1
Profiles touched
1
Pages touched
1

Daily

Day Sessions Active min Active hours
2026-05-27 2 0.5 0.01
2026-05-28 2 1.2 0.02
2026-05-30 2 2.1 0.04
2026-06-01 20 21.9 0.36
2026-06-03 2 0.6 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 0.3 0.01
2026-06-04 27 1.8 0.03
2026-06-05 3 2.0 0.03
2026-06-08 18 25.6 0.43
2026-06-09 3 3.0 0.05
2026-06-11 7 3.3 0.05
2026-06-12 1 0.2 0.00
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 2.3 0.04
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-13 26 0.6 0.01
2026-06-14 10 10.2 0.17
2026-06-15 32 29.6 0.49
2026-06-16 4 12.2 0.20
2026-06-17 2 1.4 0.02
2026-06-18 1 0.3 0.01
2026-06-22 16 9.7 0.16
2026-06-23 8 9.9 0.17
2026-06-24 3 3.1 0.05
2026-06-25 2 2.5 0.04

Brands

BrandOwnerRoleSessionsActive min
Parul Garg Beauty amit@neondigital.media Manager 150 119.3
Parul garg amit@neondigital.media Manager 13 18.0
Parul Garg Beauty - seller amit@neondigital.media Manager 6 12.5
NUA amit@neondigital.media Agency 10 7.7
PARBHIE BEAUTY PRIVATE LIMITED_self-serve amit@neondigital.media Manager 10 5.4
Arrow_1 amit@neondigital.media Manager 1 1.5
Hindware Limited_PO amit@neondigital.media Admin 1 0.9

Pages

PageReportSessionsActive min
Amazon Targeting 360 targeting_360 131 109.0
Blinkit Targeting 360 targeting_360 13 18.0
Flipkart Targeting 360 targeting_360 7 13.4
Logout other 13 8.4
Myntra Targeting 360 targeting_360 10 5.4
Amazon Snapshot snapshot 6 4.2
AMC Amazon First Party Data amc 2 2.7
Amazon Text Categorization other 4 1.5
Amazon DSP Request dsp 2 1.2
AMC Amazon Audience Instance Register Create amc 2 0.8
Getting Started other 1 0.7

Actions

No actions recorded.

5 queries · scanned 23.36 MB · cost $0.000139 · 6.90s
Query 1 · 1 rows · 8.44 MB · $0.000050 · 1.53s
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('amit@neondigital.media')
  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('amit@neondigital.media')
GROUP BY i.email
Query 2 · 69 rows · 3.64 MB · $0.000022 · 1.38s
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('amit@neondigital.media')
    AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('amit@neondigital.media')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 7 rows · 5.96 MB · $0.000036 · 1.37s
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('amit@neondigital.media')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 11 rows · 5.10 MB · $0.000030 · 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('amit@neondigital.media')
  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.4 KB · $0.000001 · 1.25s
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('amit@neondigital.media')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC