* feat(DB): rearranged queries feat(DB): ready for v1.15.0 * refactor(chalice): upgraded dependencies refactor(crons): upgraded dependencies refactor(alerts): upgraded dependencies * fix(chalice): return error when updating inexistant webhook * feat(chalice): fixed delete webhook response * feat(chalice): limit webhooks name length * feat(chalice): upgraded dependencies feat(alerts): upgraded dependencies feat(crons): upgraded dependencies * fix(chalice): remove urllib3 dependency * feat(chalice): remove FOSS to pydantic v2 * fix(chalice): freeze urllib3 to not have conflicts between boto3 and requests * feat(chalice): refactoring schema in progress * feat(chalice): refactoring schema in progress * feat(chalice): refactoring schema in progress * feat(chalice): refactoring schema in progress feat(chalice): upgraded dependencies * feat(chalice): refactored schema * fix(chalice): pull rebase dev * feat(DB): transfer size support * feat(chalice): support service account * feat(chalice): support service account * fix(chalice): fixed refactored PayloadSchema-name * feat(chalice): path analysis * feat(chalice): support service account 1/2 * feat(DB): timezone support * feat(chalice): upgraded dependencies feat(alerts): upgraded dependencies feat(crons): upgraded dependencies feat(assist): upgraded dependencies feat(sourcemaps): upgraded dependencies * feat(chalice): path analysis schema changes * feat(chalice): path analysis query change * feat(chalice): path analysis query change * feat(chalice): ios replay support * feat(chalice): ios replay support * feat(chalice): path analysis changes * feat(chalice): upgraded dependencies * feat(chalice): simple hide minor paths * feat(chalice): path analysis density * feat(chalice): session's replay ios events * feat(chalice): fixed typo * feat(chalice): support project's platform * feat(DB): support project's platform * feat(chalice): path analysis EE in progress * feat(chalice): project's platform API * feat(chalice): fixed create project * feat(chalice): EE path analysis in progress * feat(chalice): EE path analysis refactor(chalice): support specific database name for clickhouse-client * feat(chalice): upgraded dependencies feat(chalice): path analysis specific event type for startPoint feat(chalice): path analysis specific event type for endPoint feat(chalice): path analysis specific event type for exclude * refactoring(chalice): changed IOS click event type
718 lines
39 KiB
Python
718 lines
39 KiB
Python
import json
|
|
|
|
from decouple import config
|
|
|
|
import schemas
|
|
from chalicelib.core import sourcemaps
|
|
from chalicelib.utils import errors_helper
|
|
from chalicelib.utils import pg_client, helper
|
|
from chalicelib.utils.TimeUTC import TimeUTC
|
|
from chalicelib.utils.metrics_helper import __get_step_size
|
|
|
|
if config("EXP_SESSIONS_SEARCH", cast=bool, default=False):
|
|
from chalicelib.core import sessions_legacy as sessions
|
|
else:
|
|
from chalicelib.core import sessions
|
|
|
|
|
|
def get(error_id, family=False):
|
|
if family:
|
|
return get_batch([error_id])
|
|
with pg_client.PostgresClient() as cur:
|
|
query = cur.mogrify(
|
|
"SELECT * FROM events.errors AS e INNER JOIN public.errors AS re USING(error_id) WHERE error_id = %(error_id)s;",
|
|
{"error_id": error_id})
|
|
cur.execute(query=query)
|
|
result = cur.fetchone()
|
|
if result is not None:
|
|
result["stacktrace_parsed_at"] = TimeUTC.datetime_to_timestamp(result["stacktrace_parsed_at"])
|
|
return helper.dict_to_camel_case(result)
|
|
|
|
|
|
def get_batch(error_ids):
|
|
if len(error_ids) == 0:
|
|
return []
|
|
with pg_client.PostgresClient() as cur:
|
|
query = cur.mogrify(
|
|
"""
|
|
WITH RECURSIVE error_family AS (
|
|
SELECT *
|
|
FROM public.errors
|
|
WHERE error_id IN %(error_ids)s
|
|
UNION
|
|
SELECT child_errors.*
|
|
FROM public.errors AS child_errors
|
|
INNER JOIN error_family ON error_family.error_id = child_errors.parent_error_id OR error_family.parent_error_id = child_errors.error_id
|
|
)
|
|
SELECT *
|
|
FROM error_family;""",
|
|
{"error_ids": tuple(error_ids)})
|
|
cur.execute(query=query)
|
|
errors = cur.fetchall()
|
|
for e in errors:
|
|
e["stacktrace_parsed_at"] = TimeUTC.datetime_to_timestamp(e["stacktrace_parsed_at"])
|
|
return helper.list_to_camel_case(errors)
|
|
|
|
|
|
def __flatten_sort_key_count_version(data, merge_nested=False):
|
|
if data is None:
|
|
return []
|
|
return sorted(
|
|
[
|
|
{
|
|
"name": f'{o["name"]}@{v["version"]}',
|
|
"count": v["count"]
|
|
} for o in data for v in o["partition"]
|
|
],
|
|
key=lambda o: o["count"], reverse=True) if merge_nested else \
|
|
[
|
|
{
|
|
"name": o["name"],
|
|
"count": o["count"],
|
|
} for o in data
|
|
]
|
|
|
|
|
|
def __process_tags(row):
|
|
return [
|
|
{"name": "browser", "partitions": __flatten_sort_key_count_version(data=row.get("browsers_partition"))},
|
|
{"name": "browser.ver",
|
|
"partitions": __flatten_sort_key_count_version(data=row.pop("browsers_partition"), merge_nested=True)},
|
|
{"name": "OS", "partitions": __flatten_sort_key_count_version(data=row.get("os_partition"))},
|
|
{"name": "OS.ver",
|
|
"partitions": __flatten_sort_key_count_version(data=row.pop("os_partition"), merge_nested=True)},
|
|
{"name": "device.family", "partitions": __flatten_sort_key_count_version(data=row.get("device_partition"))},
|
|
{"name": "device",
|
|
"partitions": __flatten_sort_key_count_version(data=row.pop("device_partition"), merge_nested=True)},
|
|
{"name": "country", "partitions": row.pop("country_partition")}
|
|
]
|
|
|
|
|
|
def get_details(project_id, error_id, user_id, **data):
|
|
pg_sub_query24 = __get_basic_constraints(time_constraint=False, chart=True, step_size_name="step_size24")
|
|
pg_sub_query24.append("error_id = %(error_id)s")
|
|
pg_sub_query30_session = __get_basic_constraints(time_constraint=True, chart=False,
|
|
startTime_arg_name="startDate30",
|
|
endTime_arg_name="endDate30", project_key="sessions.project_id")
|
|
pg_sub_query30_session.append("sessions.start_ts >= %(startDate30)s")
|
|
pg_sub_query30_session.append("sessions.start_ts <= %(endDate30)s")
|
|
pg_sub_query30_session.append("error_id = %(error_id)s")
|
|
pg_sub_query30_err = __get_basic_constraints(time_constraint=True, chart=False, startTime_arg_name="startDate30",
|
|
endTime_arg_name="endDate30", project_key="errors.project_id")
|
|
pg_sub_query30_err.append("sessions.project_id = %(project_id)s")
|
|
pg_sub_query30_err.append("sessions.start_ts >= %(startDate30)s")
|
|
pg_sub_query30_err.append("sessions.start_ts <= %(endDate30)s")
|
|
pg_sub_query30_err.append("error_id = %(error_id)s")
|
|
pg_sub_query30_err.append("source ='js_exception'")
|
|
pg_sub_query30 = __get_basic_constraints(time_constraint=False, chart=True, step_size_name="step_size30")
|
|
pg_sub_query30.append("error_id = %(error_id)s")
|
|
pg_basic_query = __get_basic_constraints(time_constraint=False)
|
|
pg_basic_query.append("error_id = %(error_id)s")
|
|
with pg_client.PostgresClient() as cur:
|
|
data["startDate24"] = TimeUTC.now(-1)
|
|
data["endDate24"] = TimeUTC.now()
|
|
data["startDate30"] = TimeUTC.now(-30)
|
|
data["endDate30"] = TimeUTC.now()
|
|
density24 = int(data.get("density24", 24))
|
|
step_size24 = __get_step_size(data["startDate24"], data["endDate24"], density24, factor=1)
|
|
density30 = int(data.get("density30", 30))
|
|
step_size30 = __get_step_size(data["startDate30"], data["endDate30"], density30, factor=1)
|
|
params = {
|
|
"startDate24": data['startDate24'],
|
|
"endDate24": data['endDate24'],
|
|
"startDate30": data['startDate30'],
|
|
"endDate30": data['endDate30'],
|
|
"project_id": project_id,
|
|
"userId": user_id,
|
|
"step_size24": step_size24,
|
|
"step_size30": step_size30,
|
|
"error_id": error_id}
|
|
|
|
main_pg_query = f"""\
|
|
SELECT error_id,
|
|
name,
|
|
message,
|
|
users,
|
|
sessions,
|
|
last_occurrence,
|
|
first_occurrence,
|
|
last_session_id,
|
|
browsers_partition,
|
|
os_partition,
|
|
device_partition,
|
|
country_partition,
|
|
chart24,
|
|
chart30,
|
|
custom_tags
|
|
FROM (SELECT error_id,
|
|
name,
|
|
message,
|
|
COUNT(DISTINCT user_id) AS users,
|
|
COUNT(DISTINCT session_id) AS sessions
|
|
FROM public.errors
|
|
INNER JOIN events.errors AS s_errors USING (error_id)
|
|
INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_err)}
|
|
GROUP BY error_id, name, message) AS details
|
|
INNER JOIN (SELECT MAX(timestamp) AS last_occurrence,
|
|
MIN(timestamp) AS first_occurrence
|
|
FROM events.errors
|
|
WHERE error_id = %(error_id)s
|
|
GROUP BY error_id) AS time_details ON (TRUE)
|
|
INNER JOIN (SELECT session_id AS last_session_id,
|
|
coalesce(custom_tags, '[]')::jsonb AS custom_tags
|
|
FROM events.errors
|
|
LEFT JOIN LATERAL (
|
|
SELECT jsonb_agg(jsonb_build_object(errors_tags.key, errors_tags.value)) AS custom_tags
|
|
FROM errors_tags
|
|
WHERE errors_tags.error_id = %(error_id)s
|
|
AND errors_tags.session_id = errors.session_id
|
|
AND errors_tags.message_id = errors.message_id) AS errors_tags ON (TRUE)
|
|
WHERE error_id = %(error_id)s
|
|
ORDER BY errors.timestamp DESC
|
|
LIMIT 1) AS last_session_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(browser_details) AS browsers_partition
|
|
FROM (SELECT *
|
|
FROM (SELECT user_browser AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors
|
|
INNER JOIN sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
GROUP BY user_browser
|
|
ORDER BY count DESC) AS count_per_browser_query
|
|
INNER JOIN LATERAL (SELECT JSONB_AGG(version_details) AS partition
|
|
FROM (SELECT user_browser_version AS version,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
AND sessions.user_browser = count_per_browser_query.name
|
|
GROUP BY user_browser_version
|
|
ORDER BY count DESC) AS version_details
|
|
) AS browser_version_details ON (TRUE)) AS browser_details) AS browser_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(os_details) AS os_partition
|
|
FROM (SELECT *
|
|
FROM (SELECT user_os AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
GROUP BY user_os
|
|
ORDER BY count DESC) AS count_per_os_details
|
|
INNER JOIN LATERAL (SELECT jsonb_agg(count_per_version_details) AS partition
|
|
FROM (SELECT COALESCE(user_os_version,'unknown') AS version, COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
AND sessions.user_os = count_per_os_details.name
|
|
GROUP BY user_os_version
|
|
ORDER BY count DESC) AS count_per_version_details
|
|
GROUP BY count_per_os_details.name ) AS os_version_details
|
|
ON (TRUE)) AS os_details) AS os_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(device_details) AS device_partition
|
|
FROM (SELECT *
|
|
FROM (SELECT user_device_type AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
GROUP BY user_device_type
|
|
ORDER BY count DESC) AS count_per_device_details
|
|
INNER JOIN LATERAL (SELECT jsonb_agg(count_per_device_v_details) AS partition
|
|
FROM (SELECT CASE
|
|
WHEN user_device = '' OR user_device ISNULL
|
|
THEN 'unknown'
|
|
ELSE user_device END AS version,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
AND sessions.user_device_type = count_per_device_details.name
|
|
GROUP BY user_device
|
|
ORDER BY count DESC) AS count_per_device_v_details
|
|
GROUP BY count_per_device_details.name ) AS device_version_details
|
|
ON (TRUE)) AS device_details) AS device_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(count_per_country_details) AS country_partition
|
|
FROM (SELECT user_country AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30_session)}
|
|
GROUP BY user_country
|
|
ORDER BY count DESC) AS count_per_country_details) AS country_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(chart_details) AS chart24
|
|
FROM (SELECT generated_timestamp AS timestamp,
|
|
COUNT(session_id) AS count
|
|
FROM generate_series(%(startDate24)s, %(endDate24)s, %(step_size24)s) AS generated_timestamp
|
|
LEFT JOIN LATERAL (SELECT DISTINCT session_id
|
|
FROM events.errors
|
|
INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query24)}
|
|
) AS chart_details ON (TRUE)
|
|
GROUP BY generated_timestamp
|
|
ORDER BY generated_timestamp) AS chart_details) AS chart_details24 ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(chart_details) AS chart30
|
|
FROM (SELECT generated_timestamp AS timestamp,
|
|
COUNT(session_id) AS count
|
|
FROM generate_series(%(startDate30)s, %(endDate30)s, %(step_size30)s) AS generated_timestamp
|
|
LEFT JOIN LATERAL (SELECT DISTINCT session_id
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query30)}) AS chart_details
|
|
ON (TRUE)
|
|
GROUP BY timestamp
|
|
ORDER BY timestamp) AS chart_details) AS chart_details30 ON (TRUE);
|
|
"""
|
|
|
|
# print("--------------------")
|
|
# print(cur.mogrify(main_pg_query, params))
|
|
# print("--------------------")
|
|
cur.execute(cur.mogrify(main_pg_query, params))
|
|
row = cur.fetchone()
|
|
if row is None:
|
|
return {"errors": ["error not found"]}
|
|
row["tags"] = __process_tags(row)
|
|
|
|
query = cur.mogrify(
|
|
f"""SELECT error_id, status, session_id, start_ts,
|
|
parent_error_id,session_id, user_anonymous_id,
|
|
user_id, user_uuid, user_browser, user_browser_version,
|
|
user_os, user_os_version, user_device, payload,
|
|
FALSE AS favorite,
|
|
True AS viewed
|
|
FROM public.errors AS pe
|
|
INNER JOIN events.errors AS ee USING (error_id)
|
|
INNER JOIN public.sessions USING (session_id)
|
|
WHERE pe.project_id = %(project_id)s
|
|
AND error_id = %(error_id)s
|
|
ORDER BY start_ts DESC
|
|
LIMIT 1;""",
|
|
{"project_id": project_id, "error_id": error_id, "user_id": user_id})
|
|
cur.execute(query=query)
|
|
status = cur.fetchone()
|
|
|
|
if status is not None:
|
|
row["stack"] = errors_helper.format_first_stack_frame(status).pop("stack")
|
|
row["status"] = status.pop("status")
|
|
row["parent_error_id"] = status.pop("parent_error_id")
|
|
row["favorite"] = status.pop("favorite")
|
|
row["viewed"] = status.pop("viewed")
|
|
row["last_hydrated_session"] = status
|
|
else:
|
|
row["stack"] = []
|
|
row["last_hydrated_session"] = None
|
|
row["status"] = "untracked"
|
|
row["parent_error_id"] = None
|
|
row["favorite"] = False
|
|
row["viewed"] = False
|
|
return {"data": helper.dict_to_camel_case(row)}
|
|
|
|
|
|
def get_details_chart(project_id, error_id, user_id, **data):
|
|
pg_sub_query = __get_basic_constraints()
|
|
pg_sub_query.append("error_id = %(error_id)s")
|
|
pg_sub_query_chart = __get_basic_constraints(time_constraint=False, chart=True)
|
|
pg_sub_query_chart.append("error_id = %(error_id)s")
|
|
with pg_client.PostgresClient() as cur:
|
|
if data.get("startDate") is None:
|
|
data["startDate"] = TimeUTC.now(-7)
|
|
else:
|
|
data["startDate"] = int(data["startDate"])
|
|
if data.get("endDate") is None:
|
|
data["endDate"] = TimeUTC.now()
|
|
else:
|
|
data["endDate"] = int(data["endDate"])
|
|
density = int(data.get("density", 7))
|
|
step_size = __get_step_size(data["startDate"], data["endDate"], density, factor=1)
|
|
params = {
|
|
"startDate": data['startDate'],
|
|
"endDate": data['endDate'],
|
|
"project_id": project_id,
|
|
"userId": user_id,
|
|
"step_size": step_size,
|
|
"error_id": error_id}
|
|
|
|
main_pg_query = f"""\
|
|
SELECT %(error_id)s AS error_id,
|
|
browsers_partition,
|
|
os_partition,
|
|
device_partition,
|
|
country_partition,
|
|
chart
|
|
FROM (SELECT jsonb_agg(browser_details) AS browsers_partition
|
|
FROM (SELECT *
|
|
FROM (SELECT user_browser AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
GROUP BY user_browser
|
|
ORDER BY count DESC) AS count_per_browser_query
|
|
INNER JOIN LATERAL (SELECT jsonb_agg(count_per_version_details) AS partition
|
|
FROM (SELECT user_browser_version AS version,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
AND user_browser = count_per_browser_query.name
|
|
GROUP BY user_browser_version
|
|
ORDER BY count DESC) AS count_per_version_details) AS browesr_version_details
|
|
ON (TRUE)) AS browser_details) AS browser_details
|
|
INNER JOIN (SELECT jsonb_agg(os_details) AS os_partition
|
|
FROM (SELECT *
|
|
FROM (SELECT user_os AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
GROUP BY user_os
|
|
ORDER BY count DESC) AS count_per_os_details
|
|
INNER JOIN LATERAL (SELECT jsonb_agg(count_per_version_query) AS partition
|
|
FROM (SELECT COALESCE(user_os_version, 'unknown') AS version,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
AND user_os = count_per_os_details.name
|
|
GROUP BY user_os_version
|
|
ORDER BY count DESC) AS count_per_version_query
|
|
) AS os_version_query ON (TRUE)) AS os_details) AS os_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(device_details) AS device_partition
|
|
FROM (SELECT *
|
|
FROM (SELECT user_device_type AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
GROUP BY user_device_type
|
|
ORDER BY count DESC) AS count_per_device_details
|
|
INNER JOIN LATERAL (SELECT jsonb_agg(count_per_device_details) AS partition
|
|
FROM (SELECT CASE
|
|
WHEN user_device = '' OR user_device ISNULL
|
|
THEN 'unknown'
|
|
ELSE user_device END AS version,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
AND user_device_type = count_per_device_details.name
|
|
GROUP BY user_device_type, user_device
|
|
ORDER BY count DESC) AS count_per_device_details
|
|
) AS device_version_details ON (TRUE)) AS device_details) AS device_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(count_per_country_details) AS country_partition
|
|
FROM (SELECT user_country AS name,
|
|
COUNT(session_id) AS count
|
|
FROM events.errors INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
GROUP BY user_country
|
|
ORDER BY count DESC) AS count_per_country_details) AS country_details ON (TRUE)
|
|
INNER JOIN (SELECT jsonb_agg(chart_details) AS chart
|
|
FROM (SELECT generated_timestamp AS timestamp,
|
|
COUNT(session_id) AS count
|
|
FROM generate_series(%(startDate)s, %(endDate)s, %(step_size)s) AS generated_timestamp
|
|
LEFT JOIN LATERAL (SELECT DISTINCT session_id
|
|
FROM events.errors
|
|
INNER JOIN public.sessions USING (session_id)
|
|
WHERE {" AND ".join(pg_sub_query_chart)}
|
|
) AS chart_details ON (TRUE)
|
|
GROUP BY generated_timestamp
|
|
ORDER BY generated_timestamp) AS chart_details) AS chart_details ON (TRUE);"""
|
|
|
|
cur.execute(cur.mogrify(main_pg_query, params))
|
|
row = cur.fetchone()
|
|
if row is None:
|
|
return {"errors": ["error not found"]}
|
|
row["tags"] = __process_tags(row)
|
|
return {"data": helper.dict_to_camel_case(row)}
|
|
|
|
|
|
def __get_basic_constraints(platform=None, time_constraint=True, startTime_arg_name="startDate",
|
|
endTime_arg_name="endDate", chart=False, step_size_name="step_size",
|
|
project_key="project_id"):
|
|
if project_key is None:
|
|
ch_sub_query = []
|
|
else:
|
|
ch_sub_query = [f"{project_key} =%(project_id)s"]
|
|
if time_constraint:
|
|
ch_sub_query += [f"timestamp >= %({startTime_arg_name})s",
|
|
f"timestamp < %({endTime_arg_name})s"]
|
|
if chart:
|
|
ch_sub_query += [f"timestamp >= generated_timestamp",
|
|
f"timestamp < generated_timestamp + %({step_size_name})s"]
|
|
if platform == schemas.PlatformType.mobile:
|
|
ch_sub_query.append("user_device_type = 'mobile'")
|
|
elif platform == schemas.PlatformType.desktop:
|
|
ch_sub_query.append("user_device_type = 'desktop'")
|
|
return ch_sub_query
|
|
|
|
|
|
def __get_sort_key(key):
|
|
return {
|
|
schemas.ErrorSort.occurrence: "max_datetime",
|
|
schemas.ErrorSort.users_count: "users",
|
|
schemas.ErrorSort.sessions_count: "sessions"
|
|
}.get(key, 'max_datetime')
|
|
|
|
|
|
def search(data: schemas.SearchErrorsSchema, project_id, user_id):
|
|
empty_response = {
|
|
'total': 0,
|
|
'errors': []
|
|
}
|
|
|
|
platform = None
|
|
for f in data.filters:
|
|
if f.type == schemas.FilterType.platform and len(f.value) > 0:
|
|
platform = f.value[0]
|
|
pg_sub_query = __get_basic_constraints(platform, project_key="sessions.project_id")
|
|
pg_sub_query += ["sessions.start_ts>=%(startDate)s", "sessions.start_ts<%(endDate)s", "source ='js_exception'",
|
|
"pe.project_id=%(project_id)s"]
|
|
# To ignore Script error
|
|
pg_sub_query.append("pe.message!='Script error.'")
|
|
pg_sub_query_chart = __get_basic_constraints(platform, time_constraint=False, chart=True, project_key=None)
|
|
# pg_sub_query_chart.append("source ='js_exception'")
|
|
pg_sub_query_chart.append("errors.error_id =details.error_id")
|
|
statuses = []
|
|
error_ids = None
|
|
if data.startTimestamp is None:
|
|
data.startTimestamp = TimeUTC.now(-30)
|
|
if data.endTimestamp is None:
|
|
data.endTimestamp = TimeUTC.now(1)
|
|
if len(data.events) > 0 or len(data.filters) > 0:
|
|
print("-- searching for sessions before errors")
|
|
statuses = sessions.search_sessions(data=data, project_id=project_id, user_id=user_id, errors_only=True,
|
|
error_status=data.status)
|
|
if len(statuses) == 0:
|
|
return empty_response
|
|
error_ids = [e["errorId"] for e in statuses]
|
|
with pg_client.PostgresClient() as cur:
|
|
step_size = __get_step_size(data.startTimestamp, data.endTimestamp, data.density, factor=1)
|
|
sort = __get_sort_key('datetime')
|
|
if data.sort is not None:
|
|
sort = __get_sort_key(data.sort)
|
|
order = schemas.SortOrderType.desc
|
|
if data.order is not None:
|
|
order = data.order
|
|
extra_join = ""
|
|
|
|
params = {
|
|
"startDate": data.startTimestamp,
|
|
"endDate": data.endTimestamp,
|
|
"project_id": project_id,
|
|
"userId": user_id,
|
|
"step_size": step_size}
|
|
if data.status != schemas.ErrorStatus.all:
|
|
pg_sub_query.append("status = %(error_status)s")
|
|
params["error_status"] = data.status
|
|
if data.limit is not None and data.page is not None:
|
|
params["errors_offset"] = (data.page - 1) * data.limit
|
|
params["errors_limit"] = data.limit
|
|
else:
|
|
params["errors_offset"] = 0
|
|
params["errors_limit"] = 200
|
|
|
|
if error_ids is not None:
|
|
params["error_ids"] = tuple(error_ids)
|
|
pg_sub_query.append("error_id IN %(error_ids)s")
|
|
# if data.bookmarked:
|
|
# pg_sub_query.append("ufe.user_id = %(userId)s")
|
|
# extra_join += " INNER JOIN public.user_favorite_errors AS ufe USING (error_id)"
|
|
if data.query is not None and len(data.query) > 0:
|
|
pg_sub_query.append("(pe.name ILIKE %(error_query)s OR pe.message ILIKE %(error_query)s)")
|
|
params["error_query"] = helper.values_for_operator(value=data.query,
|
|
op=schemas.SearchEventOperator._contains)
|
|
|
|
main_pg_query = f"""SELECT full_count,
|
|
error_id,
|
|
name,
|
|
message,
|
|
users,
|
|
sessions,
|
|
last_occurrence,
|
|
first_occurrence,
|
|
chart
|
|
FROM (SELECT COUNT(details) OVER () AS full_count, details.*
|
|
FROM (SELECT error_id,
|
|
name,
|
|
message,
|
|
COUNT(DISTINCT COALESCE(user_id,user_uuid::text)) AS users,
|
|
COUNT(DISTINCT session_id) AS sessions,
|
|
MAX(timestamp) AS max_datetime,
|
|
MIN(timestamp) AS min_datetime
|
|
FROM events.errors
|
|
INNER JOIN public.errors AS pe USING (error_id)
|
|
INNER JOIN public.sessions USING (session_id)
|
|
{extra_join}
|
|
WHERE {" AND ".join(pg_sub_query)}
|
|
GROUP BY error_id, name, message
|
|
ORDER BY {sort} {order}) AS details
|
|
LIMIT %(errors_limit)s OFFSET %(errors_offset)s
|
|
) AS details
|
|
INNER JOIN LATERAL (SELECT MAX(timestamp) AS last_occurrence,
|
|
MIN(timestamp) AS first_occurrence
|
|
FROM events.errors
|
|
WHERE errors.error_id = details.error_id) AS time_details ON (TRUE)
|
|
INNER JOIN LATERAL (SELECT jsonb_agg(chart_details) AS chart
|
|
FROM (SELECT generated_timestamp AS timestamp,
|
|
COUNT(session_id) AS count
|
|
FROM generate_series(%(startDate)s, %(endDate)s, %(step_size)s) AS generated_timestamp
|
|
LEFT JOIN LATERAL (SELECT DISTINCT session_id
|
|
FROM events.errors
|
|
WHERE {" AND ".join(pg_sub_query_chart)}
|
|
) AS sessions ON (TRUE)
|
|
GROUP BY timestamp
|
|
ORDER BY timestamp) AS chart_details) AS chart_details ON (TRUE);"""
|
|
|
|
# print("--------------------")
|
|
# print(cur.mogrify(main_pg_query, params))
|
|
# print("--------------------")
|
|
|
|
cur.execute(cur.mogrify(main_pg_query, params))
|
|
rows = cur.fetchall()
|
|
total = 0 if len(rows) == 0 else rows[0]["full_count"]
|
|
|
|
if total == 0:
|
|
rows = []
|
|
else:
|
|
if len(statuses) == 0:
|
|
query = cur.mogrify(
|
|
"""SELECT error_id,
|
|
COALESCE((SELECT TRUE
|
|
FROM public.user_viewed_errors AS ve
|
|
WHERE errors.error_id = ve.error_id
|
|
AND ve.user_id = %(user_id)s LIMIT 1), FALSE) AS viewed
|
|
FROM public.errors
|
|
WHERE project_id = %(project_id)s AND error_id IN %(error_ids)s;""",
|
|
{"project_id": project_id, "error_ids": tuple([r["error_id"] for r in rows]),
|
|
"user_id": user_id})
|
|
cur.execute(query=query)
|
|
statuses = helper.list_to_camel_case(cur.fetchall())
|
|
statuses = {
|
|
s["errorId"]: s for s in statuses
|
|
}
|
|
|
|
for r in rows:
|
|
r.pop("full_count")
|
|
if r["error_id"] in statuses:
|
|
r["viewed"] = statuses[r["error_id"]]["viewed"]
|
|
else:
|
|
r["viewed"] = False
|
|
|
|
return {
|
|
'total': total,
|
|
'errors': helper.list_to_camel_case(rows)
|
|
}
|
|
|
|
|
|
def __save_stacktrace(error_id, data):
|
|
with pg_client.PostgresClient() as cur:
|
|
query = cur.mogrify(
|
|
"""UPDATE public.errors
|
|
SET stacktrace=%(data)s::jsonb, stacktrace_parsed_at=timezone('utc'::text, now())
|
|
WHERE error_id = %(error_id)s;""",
|
|
{"error_id": error_id, "data": json.dumps(data)})
|
|
cur.execute(query=query)
|
|
|
|
|
|
def get_trace(project_id, error_id):
|
|
error = get(error_id=error_id, family=False)
|
|
if error is None:
|
|
return {"errors": ["error not found"]}
|
|
if error.get("source", "") != "js_exception":
|
|
return {"errors": ["this source of errors doesn't have a sourcemap"]}
|
|
if error.get("payload") is None:
|
|
return {"errors": ["null payload"]}
|
|
if error.get("stacktrace") is not None:
|
|
return {"sourcemapUploaded": True,
|
|
"trace": error.get("stacktrace"),
|
|
"preparsed": True}
|
|
trace, all_exists = sourcemaps.get_traces_group(project_id=project_id, payload=error["payload"])
|
|
if all_exists:
|
|
__save_stacktrace(error_id=error_id, data=trace)
|
|
return {"sourcemapUploaded": all_exists,
|
|
"trace": trace,
|
|
"preparsed": False}
|
|
|
|
|
|
def get_sessions(start_date, end_date, project_id, user_id, error_id):
|
|
extra_constraints = ["s.project_id = %(project_id)s",
|
|
"s.start_ts >= %(startDate)s",
|
|
"s.start_ts <= %(endDate)s",
|
|
"e.error_id = %(error_id)s"]
|
|
if start_date is None:
|
|
start_date = TimeUTC.now(-7)
|
|
if end_date is None:
|
|
end_date = TimeUTC.now()
|
|
|
|
params = {
|
|
"startDate": start_date,
|
|
"endDate": end_date,
|
|
"project_id": project_id,
|
|
"userId": user_id,
|
|
"error_id": error_id}
|
|
with pg_client.PostgresClient() as cur:
|
|
query = cur.mogrify(
|
|
f"""SELECT s.project_id,
|
|
s.session_id::text AS session_id,
|
|
s.user_uuid,
|
|
s.user_id,
|
|
s.user_agent,
|
|
s.user_os,
|
|
s.user_browser,
|
|
s.user_device,
|
|
s.user_country,
|
|
s.start_ts,
|
|
s.duration,
|
|
s.events_count,
|
|
s.pages_count,
|
|
s.errors_count,
|
|
s.issue_types,
|
|
COALESCE((SELECT TRUE
|
|
FROM public.user_favorite_sessions AS fs
|
|
WHERE s.session_id = fs.session_id
|
|
AND fs.user_id = %(userId)s LIMIT 1), FALSE) AS favorite,
|
|
COALESCE((SELECT TRUE
|
|
FROM public.user_viewed_sessions AS fs
|
|
WHERE s.session_id = fs.session_id
|
|
AND fs.user_id = %(userId)s LIMIT 1), FALSE) AS viewed
|
|
FROM public.sessions AS s INNER JOIN events.errors AS e USING (session_id)
|
|
WHERE {" AND ".join(extra_constraints)}
|
|
ORDER BY s.start_ts DESC;""",
|
|
params)
|
|
cur.execute(query=query)
|
|
sessions_list = []
|
|
total = cur.rowcount
|
|
row = cur.fetchone()
|
|
while row is not None and len(sessions_list) < 100:
|
|
sessions_list.append(row)
|
|
row = cur.fetchone()
|
|
|
|
return {
|
|
'total': total,
|
|
'sessions': helper.list_to_camel_case(sessions_list)
|
|
}
|
|
|
|
|
|
ACTION_STATE = {
|
|
"unsolve": 'unresolved',
|
|
"solve": 'resolved',
|
|
"ignore": 'ignored'
|
|
}
|
|
|
|
|
|
def change_state(project_id, user_id, error_id, action):
|
|
errors = get(error_id, family=True)
|
|
print(len(errors))
|
|
status = ACTION_STATE.get(action)
|
|
if errors is None or len(errors) == 0:
|
|
return {"errors": ["error not found"]}
|
|
if errors[0]["status"] == status:
|
|
return {"errors": [f"error is already {status}"]}
|
|
|
|
if errors[0]["status"] == ACTION_STATE["solve"] and status == ACTION_STATE["ignore"]:
|
|
return {"errors": [f"state transition not permitted {errors[0]['status']} -> {status}"]}
|
|
|
|
params = {
|
|
"userId": user_id,
|
|
"error_ids": tuple([e["errorId"] for e in errors]),
|
|
"status": status}
|
|
with pg_client.PostgresClient() as cur:
|
|
query = cur.mogrify(
|
|
"""UPDATE public.errors
|
|
SET status = %(status)s
|
|
WHERE error_id IN %(error_ids)s
|
|
RETURNING status""",
|
|
params)
|
|
cur.execute(query=query)
|
|
row = cur.fetchone()
|
|
if row is not None:
|
|
for e in errors:
|
|
e["status"] = row["status"]
|
|
return {"data": errors}
|