c2cwsgiutils 6.2.0.dev21__py3-none-any.whl → 6.2.0.dev25__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- c2cwsgiutils/debug/_views.py +11 -4
- c2cwsgiutils/stats_pyramid/_pyramid_spy.py +12 -0
- {c2cwsgiutils-6.2.0.dev21.dist-info → c2cwsgiutils-6.2.0.dev25.dist-info}/METADATA +1 -1
- {c2cwsgiutils-6.2.0.dev21.dist-info → c2cwsgiutils-6.2.0.dev25.dist-info}/RECORD +7 -7
- {c2cwsgiutils-6.2.0.dev21.dist-info → c2cwsgiutils-6.2.0.dev25.dist-info}/LICENSE +0 -0
- {c2cwsgiutils-6.2.0.dev21.dist-info → c2cwsgiutils-6.2.0.dev25.dist-info}/WHEEL +0 -0
- {c2cwsgiutils-6.2.0.dev21.dist-info → c2cwsgiutils-6.2.0.dev25.dist-info}/entry_points.txt +0 -0
c2cwsgiutils/debug/_views.py
CHANGED
@@ -189,10 +189,17 @@ def _show_refs(request: pyramid.request.Request) -> pyramid.response.Response:
|
|
189
189
|
args["extra_info"] = lambda obj: f"{get_size(obj) / 1024:.3f} kb\n{id(obj)}"
|
190
190
|
|
191
191
|
result = StringIO()
|
192
|
-
if request.params.get("backrefs", "")
|
193
|
-
|
194
|
-
|
195
|
-
|
192
|
+
if request.params.get("backrefs", "") == "":
|
193
|
+
|
194
|
+
def new_filter(x: Any) -> bool:
|
195
|
+
return not objgraph.inspect.isclass(x)
|
196
|
+
|
197
|
+
if "filter" in args:
|
198
|
+
old_filter = args["filter"]
|
199
|
+
args["filter"] = lambda x: old_filter(x) and new_filter(x)
|
200
|
+
else:
|
201
|
+
args["filter"] = new_filter
|
202
|
+
objgraph.show_backrefs(objs, output=result, **args)
|
196
203
|
|
197
204
|
request.response.content_type = "text/vnd.graphviz"
|
198
205
|
request.response.text = result.getvalue()
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import logging
|
1
2
|
import time
|
2
3
|
from typing import Callable, Optional
|
3
4
|
|
@@ -9,6 +10,8 @@ from pyramid.httpexceptions import HTTPException
|
|
9
10
|
|
10
11
|
from c2cwsgiutils import prometheus
|
11
12
|
|
13
|
+
_LOG = logging.getLogger(__name__)
|
14
|
+
|
12
15
|
_PROMETHEUS_PYRAMID_ROUTES_SUMMARY = prometheus_client.Summary(
|
13
16
|
prometheus.build_metric_name("pyramid_routes"),
|
14
17
|
"Pyramid routes",
|
@@ -61,6 +64,15 @@ def _create_finished_cb(
|
|
61
64
|
name = request.matched_route.name
|
62
65
|
if kind == "route":
|
63
66
|
_add_server_metric(request, "route", description=name)
|
67
|
+
if status >= 500:
|
68
|
+
_LOG.warning(
|
69
|
+
"Request %s %s %s route %s return status %s",
|
70
|
+
request.method,
|
71
|
+
request.path,
|
72
|
+
kind,
|
73
|
+
name,
|
74
|
+
status,
|
75
|
+
)
|
64
76
|
measure.labels(
|
65
77
|
method=request.method, route=name, status=status, group=str(status // 100 * 100)
|
66
78
|
).observe(time.process_time() - start)
|
@@ -20,7 +20,7 @@ c2cwsgiutils/db.py,sha256=JT5F9Dqm2r0Jsh3w3CX79ngAUtakMLpf1secfN1nQnk,16106
|
|
20
20
|
c2cwsgiutils/db_maintenance_view.py,sha256=58F-p9drkhCI99GoLRPIqT5U-Pm8ckSSUEl-tNxMmjU,3088
|
21
21
|
c2cwsgiutils/debug/__init__.py,sha256=GkYNt2fU5PFykw9HmqPEwZrF2mTJumjSu54pp38EhOM,1325
|
22
22
|
c2cwsgiutils/debug/_listeners.py,sha256=RZYwQRh86rU-Vtjxc3xOZL2A8D_5LHIBd-xWAMQCrj0,4421
|
23
|
-
c2cwsgiutils/debug/_views.py,sha256=
|
23
|
+
c2cwsgiutils/debug/_views.py,sha256=H-G5ECDfgxQwQvUMaXxsxUyZuCxkgCsKhg5N37m6i7c,7721
|
24
24
|
c2cwsgiutils/debug/utils.py,sha256=sIKZHQ8empzxE2OI3h7Uce8cvv4O7AD1y_VYeZfLVCA,2320
|
25
25
|
c2cwsgiutils/errors.py,sha256=-hWLQ1qDlh9kn06-33U2c39BbOxuCvJIkBkdxriE5mo,6644
|
26
26
|
c2cwsgiutils/health_check.py,sha256=OhfPcApBht1qtBOX8e8pdeq3QwF4FbgGkofjqpl8GvQ,20068
|
@@ -57,11 +57,11 @@ c2cwsgiutils/static/favicon-16x16.png,sha256=LKk6RFvb3NlPIZdDfAodE8H9IN8KM6CMGnM
|
|
57
57
|
c2cwsgiutils/static/favicon-32x32.png,sha256=i4ucx08zAZARd8e7JTMGK-gb5WcOmyuDN6IN4brsEOo,1216
|
58
58
|
c2cwsgiutils/stats_pyramid/__init__.py,sha256=alSRhpCa5Kh9JnMnR5XqcMqr5wyL8ogROprrfsIl_qU,786
|
59
59
|
c2cwsgiutils/stats_pyramid/_db_spy.py,sha256=A61t6VKIrRRIjbyZTldmAUl_Q3ZDVFYqyxjuntzmllc,2919
|
60
|
-
c2cwsgiutils/stats_pyramid/_pyramid_spy.py,sha256=
|
60
|
+
c2cwsgiutils/stats_pyramid/_pyramid_spy.py,sha256=mRiOmQXV9x8JjkGV4MsaC7sD3qO6dWUTog0bharLLD0,3517
|
61
61
|
c2cwsgiutils/templates/index.html.mako,sha256=Ey9ppHLe-eFGYXYPV5Z2WbMBSif86sYPiTviksnG7TI,1362
|
62
62
|
c2cwsgiutils/version.py,sha256=1ghPu-aKMJdfCSUrxgBENNqNQ-7JMKJr6tS14dDmW4Q,3110
|
63
|
-
c2cwsgiutils-6.2.0.
|
64
|
-
c2cwsgiutils-6.2.0.
|
65
|
-
c2cwsgiutils-6.2.0.
|
66
|
-
c2cwsgiutils-6.2.0.
|
67
|
-
c2cwsgiutils-6.2.0.
|
63
|
+
c2cwsgiutils-6.2.0.dev25.dist-info/LICENSE,sha256=r7ueGz9Fl2Bv3rmeQy0DEtohLmAiufRaCuv6Y5fyNhE,1304
|
64
|
+
c2cwsgiutils-6.2.0.dev25.dist-info/METADATA,sha256=9z8FADQ-nSa7pe9JyqDLg9ak19pbOW8EBNAJrZH58OI,34402
|
65
|
+
c2cwsgiutils-6.2.0.dev25.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
66
|
+
c2cwsgiutils-6.2.0.dev25.dist-info/entry_points.txt,sha256=ujgqMTL1awN9qDg8WXmrF7m0fgR-hslUM6zKH86pvy0,703
|
67
|
+
c2cwsgiutils-6.2.0.dev25.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|