Oleg Kaplienko

· Manager · imaree.com · ← all users

Active hours
3.12
real mouse/keyboard time
Active days
16
Sessions
236
Brands touched
1
Profiles touched
1
Pages touched
2

Daily

Day Sessions Active min Active hours
2026-05-26 15 4.7 0.08
2026-05-27 62 70.7 1.18
2026-05-28 8 4.8 0.08
2026-06-01 2 0.3 0.01
2026-06-02 29 15.2 0.25
2026-06-03 4 0.9 0.02
2026-06-04 15 7.5 0.12
2026-06-05 1 0.2 0.00
2026-06-10 6 3.2 0.05
2026-06-11 2 1.5 0.02
2026-06-12 2 0.5 0.01
2026-06-15 15 6.7 0.11
2026-06-17 15 4.9 0.08
2026-06-19 53 57.4 0.96
2026-06-22 6 7.8 0.13
2026-06-23 1 1.1 0.02

Brands

BrandOwnerRoleSessionsActive min
Premium Nutrition INC oleg.kaplienko@imaree.com Manager 236 187.3

Pages

PageReportSessionsActive min
Amazon Campaign Drafts Keyword Harvesting Create other 50 58.9
Amazon Dayparting Performance dayparting 40 49.9
Amazon Dayparting Scheduler dayparting 19 23.3
Amazon Text Categorization other 56 19.6
Amazon Targeting 360 targeting_360 27 14.3
Amazon Automated Placement Rules rule_automation 21 8.2
Amazon Smart Campaigns List other 9 6.4
Amazon Automated Placement Rule Details rule_automation 8 3.2
Amazon Audience Report amc 4 2.1
Amazon Automated Master Rules rule_automation 1 1.0
Amazon View Audience amc 1 0.5

Actions

CategoryActionActionsEntities
scheduler dayparting_scheduler_status_change 3 3
scheduler dayparting_scheduler_status_switched 3 3
5 queries · scanned 23.74 MB · cost $0.000141 · 7.08s
Query 1 · 1 rows · 8.58 MB · $0.000051 · 1.49s
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('oleg.kaplienko@imaree.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('oleg.kaplienko@imaree.com')
GROUP BY i.email
Query 2 · 16 rows · 3.70 MB · $0.000022 · 1.55s
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('oleg.kaplienko@imaree.com')
    AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('oleg.kaplienko@imaree.com')
  AND i.day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
ORDER BY i.day
Query 3 · 1 rows · 6.05 MB · $0.000036 · 1.29s
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('oleg.kaplienko@imaree.com')
  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.18 MB · $0.000031 · 1.43s
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('oleg.kaplienko@imaree.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 · 2 rows · 226.9 KB · $0.000001 · 1.33s
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('oleg.kaplienko@imaree.com')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY action_category, action_type
ORDER BY actions DESC