Kundan Singh

· Manager · rvorganica.com · ← all users

Active hours
6.14
real mouse/keyboard time
Active days
18
Sessions
1,064
Brands touched
1
Profiles touched
1
Pages touched
9

Daily

Day Sessions Active min Active hours
2026-05-27 2 2.0 0.03
2026-06-03 4 3.4 0.06
2026-06-05 25 17.4 0.29
2026-06-06 9 7.9 0.13
2026-06-08 13 14.1 0.23
2026-06-09 4 1.7 0.03
2026-06-10 28 29.5 0.49
2026-06-11 13 5.5 0.09
2026-06-12 23 25.6 0.43
2026-06-13 42 85.4 1.42
2026-06-14 15 24.8 0.41
2026-06-15 7 7.3 0.12
2026-06-16 38 54.1 0.90
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 3.1 0.05
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-17 30 0.2 0.00
2026-06-18 1 0.4 0.01
2026-06-23 51 50.5 0.84
2026-06-24 3 5.0 0.08
2026-06-25 36 25.6 0.43

Brands

BrandOwnerRoleSessionsActive min
AVD ORGANICS kundan@rvorganica.com Manager 177 214.1
CARNO CALM kundan@rvorganica.com Manager 135 132.1
Your Prime World kundan@rvorganica.com Admin 28 19.1
AVD Organics UAE kundan@rvorganica.com Manager 4 3.1

Pages

PageReportSessionsActive min
Amazon Targeting 360 targeting_360 186 201.1
Amazon Automated Budget Rules rule_automation 41 43.6
Amazon Automated Search Term Negation Rules rule_automation 18 25.5
Amazon Campaign Drafts Keyword Harvesting Create other 3 17.9
Amazon Snapshot snapshot 13 12.8
Amazon Smart Campaigns List other 30 11.0
Amazon Automated Placement Rules rule_automation 4 8.2
Create Amazon Automated Budget Rule rule_automation 7 8.1
Amazon Automated Master Rules rule_automation 9 7.6
Create Amazon Automated Searchterm-negation Rule rule_automation 3 6.4
Amazon Automated Bid Rules rule_automation 7 6.3
Amazon Dayparting Scheduler dayparting 6 5.5
Amazon Dayparting Performance dayparting 2 3.5
Amazon Automated Status Rules rule_automation 3 3.1
Amazon Master Overview master_overview 1 2.9
Create Amazon Automated Status Rule rule_automation 1 1.0
Create Amazon Automated Bid Rule rule_automation 2 0.8
Amazon Search Query Performance targeting_360 1 0.7
Amazon Dayparting Schedule Log Placement 6a272a2f855159b1d7f587c6 Revert dayparting 1 0.6
Amazon Targeting - Asin Details targeting_360 1 0.4
Amazon Dayparting Schedule Log Placement 6a272a2f855159b1d7f587ce Update dayparting 2 0.4
Amazon Portfolio Budget Manager other 1 0.4
Amazon Automated Searchterm-harvesting Rule Logs - Notification rule_automation 1 0.3
Amazon Automated Searchterm-negation Rule Details rule_automation 1 0.3

Actions

CategoryActionActionsEntities
rule rule_based_status_change 21 21
scheduler dayparting_scheduler_status_switched 4 4
bid keyword_bid_updated 4 3,600
budget campaign_budget_updated 4 101
rule rule_based_created 2 2
rule rule_based_updated 2 2
bid campaign_placement_bid_updated 1 40
5 queries · scanned 23.27 MB · cost $0.000139 · 6.75s
Query 1 · 1 rows · 8.41 MB · $0.000050 · 1.40s
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('kundan@rvorganica.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('kundan@rvorganica.com')
GROUP BY i.email
Query 2 · 42 rows · 3.62 MB · $0.000022 · 1.36s
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('kundan@rvorganica.com')
    AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('kundan@rvorganica.com')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 4 rows · 5.94 MB · $0.000035 · 1.31s
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('kundan@rvorganica.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 24 rows · 5.08 MB · $0.000030 · 1.41s
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('kundan@rvorganica.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 · 7 rows · 225.4 KB · $0.000001 · 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('kundan@rvorganica.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC