Mekdad Marey

· Manager · primeup.de · ← all users

Active hours
1.58
real mouse/keyboard time
Active days
7
Sessions
167
Brands touched
2
Profiles touched
2
Pages touched
3

Daily

Day Sessions Active min Active hours
2026-06-17 1 0.9 0.01
2026-06-18 2 1.0 0.02
2026-06-19 30 21.1 0.35
2026-06-21 68 27.1 0.45
2026-06-22 8 7.0 0.12
2026-06-23 9 8.2 0.14
2026-06-24 49 29.9 0.50

Brands

BrandOwnerRoleSessionsActive min
Westmark Shop m.marey@primeup.de Manager 57 28.2
Westmark GmbH (Retail Invoice) (ES) m.marey@primeup.de Manager 43 26.0
Nanoprotect m.marey@primeup.de Manager 24 16.6
Westmark FR m.marey@primeup.de Manager 18 12.4
Westmark GmbH - NL m.marey@primeup.de Manager 10 4.0
Westmark GmbH m.marey@primeup.de Manager 4 2.7
SinoPlaSan AG m.marey@primeup.de Manager 3 2.1
Shoes for Crews m.marey@primeup.de Manager 6 1.8
Westmark GmbH (Retail Invoice) m.marey@primeup.de Manager 2 1.1

Pages

PageReportSessionsActive min
Amazon Automated Bid Rules rule_automation 104 51.3
Amazon Portfolio Budget Manager other 10 7.2
Amazon Automated Budget Rules rule_automation 9 7.2
Amazon Targeting 360 targeting_360 12 7.0
Create Amazon Automated Searchterm-harvesting Rule rule_automation 10 6.9
Amazon Automated Bid Rule Logs rule_automation 5 4.4
Amazon Automated Placement Rules rule_automation 1 2.7
Create Amazon Automated Budget Rule rule_automation 2 2.4
Amazon Automated Searchterm-harvesting Rule Details rule_automation 5 1.6
Amazon Master Overview master_overview 1 1.5
Amazon Automated Budget Rule Details rule_automation 2 1.2
Amazon Automated Bid Rule Details rule_automation 3 1.1
Amazon Text Categorization other 1 0.2
Amazon CPC Jobs other 1 0.2
Amazon Automated Search Term Harvesting Rules rule_automation 1 0.2

Actions

No actions recorded.

5 queries · scanned 5.62 MB · cost $0.000033 · 7.11s
Query 1 · 1 rows · 2.01 MB · $0.000012 · 1.57s
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('m.marey@primeup.de')
  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('m.marey@primeup.de')
GROUP BY i.email
Query 2 · 7 rows · 877.8 KB · $0.000005 · 1.30s
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('m.marey@primeup.de')
    AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
  GROUP BY day
) s USING (day)
WHERE LOWER(i.email) = LOWER('m.marey@primeup.de')
  AND i.day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
ORDER BY i.day
Query 3 · 9 rows · 1.43 MB · $0.000009 · 1.40s
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('m.marey@primeup.de')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_min DESC
Query 4 · 15 rows · 1.24 MB · $0.000007 · 1.50s
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('m.marey@primeup.de')
  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.34s
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('m.marey@primeup.de')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY action_category, action_type
ORDER BY actions DESC