shivam kapoor
shivam@hectorai.live
· Manager
· hectorai.live
· ← all users
Active hours
1.83
real mouse/keyboard time
Active days
5
Sessions
76
Brands touched
3
Profiles touched
3
Pages touched
7
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-06-17 | 25 | 32.1 | 0.53 |
| 2026-06-19 | 10 | 9.5 | 0.16 |
| 2026-06-22 | 16 | 28.9 | 0.48 |
| 2026-06-23 | 11 | 18.4 | 0.31 |
| 2026-06-24 | 14 | 20.8 | 0.35 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| Traya | shivam@hectorai.live | Manager | 15 | 30.5 |
| Kidology | shivam@hectorai.live | Manager | 13 | 29.2 |
| Vibrant Publishers, India | shivam@hectorai.live | Manager | 23 | 28.6 |
| Nestasia | shivam@hectorai.live | Manager | 9 | 10.4 |
| Cotton Trends | shivam@hectorai.live | Manager | 8 | 7.7 |
| Vibrant Publishers | shivam@hectorai.live | Manager | 3 | 1.4 |
| Ballcap Buddy Cap Washer | shivam@hectorai.live | Manager | 1 | 1.1 |
| Caresmith | shivam@hectorai.live | Manager | 2 | 0.4 |
| Ace Blend | shivam@hectorai.live | Manager | 1 | 0.2 |
| BLOWHOT | shivam@hectorai.live | Manager | 1 | 0.2 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Targeting 360 | targeting_360 | 20 | 24.9 |
| Amazon Categorization | other | 5 | 13.3 |
| Create Amazon Audience | amc | 6 | 10.9 |
| Amazon Master Overview | master_overview | 2 | 8.9 |
| Amazon Campaign Drafts Manual Keyword Create | other | 3 | 8.8 |
| Amazon CPC Jobs | other | 1 | 7.2 |
| Amazon Dayparting Performance | dayparting | 2 | 5.7 |
| Amazon Marketing Stream | targeting_360 | 6 | 4.4 |
| Amazon Text Categorization | other | 3 | 4.3 |
| Amazon Snapshot | snapshot | 4 | 3.6 |
| Amazon DSP Reports | dsp | 1 | 2.0 |
| Logout | other | 5 | 2.0 |
| Amazon Dayparting Scheduler | dayparting | 1 | 1.8 |
| Amazon Dayparting Schedule Log Budget | dayparting | 2 | 1.8 |
| Amazon Automated Budget Rule Details | rule_automation | 1 | 1.7 |
| Amazon Dayparting Schedule Log Bid | dayparting | 1 | 1.6 |
| Amazon Audience Instance | amc | 3 | 1.4 |
| Amazon Audience Report | amc | 2 | 1.2 |
| Amazon Ranking Configuration | ranking_360 | 1 | 1.1 |
| Amazon Smart Campaigns List | other | 1 | 1.1 |
| Amazon Automated Search Term Negation Rules | rule_automation | 1 | 0.8 |
| Plan Expired Amazon | other | 4 | 0.8 |
| Amazon Ranking Activity | ranking_360 | 1 | 0.4 |
Actions
| Category | Action | Actions | Entities |
|---|---|---|---|
| audience | audience_created | 1 | 1 |
5 queries · scanned 5.63 MB · cost $0.000034 · 6.79s
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('shivam@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('shivam@hectorai.live')
GROUP BY i.email
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('shivam@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('shivam@hectorai.live')
AND i.day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
ORDER BY i.day
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('shivam@hectorai.live')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_min DESC
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('shivam@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
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('shivam@hectorai.live')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC