Kkrishyam
kkrishyam@gmail.com
· Manager
· gmail.com
· ← all users
Active hours
6.38
real mouse/keyboard time
Active days
18
Sessions
352
Brands touched
1
Profiles touched
1
Pages touched
2
Daily
| Day | Sessions | Active min | Active hours |
|---|---|---|---|
| 2026-05-26 | 5 | 7.3 | 0.12 |
| 2026-05-27 | 13 | 14.7 | 0.24 |
| 2026-06-04 | 9 | 8.7 | 0.15 |
| 2026-06-06 | 9 | 10.7 | 0.18 |
| 2026-06-08 | 49 | 71.0 | 1.18 |
| 2026-06-09 | 2 | 4.5 | 0.07 |
| 2026-06-11 | 52 | 52.7 | 0.88 |
| 2026-06-12 | 30 | 58.3 | 0.97 |
| 2026-06-15 | 16 | 16.4 | 0.27 |
| 2026-06-16 | 45 | 40.6 | 0.68 |
| 2026-06-17 | 30 | 24.4 | 0.41 |
| 2026-06-18 | 7 | 14.4 | 0.24 |
| 2026-06-19 | 7 | 4.8 | 0.08 |
| 2026-06-20 | 11 | 4.9 | 0.08 |
| 2026-06-22 | 31 | 20.5 | 0.34 |
| 2026-06-23 | 16 | 9.8 | 0.16 |
| 2026-06-24 | 3 | 3.5 | 0.06 |
| 2026-06-25 | 17 | 15.4 | 0.26 |
Brands
| Brand | Owner | Role | Sessions | Active min |
|---|---|---|---|---|
| SCORPIOO | kkrishyam@gmail.com | Manager | 335 | 364.3 |
| KRI SHYAM | kkrishyam@gmail.com | Manager | 17 | 18.4 |
Pages
| Page | Report | Sessions | Active min |
|---|---|---|---|
| Amazon Targeting 360 | targeting_360 | 236 | 274.8 |
| Amazon Master Overview | master_overview | 59 | 45.6 |
| Amazon Automated Status Rules | rule_automation | 10 | 15.2 |
| Flipkart Master Overview | master_overview | 12 | 11.9 |
| Amazon Campaign Drafts Manual Keyword Create | other | 4 | 9.2 |
| Status | other | 3 | 5.3 |
| Amazon Automated Searchterm-harvesting Rule Details | rule_automation | 2 | 5.0 |
| Amazon Automated Budget Rules | rule_automation | 2 | 4.5 |
| Amazon Smart Campaigns List | other | 6 | 4.1 |
| Create Amazon Automated Status Rule | rule_automation | 8 | 3.5 |
| Amazon Campaign Drafts Auto Create | other | 3 | 1.4 |
| Flipkart Targeting 360 | targeting_360 | 1 | 0.8 |
| Placement | other | 1 | 0.4 |
| Amazon Automated Search Term Harvesting Rules | rule_automation | 1 | 0.3 |
| Amazon Automated Status Rule Details | rule_automation | 2 | 0.3 |
| Amazon Automated Status Rule Logs | rule_automation | 1 | 0.3 |
| Amazon Search Query Performance | targeting_360 | 1 | 0.3 |
Actions
| Category | Action | Actions | Entities |
|---|---|---|---|
| keyword | keyword_added | 17 | 17 |
| bid | keyword_bid_updated | 15 | 15 |
| status | keyword_status_changed | 8 | 8 |
| budget | campaign_budget_updated | 1 | 1 |
| bid | target_bid_updated | 1 | 1 |
5 queries · scanned 23.72 MB · cost $0.000141 · 6.94s
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('kkrishyam@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('kkrishyam@gmail.com')
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('kkrishyam@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('kkrishyam@gmail.com')
AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
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('kkrishyam@gmail.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
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('kkrishyam@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
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('kkrishyam@gmail.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC