##// END OF EJS Templates
logging: update request wrapper to expose additional data points
super-admin -
r1017:a6b2d02d default
parent child Browse files
Show More
@@ -1,85 +1,90 b''
1 # RhodeCode VCSServer provides access to different vcs backends via network.
1 # RhodeCode VCSServer provides access to different vcs backends via network.
2 # Copyright (C) 2014-2020 RhodeCode GmbH
2 # Copyright (C) 2014-2020 RhodeCode GmbH
3 #
3 #
4 # This program is free software; you can redistribute it and/or modify
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
7 # (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation,
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
18 import time
18 import time
19 import logging
19 import logging
20
20
21 import vcsserver
21 import vcsserver
22 from vcsserver.utils import safe_str
22 from vcsserver.utils import safe_str
23
23
24
24
25 log = logging.getLogger(__name__)
25 log = logging.getLogger(__name__)
26
26
27
27
28 def get_access_path(environ):
28 def get_access_path(environ):
29 path = environ.get('PATH_INFO')
29 path = environ.get('PATH_INFO')
30 return path
30 return path
31
31
32
32
33 def get_user_agent(environ):
33 def get_user_agent(environ):
34 return environ.get('HTTP_USER_AGENT')
34 return environ.get('HTTP_USER_AGENT')
35
35
36
36
37 class RequestWrapperTween(object):
37 class RequestWrapperTween(object):
38 def __init__(self, handler, registry):
38 def __init__(self, handler, registry):
39 self.handler = handler
39 self.handler = handler
40 self.registry = registry
40 self.registry = registry
41
41
42 # one-time configuration code goes here
42 # one-time configuration code goes here
43
43
44 def __call__(self, request):
44 def __call__(self, request):
45 start = time.time()
45 start = time.time()
46 log.debug('Starting request time measurement')
46 log.debug('Starting request time measurement')
47 response = None
47 try:
48 try:
48 response = self.handler(request)
49 response = self.handler(request)
49 finally:
50 finally:
50 count = request.request_count()
51 count = request.request_count()
51 _ver_ = vcsserver.__version__
52 _ver_ = vcsserver.__version__
52 _path = safe_str(get_access_path(request.environ))
53 _path = safe_str(get_access_path(request.environ))
54 ip = '127.0.0.1'
55 match_route = request.matched_route.name if request.matched_route else "NOT_FOUND"
53
56
54 total = time.time() - start
57 total = time.time() - start
55 log.info(
58 log.info(
56 'Req[%4s] IP: %s %s Request to %s time: %.4fs [%s], VCSServer %s',
59 'Req[%4s] IP: %s %s Request to %s time: %.4fs [%s], VCSServer %s',
57 count, '127.0.0.1', request.environ.get('REQUEST_METHOD'),
60 count, ip, request.environ.get('REQUEST_METHOD'),
58 _path, total, get_user_agent(request.environ), _ver_
61 _path, total, get_user_agent(request.environ), _ver_,
62 extra={"time": total, "ver": _ver_,
63 "path": _path, "view_name": match_route}
59 )
64 )
60
65
61 statsd = request.registry.statsd
66 statsd = request.registry.statsd
62 if statsd:
67 if statsd:
63 match_route = request.matched_route.name if request.matched_route else _path
68 match_route = request.matched_route.name if request.matched_route else _path
64 resp_code = response.status_code
69 resp_code = getattr(response, 'status_code', 'UNDEFINED')
65 elapsed_time_ms = round(1000.0 * total) # use ms only
70 elapsed_time_ms = round(1000.0 * total) # use ms only
66 statsd.timing(
71 statsd.timing(
67 "vcsserver_req_timing.histogram", elapsed_time_ms,
72 "vcsserver_req_timing.histogram", elapsed_time_ms,
68 tags=[
73 tags=[
69 "view_name:{}".format(match_route),
74 "view_name:{}".format(match_route),
70 "code:{}".format(resp_code)
75 "code:{}".format(resp_code)
71 ],
76 ],
72 use_decimals=False
77 use_decimals=False
73 )
78 )
74 statsd.incr(
79 statsd.incr(
75 "vcsserver_req_total", tags=[
80 "vcsserver_req_total", tags=[
76 "view_name:{}".format(match_route),
81 "view_name:{}".format(match_route),
77 "code:{}".format(resp_code)
82 "code:{}".format(resp_code)
78 ])
83 ])
79 return response
84 return response
80
85
81
86
82 def includeme(config):
87 def includeme(config):
83 config.add_tween(
88 config.add_tween(
84 'vcsserver.tweens.request_wrapper.RequestWrapperTween',
89 'vcsserver.tweens.request_wrapper.RequestWrapperTween',
85 )
90 )
General Comments 0
You need to be logged in to leave comments. Login now