|
@@ -1,18 +1,16 @@
|
|
|
#!/usr/bin/env python3
|
|
|
# encoding:utf-8
|
|
|
-import time
|
|
|
-from . import app
|
|
|
+from flask import request, render_template_string
|
|
|
+
|
|
|
from src.core.callcenter.agent import AgentService, AgentOperService
|
|
|
+from src.core.callcenter.api import AgentCallRequest, AgentActionRequest, HangupCallRequest
|
|
|
+from src.core.callcenter.call import CallService
|
|
|
from src.core.callcenter.constant import success_response
|
|
|
from src.core.callcenter.enumeration import CallType
|
|
|
from src.core.callcenter.esl.client import InboundClient, OutboundClient
|
|
|
-from flask import request, render_template_string, g
|
|
|
-
|
|
|
-from src.core.callcenter.call import CallService
|
|
|
-from src.core.callcenter.api import AgentCallRequest, AgentActionRequest, HangupCallRequest
|
|
|
from src.core.voip.bot import BotAgent
|
|
|
+from . import app
|
|
|
from .acd import AcdService
|
|
|
-from src.core.callcenter import registry
|
|
|
|
|
|
agent = BotAgent(app)
|
|
|
inbound_client = InboundClient(agent,app)
|
|
@@ -23,20 +21,6 @@ agent_oper_service = AgentOperService(app)
|
|
|
acd_service = AcdService(inbound_client, app)
|
|
|
agent.acd_service = acd_service
|
|
|
|
|
|
-REQUEST_LATENCY = registry.new_histogram('liuwei_request_latency_seconds', 'Request latency in seconds', ['method', 'endpoint'])
|
|
|
-
|
|
|
-@app.before_request
|
|
|
-def start_timer():
|
|
|
- """在请求开始时记录时间"""
|
|
|
- g.start_time = time.time()
|
|
|
-
|
|
|
-@app.after_request
|
|
|
-def record_latency(response):
|
|
|
- """请求结束时计算耗时,并将其上报到 Prometheus"""
|
|
|
- latency = time.time() - g.start_time
|
|
|
- REQUEST_LATENCY.labels(request.method, request.path).observe(latency)
|
|
|
- return response
|
|
|
-
|
|
|
|
|
|
@app.route('/')
|
|
|
def index():
|