2025-06-09 13:08:04 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: MaxKB
|
|
|
|
|
|
@Author:虎虎
|
|
|
|
|
|
@file: application_stats.py
|
|
|
|
|
|
@date:2025/6/9 20:30
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
|
|
|
|
|
from drf_spectacular.utils import extend_schema
|
|
|
|
|
|
from rest_framework.request import Request
|
|
|
|
|
|
from rest_framework.views import APIView
|
|
|
|
|
|
|
|
|
|
|
|
from application.api.application_stats import ApplicationStatsAPI
|
|
|
|
|
|
from application.serializers.application_stats import ApplicationStatisticsSerializer
|
|
|
|
|
|
from common import result
|
|
|
|
|
|
from common.auth import TokenAuth
|
|
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
|
2025-06-11 07:21:01 +00:00
|
|
|
|
from common.auth.authentication import has_permissions
|
2025-07-02 11:05:05 +00:00
|
|
|
|
from common.constants.permission_constants import PermissionConstants, RoleConstants, ViewPermission, CompareConstants
|
2025-06-11 07:21:01 +00:00
|
|
|
|
|
2025-06-09 13:08:04 +00:00
|
|
|
|
|
|
|
|
|
|
class ApplicationStats(APIView):
|
|
|
|
|
|
authentication_classes = [TokenAuth]
|
|
|
|
|
|
|
|
|
|
|
|
@extend_schema(
|
|
|
|
|
|
methods=['GET'],
|
|
|
|
|
|
description=_('Dialogue-related statistical trends'),
|
|
|
|
|
|
summary=_('Dialogue-related statistical trends'),
|
|
|
|
|
|
operation_id=_('Dialogue-related statistical trends'), # type: ignore
|
|
|
|
|
|
parameters=ApplicationStatsAPI.get_parameters(),
|
|
|
|
|
|
responses=ApplicationStatsAPI.get_response(),
|
|
|
|
|
|
tags=[_('Application')] # type: ignore
|
|
|
|
|
|
)
|
2025-06-20 14:31:41 +00:00
|
|
|
|
@has_permissions(PermissionConstants.APPLICATION_OVERVIEW_READ.get_workspace_application_permission(),
|
|
|
|
|
|
PermissionConstants.APPLICATION_OVERVIEW_READ.get_workspace_permission_workspace_manage_role(),
|
2025-07-02 11:05:05 +00:00
|
|
|
|
ViewPermission([RoleConstants.USER.get_workspace_role()],
|
|
|
|
|
|
[PermissionConstants.APPLICATION.get_workspace_application_permission()],
|
|
|
|
|
|
CompareConstants.AND),
|
2025-06-11 07:21:01 +00:00
|
|
|
|
RoleConstants.WORKSPACE_MANAGE.get_workspace_role())
|
2025-06-09 13:08:04 +00:00
|
|
|
|
def get(self, request: Request, workspace_id: str, application_id: str):
|
|
|
|
|
|
return result.success(
|
2025-06-25 08:56:10 +00:00
|
|
|
|
ApplicationStatisticsSerializer(data={'application_id': application_id, 'workspace_id': workspace_id,
|
2025-06-09 13:08:04 +00:00
|
|
|
|
'start_time': request.query_params.get(
|
|
|
|
|
|
'start_time'),
|
|
|
|
|
|
'end_time': request.query_params.get(
|
|
|
|
|
|
'end_time')
|
|
|
|
|
|
}).get_chat_record_aggregate_trend())
|
2025-11-13 06:56:37 +00:00
|
|
|
|
|
|
|
|
|
|
class TokenUsageStatistics(APIView):
|
|
|
|
|
|
authentication_classes = [TokenAuth]
|
|
|
|
|
|
|
|
|
|
|
|
# 应用的token使用统计 根据人的使用数排序
|
|
|
|
|
|
@extend_schema(
|
|
|
|
|
|
methods=['GET'],
|
|
|
|
|
|
description=_('Application token usage statistics'),
|
|
|
|
|
|
summary=_('Application token usage statistics'),
|
|
|
|
|
|
operation_id=_('Application token usage statistics'), # type: ignore
|
|
|
|
|
|
parameters=ApplicationStatsAPI.get_parameters(),
|
|
|
|
|
|
responses=ApplicationStatsAPI.get_response(),
|
|
|
|
|
|
tags=[_('Application')] # type: ignore
|
|
|
|
|
|
)
|
|
|
|
|
|
@has_permissions(PermissionConstants.APPLICATION_OVERVIEW_READ.get_workspace_application_permission(),
|
|
|
|
|
|
PermissionConstants.APPLICATION_OVERVIEW_READ.get_workspace_permission_workspace_manage_role(),
|
|
|
|
|
|
ViewPermission([RoleConstants.USER.get_workspace_role()],
|
|
|
|
|
|
[PermissionConstants.APPLICATION.get_workspace_application_permission()],
|
|
|
|
|
|
CompareConstants.AND),
|
|
|
|
|
|
RoleConstants.WORKSPACE_MANAGE.get_workspace_role())
|
|
|
|
|
|
def get(self, request: Request, workspace_id: str, application_id: str):
|
|
|
|
|
|
return result.success(
|
|
|
|
|
|
ApplicationStatisticsSerializer(data={'application_id': application_id, 'workspace_id': workspace_id,
|
|
|
|
|
|
'start_time': request.query_params.get(
|
|
|
|
|
|
'start_time'),
|
|
|
|
|
|
'end_time': request.query_params.get(
|
|
|
|
|
|
'end_time')
|
|
|
|
|
|
}).get_token_usage_statistics())
|
|
|
|
|
|
|
|
|
|
|
|
class TopQuestionsStatistics(APIView):
|
|
|
|
|
|
authentication_classes = [TokenAuth]
|
2025-11-13 07:01:58 +00:00
|
|
|
|
# 应用的top问题统计
|
2025-11-13 06:56:37 +00:00
|
|
|
|
@extend_schema(
|
|
|
|
|
|
methods=['GET'],
|
2025-11-13 07:01:58 +00:00
|
|
|
|
description=_('Application top question statistics'),
|
|
|
|
|
|
summary=_('Application top question statistics'),
|
|
|
|
|
|
operation_id=_('Application top question statistics'), # type: ignore
|
2025-11-13 06:56:37 +00:00
|
|
|
|
parameters=ApplicationStatsAPI.get_parameters(),
|
|
|
|
|
|
responses=ApplicationStatsAPI.get_response(),
|
|
|
|
|
|
tags=[_('Application')] # type: ignore
|
|
|
|
|
|
)
|
|
|
|
|
|
@has_permissions(PermissionConstants.APPLICATION_OVERVIEW_READ.get_workspace_application_permission(),
|
|
|
|
|
|
PermissionConstants.APPLICATION_OVERVIEW_READ.get_workspace_permission_workspace_manage_role(),
|
|
|
|
|
|
ViewPermission([RoleConstants.USER.get_workspace_role()],
|
|
|
|
|
|
[PermissionConstants.APPLICATION.get_workspace_application_permission()],
|
|
|
|
|
|
CompareConstants.AND),
|
|
|
|
|
|
RoleConstants.WORKSPACE_MANAGE.get_workspace_role())
|
|
|
|
|
|
def get(self, request: Request, workspace_id: str, application_id: str):
|
|
|
|
|
|
return result.success(
|
|
|
|
|
|
ApplicationStatisticsSerializer(data={'application_id': application_id, 'workspace_id': workspace_id,
|
|
|
|
|
|
'start_time': request.query_params.get(
|
|
|
|
|
|
'start_time'),
|
|
|
|
|
|
'end_time': request.query_params.get(
|
|
|
|
|
|
'end_time')
|
|
|
|
|
|
}).get_top_questions_statistics())
|