request_wrapper.py
96 lines
| 3.4 KiB
| text/x-python
|
PythonLexer
r5054 | ||||
r1 | ||||
r5088 | # Copyright (C) 2016-2023 RhodeCode GmbH | |||
r1 | # | |||
# This program is free software: you can redistribute it and/or modify | ||||
# it under the terms of the GNU Affero General Public License, version 3 | ||||
# (only), as published by the Free Software Foundation. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU Affero General Public License | ||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||
# | ||||
# This program is dual-licensed. If you wish to learn more about the | ||||
# RhodeCode Enterprise Edition, including its added features, Support services, | ||||
# and proprietary license terms, please see https://rhodecode.com/licenses/ | ||||
import time | ||||
import logging | ||||
r3926 | import rhodecode | |||
r4347 | from rhodecode.lib.auth import AuthUser | |||
r5032 | from rhodecode.lib.base import get_ip_addr, get_user_agent | |||
from rhodecode.lib.middleware.utils import get_path_info | ||||
r4347 | from rhodecode.lib.utils2 import safe_str, get_current_rhodecode_user | |||
r1 | ||||
log = logging.getLogger(__name__) | ||||
class RequestWrapperTween(object): | ||||
def __init__(self, handler, registry): | ||||
self.handler = handler | ||||
self.registry = registry | ||||
# one-time configuration code goes here | ||||
r4632 | def _get_user_info(self, request): | |||
user = get_current_rhodecode_user(request) | ||||
if not user: | ||||
user = AuthUser.repr_user(ip=get_ip_addr(request.environ)) | ||||
return user | ||||
r1 | def __call__(self, request): | |||
start = time.time() | ||||
r4157 | log.debug('Starting request time measurement') | |||
r4808 | response = None | |||
r5082 | request.req_wrapper_start = start | |||
r1 | try: | |||
response = self.handler(request) | ||||
finally: | ||||
r3874 | count = request.request_count() | |||
r3926 | _ver_ = rhodecode.__version__ | |||
r5032 | _path = get_path_info(request.environ) | |||
r4792 | _auth_user = self._get_user_info(request) | |||
r4816 | ip = get_ip_addr(request.environ) | |||
match_route = request.matched_route.name if request.matched_route else "NOT_FOUND" | ||||
r4820 | resp_code = getattr(response, 'status_code', 'UNDEFINED') | |||
r4807 | ||||
r4632 | total = time.time() - start | |||
r3061 | log.info( | |||
r4347 | 'Req[%4s] %s %s Request to %s time: %.4fs [%s], RhodeCode %s', | |||
r4792 | count, _auth_user, request.environ.get('REQUEST_METHOD'), | |||
r4816 | _path, total, get_user_agent(request. environ), _ver_, | |||
extra={"time": total, "ver": _ver_, "ip": ip, | ||||
r4820 | "path": _path, "view_name": match_route, "code": resp_code} | |||
r1 | ) | |||
r4792 | statsd = request.registry.statsd | |||
if statsd: | ||||
r4806 | elapsed_time_ms = round(1000.0 * total) # use ms only | |||
r4792 | statsd.timing( | |||
r4807 | "rhodecode_req_timing.histogram", elapsed_time_ms, | |||
r4792 | tags=[ | |||
r4805 | "view_name:{}".format(match_route), | |||
r4794 | "code:{}".format(resp_code) | |||
r4806 | ], | |||
use_decimals=False | ||||
r4792 | ) | |||
statsd.incr( | ||||
r4804 | 'rhodecode_req_total', tags=[ | |||
r4805 | "view_name:{}".format(match_route), | |||
r4794 | "code:{}".format(resp_code) | |||
r4792 | ]) | |||
r1 | return response | |||
def includeme(config): | ||||
config.add_tween( | ||||
'rhodecode.lib.middleware.request_wrapper.RequestWrapperTween', | ||||
r3430 | ) | |||