Shaik Arif

· Manager · hectorai.live · ← all users

Active hours
2.74
real mouse/keyboard time
Active days
6
Sessions
85
Brands touched
1
Profiles touched
1
Pages touched
3

Daily

Day Sessions Active min Active hours
2026-06-17 6 3.0 0.05
2026-06-18 16 53.9 0.90
2026-06-19 11 11.3 0.19
2026-06-22 11 12.0 0.20
2026-06-23 15 33.0 0.55
2026-06-24 26 51.2 0.85

Brands

BrandOwnerRoleSessionsActive min
Little Rituals arif@hectorai.live Manager 15 47.3
S. R Retails arif@hectorai.live Manager 21 42.0
SRGGINC. arif@hectorai.live Manager 6 30.6
Stoa Paris arif@hectorai.live Manager 19 22.2
BIBA arif@hectorai.live Manager 17 18.6
Ruhe arif@hectorai.live Manager 5 2.7
Asian Shoes arif@hectorai.live Manager 1 0.6
Wonderchef arif@hectorai.live Manager 1 0.5

Pages

PageReportSessionsActive min
Amazon Targeting 360 targeting_360 29 30.9
Amazon Smart Campaigns List other 3 30.7
Amazon Dayparting Scheduler dayparting 1 14.9
Create Amazon Automated Budget Rule rule_automation 4 12.7
Amazon Automated Bid Rules rule_automation 11 12.4
Create Amazon Automated Searchterm-harvesting Rule rule_automation 1 9.6
Amazon Automated Master Rules rule_automation 4 9.5
Amazon Insights amc 2 8.5
Create Amazon Automated Placement Rule rule_automation 1 8.0
Amazon Dayparting Performance dayparting 8 5.8
Amazon Text Categorization other 6 4.0
Amazon Portfolio Budget Manager other 1 3.2
Amazon Automated Status Rule Logs rule_automation 1 2.6
Brands Dashboard other 2 2.5
Amazon Campaign Drafts Manual Keyword Create other 4 2.4
Amazon Automated Budget Rule Logs rule_automation 2 2.0
Amazon Automated Budget Rules rule_automation 1 1.8
Amazon Snapshot snapshot 2 1.8
Amazon Automated Bid Rule Details rule_automation 2 1.3

Actions

No actions recorded.

5 queries · scanned 5.52 MB · cost $0.000033 · 6.80s
Query 1 · 1 rows · 1.98 MB · $0.000012 · 1.31s
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('arif@hectorai.live')
  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('arif@hectorai.live')
GROUP BY i.email
Query 2 · 6 rows · 860.3 KB · $0.000005 · 1.57s
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('arif@hectorai.live')
    AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('arif@hectorai.live')
  AND i.day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
ORDER BY i.day
Query 3 · 8 rows · 1.41 MB · $0.000008 · 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('arif@hectorai.live')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 19 rows · 1.23 MB · $0.000007 · 1.38s
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('arif@hectorai.live')
  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 · 0 rows · 70.7 KB · $0.000000 · 1.27s
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('arif@hectorai.live')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC