2022-08-23 11:27:37 +02:00
|
|
|
import re
|
|
|
|
from typing import Optional
|
2020-12-07 16:06:14 +01:00
|
|
|
|
2022-08-23 11:27:37 +02:00
|
|
|
from dateutil.relativedelta import relativedelta
|
|
|
|
from django.utils.timezone import now
|
|
|
|
from loginas.utils import is_impersonated_session
|
|
|
|
from rest_framework import exceptions, viewsets
|
2020-12-07 16:06:14 +01:00
|
|
|
from rest_framework.response import Response
|
|
|
|
|
2022-08-23 11:27:37 +02:00
|
|
|
from posthog.client import sync_execute
|
2022-10-19 08:58:36 +02:00
|
|
|
from posthog.cloud_utils import is_cloud
|
2022-08-23 11:27:37 +02:00
|
|
|
from posthog.settings.base_variables import DEBUG
|
2022-08-24 15:06:39 +02:00
|
|
|
from posthog.settings.data_stores import CLICKHOUSE_CLUSTER
|
2020-12-07 16:06:14 +01:00
|
|
|
|
|
|
|
|
2022-08-23 11:27:37 +02:00
|
|
|
class DebugCHQueries(viewsets.ViewSet):
|
2020-12-07 16:06:14 +01:00
|
|
|
"""
|
|
|
|
Show recent queries for this user
|
|
|
|
"""
|
|
|
|
|
2022-08-23 11:27:37 +02:00
|
|
|
def _get_path(self, query: str) -> Optional[str]:
|
|
|
|
try:
|
|
|
|
return re.findall(r"request:([a-zA-Z0-9-_@]+)", query)[0].replace("_", "/")
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2020-12-07 16:06:14 +01:00
|
|
|
def list(self, request):
|
2022-10-19 08:58:36 +02:00
|
|
|
if not (request.user.is_staff or DEBUG or is_impersonated_session(request) or not is_cloud()):
|
2022-08-23 11:27:37 +02:00
|
|
|
raise exceptions.PermissionDenied("You're not allowed to see queries.")
|
|
|
|
|
|
|
|
response = sync_execute(
|
|
|
|
"""
|
|
|
|
select
|
|
|
|
query, query_start_time, exception, toInt8(type), query_duration_ms
|
2022-08-24 15:06:39 +02:00
|
|
|
from clusterAllReplicas(%(cluster)s, system, query_log)
|
2022-08-23 11:27:37 +02:00
|
|
|
where
|
|
|
|
query LIKE %(query)s and
|
|
|
|
query_start_time > %(start_time)s and
|
|
|
|
type != 1 and
|
|
|
|
query not like %(not_query)s
|
|
|
|
order by query_start_time desc
|
|
|
|
limit 100""",
|
|
|
|
{
|
|
|
|
"query": f"/* user_id:{request.user.pk} %",
|
|
|
|
"start_time": (now() - relativedelta(minutes=10)).timestamp(),
|
|
|
|
"not_query": "%request:_api_debug_ch_queries_%",
|
2022-08-24 15:06:39 +02:00
|
|
|
"cluster": CLICKHOUSE_CLUSTER,
|
2022-08-23 11:27:37 +02:00
|
|
|
},
|
|
|
|
)
|
|
|
|
return Response(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"query": resp[0],
|
|
|
|
"timestamp": resp[1],
|
|
|
|
"exception": resp[2],
|
|
|
|
"type": resp[3],
|
|
|
|
"execution_time": resp[4],
|
|
|
|
"path": self._get_path(resp[0]),
|
|
|
|
}
|
|
|
|
for resp in response
|
|
|
|
]
|
|
|
|
)
|