* change(api): follow the new strucutre for caards * change(api): update query to handle location and performance events * change(api): ch query updaets - monitors - sessions with 4xx .. * change(api): ch query updaets - monitors - table of errors * change(api): ch query updates - use created_at * change(api): ch query updates - fix the column name for errorId * change(api): ch query updates - heatmaps * change(api): ch query updates - funnels * change(api): ch query updates - user jounrey / path finder * change(api): ch query updates - user jounrey / path finder * change(api): ch query updates - heatmaps fix * refactor(chalice): changes * refactor(chalice): changes * refactor(chalice): changes --------- Co-authored-by: Taha Yassine Kraiem <tahayk2@gmail.com>
68 lines
2.3 KiB
Python
68 lines
2.3 KiB
Python
from typing import Union
|
|
|
|
import schemas
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def get_main_events_table(timestamp=0, platform="web"):
|
|
if platform == "web":
|
|
return "product_analytics.events"
|
|
else:
|
|
return "experimental.ios_events"
|
|
|
|
|
|
def get_main_sessions_table(timestamp=0):
|
|
return "experimental.sessions"
|
|
|
|
|
|
def get_user_favorite_sessions_table(timestamp=0):
|
|
return "experimental.user_favorite_sessions"
|
|
|
|
|
|
def get_user_viewed_sessions_table(timestamp=0):
|
|
return "experimental.user_viewed_sessions"
|
|
|
|
|
|
def get_user_viewed_errors_table(timestamp=0):
|
|
return "experimental.user_viewed_errors"
|
|
|
|
|
|
def get_main_js_errors_sessions_table(timestamp=0):
|
|
return get_main_events_table(timestamp=timestamp)
|
|
|
|
|
|
def get_event_type(event_type: Union[schemas.EventType, schemas.PerformanceEventType], platform="web"):
|
|
defs = {
|
|
schemas.EventType.CLICK: "CLICK",
|
|
schemas.EventType.INPUT: "INPUT",
|
|
schemas.EventType.LOCATION: "LOCATION",
|
|
schemas.PerformanceEventType.LOCATION_DOM_COMPLETE: "LOCATION",
|
|
schemas.PerformanceEventType.LOCATION_LARGEST_CONTENTFUL_PAINT_TIME: "LOCATION",
|
|
schemas.PerformanceEventType.LOCATION_TTFB: "LOCATION",
|
|
schemas.EventType.CUSTOM: "CUSTOM",
|
|
schemas.EventType.REQUEST: "REQUEST",
|
|
schemas.EventType.REQUEST_DETAILS: "REQUEST",
|
|
schemas.PerformanceEventType.FETCH_FAILED: "REQUEST",
|
|
schemas.GraphqlFilterType.GRAPHQL_NAME: "GRAPHQL",
|
|
schemas.EventType.STATE_ACTION: "STATEACTION",
|
|
schemas.EventType.ERROR: "ERROR",
|
|
schemas.PerformanceEventType.LOCATION_AVG_CPU_LOAD: 'PERFORMANCE',
|
|
schemas.PerformanceEventType.LOCATION_AVG_MEMORY_USAGE: 'PERFORMANCE',
|
|
schemas.FetchFilterType.FETCH_URL: 'REQUEST'
|
|
}
|
|
defs_mobile = {
|
|
schemas.EventType.CLICK_MOBILE: "TAP",
|
|
schemas.EventType.INPUT_MOBILE: "INPUT",
|
|
schemas.EventType.CUSTOM_MOBILE: "CUSTOM",
|
|
schemas.EventType.REQUEST_MOBILE: "REQUEST",
|
|
schemas.EventType.ERROR_MOBILE: "CRASH",
|
|
schemas.EventType.VIEW_MOBILE: "VIEW",
|
|
schemas.EventType.SWIPE_MOBILE: "SWIPE"
|
|
}
|
|
if platform != "web" and event_type in defs_mobile:
|
|
return defs_mobile.get(event_type)
|
|
if event_type not in defs:
|
|
raise Exception(f"unsupported EventType:{event_type}")
|
|
return defs.get(event_type)
|