apitally 0.14.6__py3-none-any.whl → 0.15.0__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.
- apitally/client/request_logging.py +22 -6
- apitally/client/sentry.py +38 -0
- apitally/client/server_errors.py +37 -63
- apitally/django.py +1 -0
- apitally/flask.py +1 -0
- apitally/litestar.py +1 -0
- apitally/starlette.py +1 -0
- {apitally-0.14.6.dist-info → apitally-0.15.0.dist-info}/METADATA +17 -10
- {apitally-0.14.6.dist-info → apitally-0.15.0.dist-info}/RECORD +11 -10
- {apitally-0.14.6.dist-info → apitally-0.15.0.dist-info}/WHEEL +0 -0
- {apitally-0.14.6.dist-info → apitally-0.15.0.dist-info}/licenses/LICENSE +0 -0
@@ -14,6 +14,12 @@ from urllib.parse import parse_qsl, urlencode, urlparse, urlunparse
|
|
14
14
|
from uuid import uuid4
|
15
15
|
|
16
16
|
from apitally.client.logging import get_logger
|
17
|
+
from apitally.client.sentry import get_sentry_event_id_async
|
18
|
+
from apitally.client.server_errors import (
|
19
|
+
get_exception_type,
|
20
|
+
get_truncated_exception_msg,
|
21
|
+
get_truncated_exception_traceback,
|
22
|
+
)
|
17
23
|
|
18
24
|
|
19
25
|
logger = get_logger(__name__)
|
@@ -88,6 +94,7 @@ class RequestLoggingConfig:
|
|
88
94
|
log_request_body: Whether to log the request body (only if JSON or plain text)
|
89
95
|
log_response_headers: Whether to log response header values
|
90
96
|
log_response_body: Whether to log the response body (only if JSON or plain text)
|
97
|
+
log_exception: Whether to log unhandled exceptions in case of server errors
|
91
98
|
mask_query_params: Query parameter names to mask in logs. Expects regular expressions.
|
92
99
|
mask_headers: Header names to mask in logs. Expects regular expressions.
|
93
100
|
mask_request_body_callback: Callback to mask the request body. Expects (method, path, body) and returns the masked body as bytes or None.
|
@@ -102,6 +109,7 @@ class RequestLoggingConfig:
|
|
102
109
|
log_request_body: bool = False
|
103
110
|
log_response_headers: bool = True
|
104
111
|
log_response_body: bool = False
|
112
|
+
log_exception: bool = True
|
105
113
|
mask_query_params: List[str] = field(default_factory=list)
|
106
114
|
mask_headers: List[str] = field(default_factory=list)
|
107
115
|
mask_request_body_callback: Optional[Callable[[RequestDict], Optional[bytes]]] = None
|
@@ -153,7 +161,7 @@ class RequestLogger:
|
|
153
161
|
self.config = config or RequestLoggingConfig()
|
154
162
|
self.enabled = self.config.enabled and _check_writable_fs()
|
155
163
|
self.serialize = _get_json_serializer()
|
156
|
-
self.write_deque: deque[
|
164
|
+
self.write_deque: deque[Dict[str, Any]] = deque([], MAX_REQUESTS_IN_DEQUE)
|
157
165
|
self.file_deque: deque[TempGzipFile] = deque([])
|
158
166
|
self.file: Optional[TempGzipFile] = None
|
159
167
|
self.lock = threading.Lock()
|
@@ -163,7 +171,9 @@ class RequestLogger:
|
|
163
171
|
def current_file_size(self) -> int:
|
164
172
|
return self.file.size if self.file is not None else 0
|
165
173
|
|
166
|
-
def log_request(
|
174
|
+
def log_request(
|
175
|
+
self, request: RequestDict, response: ResponseDict, exception: Optional[BaseException] = None
|
176
|
+
) -> None:
|
167
177
|
if not self.enabled or self.suspend_until is not None:
|
168
178
|
return
|
169
179
|
parsed_url = urlparse(request["url"])
|
@@ -215,13 +225,19 @@ class RequestLogger:
|
|
215
225
|
request["headers"] = self._mask_headers(request["headers"]) if self.config.log_request_headers else []
|
216
226
|
response["headers"] = self._mask_headers(response["headers"]) if self.config.log_response_headers else []
|
217
227
|
|
218
|
-
item = {
|
228
|
+
item: Dict[str, Any] = {
|
219
229
|
"uuid": str(uuid4()),
|
220
230
|
"request": _skip_empty_values(request),
|
221
231
|
"response": _skip_empty_values(response),
|
222
232
|
}
|
223
|
-
|
224
|
-
|
233
|
+
if exception is not None and self.config.log_exception:
|
234
|
+
item["exception"] = {
|
235
|
+
"type": get_exception_type(exception),
|
236
|
+
"message": get_truncated_exception_msg(exception),
|
237
|
+
"traceback": get_truncated_exception_traceback(exception),
|
238
|
+
}
|
239
|
+
get_sentry_event_id_async(lambda event_id: item["exception"].update({"sentry_event_id": event_id}))
|
240
|
+
self.write_deque.append(item)
|
225
241
|
|
226
242
|
def write_to_file(self) -> None:
|
227
243
|
if not self.enabled or len(self.write_deque) == 0:
|
@@ -232,7 +248,7 @@ class RequestLogger:
|
|
232
248
|
while True:
|
233
249
|
try:
|
234
250
|
item = self.write_deque.popleft()
|
235
|
-
self.file.write_line(item)
|
251
|
+
self.file.write_line(self.serialize(item))
|
236
252
|
except IndexError:
|
237
253
|
break
|
238
254
|
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import asyncio
|
2
|
+
import contextlib
|
3
|
+
from typing import Callable, Set
|
4
|
+
|
5
|
+
|
6
|
+
_tasks: Set[asyncio.Task] = set()
|
7
|
+
|
8
|
+
|
9
|
+
def get_sentry_event_id_async(cb: Callable[[str], None]) -> None:
|
10
|
+
try:
|
11
|
+
from sentry_sdk.hub import Hub
|
12
|
+
from sentry_sdk.scope import Scope
|
13
|
+
except ImportError:
|
14
|
+
return # pragma: no cover
|
15
|
+
if not hasattr(Scope, "get_isolation_scope") or not hasattr(Scope, "_last_event_id"):
|
16
|
+
# sentry-sdk < 2.2.0 is not supported
|
17
|
+
return # pragma: no cover
|
18
|
+
if Hub.current.client is None:
|
19
|
+
return # sentry-sdk not initialized
|
20
|
+
|
21
|
+
scope = Scope.get_isolation_scope()
|
22
|
+
if event_id := scope._last_event_id:
|
23
|
+
cb(event_id)
|
24
|
+
return
|
25
|
+
|
26
|
+
async def _wait_for_sentry_event_id(scope: Scope) -> None:
|
27
|
+
i = 0
|
28
|
+
while not (event_id := scope._last_event_id) and i < 100:
|
29
|
+
i += 1
|
30
|
+
await asyncio.sleep(0.001)
|
31
|
+
if event_id:
|
32
|
+
cb(event_id)
|
33
|
+
|
34
|
+
with contextlib.suppress(RuntimeError): # ignore no running loop
|
35
|
+
loop = asyncio.get_running_loop()
|
36
|
+
task = loop.create_task(_wait_for_sentry_event_id(scope))
|
37
|
+
_tasks.add(task)
|
38
|
+
task.add_done_callback(_tasks.discard)
|
apitally/client/server_errors.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
import asyncio
|
4
|
-
import contextlib
|
5
4
|
import sys
|
6
5
|
import threading
|
7
6
|
import traceback
|
@@ -9,6 +8,8 @@ from collections import Counter
|
|
9
8
|
from dataclasses import dataclass
|
10
9
|
from typing import Any, Dict, List, Optional, Set
|
11
10
|
|
11
|
+
from apitally.client.sentry import get_sentry_event_id_async
|
12
|
+
|
12
13
|
|
13
14
|
MAX_EXCEPTION_MSG_LENGTH = 2048
|
14
15
|
MAX_EXCEPTION_TRACEBACK_LENGTH = 65536
|
@@ -34,49 +35,17 @@ class ServerErrorCounter:
|
|
34
35
|
def add_server_error(self, consumer: Optional[str], method: str, path: str, exception: BaseException) -> None:
|
35
36
|
if not isinstance(exception, BaseException):
|
36
37
|
return # pragma: no cover
|
37
|
-
exception_type = type(exception)
|
38
38
|
with self._lock:
|
39
39
|
server_error = ServerError(
|
40
40
|
consumer=consumer,
|
41
41
|
method=method.upper(),
|
42
42
|
path=path,
|
43
|
-
type=
|
44
|
-
msg=
|
45
|
-
traceback=
|
43
|
+
type=get_exception_type(exception),
|
44
|
+
msg=get_truncated_exception_msg(exception),
|
45
|
+
traceback=get_truncated_exception_traceback(exception),
|
46
46
|
)
|
47
47
|
self.error_counts[server_error] += 1
|
48
|
-
|
49
|
-
|
50
|
-
def capture_sentry_event_id(self, server_error: ServerError) -> None:
|
51
|
-
try:
|
52
|
-
from sentry_sdk.hub import Hub
|
53
|
-
from sentry_sdk.scope import Scope
|
54
|
-
except ImportError:
|
55
|
-
return # pragma: no cover
|
56
|
-
if not hasattr(Scope, "get_isolation_scope") or not hasattr(Scope, "_last_event_id"):
|
57
|
-
# sentry-sdk < 2.2.0 is not supported
|
58
|
-
return # pragma: no cover
|
59
|
-
if Hub.current.client is None:
|
60
|
-
return # sentry-sdk not initialized
|
61
|
-
|
62
|
-
scope = Scope.get_isolation_scope()
|
63
|
-
if event_id := scope._last_event_id:
|
64
|
-
self.sentry_event_ids[server_error] = event_id
|
65
|
-
return
|
66
|
-
|
67
|
-
async def _wait_for_sentry_event_id(scope: Scope) -> None:
|
68
|
-
i = 0
|
69
|
-
while not (event_id := scope._last_event_id) and i < 100:
|
70
|
-
i += 1
|
71
|
-
await asyncio.sleep(0.001)
|
72
|
-
if event_id:
|
73
|
-
self.sentry_event_ids[server_error] = event_id
|
74
|
-
|
75
|
-
with contextlib.suppress(RuntimeError): # ignore no running loop
|
76
|
-
loop = asyncio.get_running_loop()
|
77
|
-
task = loop.create_task(_wait_for_sentry_event_id(scope))
|
78
|
-
self._tasks.add(task)
|
79
|
-
task.add_done_callback(self._tasks.discard)
|
48
|
+
get_sentry_event_id_async(lambda event_id: self.sentry_event_ids.update({server_error: event_id}))
|
80
49
|
|
81
50
|
def get_and_reset_server_errors(self) -> List[Dict[str, Any]]:
|
82
51
|
data: List[Dict[str, Any]] = []
|
@@ -98,29 +67,34 @@ class ServerErrorCounter:
|
|
98
67
|
self.sentry_event_ids.clear()
|
99
68
|
return data
|
100
69
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
70
|
+
|
71
|
+
def get_exception_type(exception: BaseException) -> str:
|
72
|
+
exception_type = type(exception)
|
73
|
+
return f"{exception_type.__module__}.{exception_type.__qualname__}"
|
74
|
+
|
75
|
+
|
76
|
+
def get_truncated_exception_msg(exception: BaseException) -> str:
|
77
|
+
msg = str(exception).strip()
|
78
|
+
if len(msg) <= MAX_EXCEPTION_MSG_LENGTH:
|
79
|
+
return msg
|
80
|
+
suffix = "... (truncated)"
|
81
|
+
cutoff = MAX_EXCEPTION_MSG_LENGTH - len(suffix)
|
82
|
+
return msg[:cutoff] + suffix
|
83
|
+
|
84
|
+
|
85
|
+
def get_truncated_exception_traceback(exception: BaseException) -> str:
|
86
|
+
prefix = "... (truncated) ...\n"
|
87
|
+
cutoff = MAX_EXCEPTION_TRACEBACK_LENGTH - len(prefix)
|
88
|
+
lines = []
|
89
|
+
length = 0
|
90
|
+
if sys.version_info >= (3, 10):
|
91
|
+
traceback_lines = traceback.format_exception(exception)
|
92
|
+
else:
|
93
|
+
traceback_lines = traceback.format_exception(type(exception), exception, exception.__traceback__)
|
94
|
+
for line in traceback_lines[::-1]:
|
95
|
+
if length + len(line) > cutoff:
|
96
|
+
lines.append(prefix)
|
97
|
+
break
|
98
|
+
lines.append(line)
|
99
|
+
length += len(line)
|
100
|
+
return "".join(lines[::-1]).strip()
|
apitally/django.py
CHANGED
apitally/flask.py
CHANGED
apitally/litestar.py
CHANGED
@@ -251,6 +251,7 @@ class ApitallyPlugin(InitPluginProtocol):
|
|
251
251
|
"size": response_size,
|
252
252
|
"body": response_body,
|
253
253
|
},
|
254
|
+
exception=request.state["exception"] if "exception" in request.state else None,
|
254
255
|
)
|
255
256
|
|
256
257
|
def get_path(self, request: Request) -> Optional[str]:
|
apitally/starlette.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apitally
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.15.0
|
4
4
|
Summary: Simple API monitoring & analytics for REST APIs built with FastAPI, Flask, Django, Starlette and Litestar.
|
5
5
|
Project-URL: Homepage, https://apitally.io
|
6
6
|
Project-URL: Documentation, https://docs.apitally.io
|
@@ -80,14 +80,13 @@ Description-Content-Type: text/markdown
|
|
80
80
|
|
81
81
|
---
|
82
82
|
|
83
|
-
# Apitally
|
83
|
+
# Apitally SDK for Python
|
84
84
|
|
85
85
|
[](https://github.com/apitally/apitally-py/actions)
|
86
86
|
[](https://codecov.io/gh/apitally/apitally-py)
|
87
87
|
[](https://pypi.org/project/apitally/)
|
88
88
|
|
89
|
-
This
|
90
|
-
frameworks:
|
89
|
+
This SDK for Apitally currently supports the following Python web frameworks:
|
91
90
|
|
92
91
|
- [FastAPI](https://docs.apitally.io/frameworks/fastapi)
|
93
92
|
- [Django REST Framework](https://docs.apitally.io/frameworks/django-rest-framework)
|
@@ -103,19 +102,27 @@ the 📚 [documentation](https://docs.apitally.io).
|
|
103
102
|
|
104
103
|
### API analytics
|
105
104
|
|
106
|
-
Track traffic, error and performance metrics for your API, each endpoint and
|
105
|
+
Track traffic, error and performance metrics for your API, each endpoint and
|
106
|
+
individual API consumers, allowing you to make informed, data-driven engineering
|
107
|
+
and product decisions.
|
107
108
|
|
108
109
|
### Error tracking
|
109
110
|
|
110
|
-
Understand which validation rules in your endpoints cause client errors. Capture
|
111
|
+
Understand which validation rules in your endpoints cause client errors. Capture
|
112
|
+
error details and stack traces for 500 error responses, and have them linked to
|
113
|
+
Sentry issues automatically.
|
111
114
|
|
112
115
|
### Request logging
|
113
116
|
|
114
|
-
Drill down from insights to individual requests or use powerful filtering to
|
117
|
+
Drill down from insights to individual requests or use powerful filtering to
|
118
|
+
understand how consumers have interacted with your API. Configure exactly what
|
119
|
+
is included in the logs to meet your requirements.
|
115
120
|
|
116
121
|
### API monitoring & alerting
|
117
122
|
|
118
|
-
Get notified immediately if something isn't right using custom alerts, synthetic
|
123
|
+
Get notified immediately if something isn't right using custom alerts, synthetic
|
124
|
+
uptime checks and heartbeat monitoring. Notifications can be delivered via
|
125
|
+
email, Slack or Microsoft Teams.
|
119
126
|
|
120
127
|
## Install
|
121
128
|
|
@@ -191,8 +198,8 @@ app.wsgi_app = ApitallyMiddleware(
|
|
191
198
|
|
192
199
|
### Starlette
|
193
200
|
|
194
|
-
This is an example of how to add the Apitally middleware to a Starlette
|
195
|
-
For further instructions, see our
|
201
|
+
This is an example of how to add the Apitally middleware to a Starlette
|
202
|
+
application. For further instructions, see our
|
196
203
|
[setup guide for Starlette](https://docs.apitally.io/frameworks/starlette).
|
197
204
|
|
198
205
|
```python
|
@@ -1,24 +1,25 @@
|
|
1
1
|
apitally/__init__.py,sha256=ShXQBVjyiSOHxoQJS2BvNG395W4KZfqMxZWBAR0MZrE,22
|
2
2
|
apitally/common.py,sha256=Y8MRuTUHFUeQkcDrCLUxnqIPRpYIiW8S43T0QUab-_A,1267
|
3
|
-
apitally/django.py,sha256=
|
3
|
+
apitally/django.py,sha256=1gLW5aVbIobjHoa5OzC3K1E85mC2a00PpJIAR9ATko4,16937
|
4
4
|
apitally/django_ninja.py,sha256=-CmrwFFRv7thFOUK_OrOSouhHL9bm5sIBNIQlpyE_2c,166
|
5
5
|
apitally/django_rest_framework.py,sha256=-CmrwFFRv7thFOUK_OrOSouhHL9bm5sIBNIQlpyE_2c,166
|
6
6
|
apitally/fastapi.py,sha256=IfKfgsmIY8_AtnuMTW2sW4qnkya61CAE2vBoIpcc9tk,169
|
7
|
-
apitally/flask.py,sha256=
|
8
|
-
apitally/litestar.py,sha256=
|
7
|
+
apitally/flask.py,sha256=p_u33_FQq2i5AebWB8wYxXX0CPhcX8OJHGWj5dR4sPY,9622
|
8
|
+
apitally/litestar.py,sha256=HThNH-gAnFtLyVU4Eh8L_obd0f3TNLYoTZ8IGgz1ZKE,13610
|
9
9
|
apitally/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
-
apitally/starlette.py,sha256=
|
10
|
+
apitally/starlette.py,sha256=liK1KSEiQolHm1cNfJm6tkmE3uujoVqj8b-2prUVa3o,13277
|
11
11
|
apitally/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
apitally/client/client_asyncio.py,sha256=9mdi9Hmb6-xn7dNdwP84e4PNAHGg2bYdMEgIfPUAtcQ,7003
|
13
13
|
apitally/client/client_base.py,sha256=DvivGeHd3dyOASRvkIo44Zh8RzdBMfH8_rROa2lFbgw,3799
|
14
14
|
apitally/client/client_threading.py,sha256=7JPu2Uulev7X2RiSLx4HJYfvAP6Z5zB_yuSevMfQC7I,7389
|
15
15
|
apitally/client/consumers.py,sha256=w_AFQhVgdtJVt7pVySBvSZwQg-2JVqmD2JQtVBoMkus,2626
|
16
16
|
apitally/client/logging.py,sha256=QMsKIIAFo92PNBUleeTgsrsQa7SEal-oJa1oOHUr1wI,507
|
17
|
-
apitally/client/request_logging.py,sha256=
|
17
|
+
apitally/client/request_logging.py,sha256=OL1jlpHXYpZw2VKRekgNSwZQ0qZJeiiJxKeTYrmP22g,13913
|
18
18
|
apitally/client/requests.py,sha256=RdJyvIqQGVHvS-wjpAPUwcO7byOJ6jO8dYqNTU2Furg,3685
|
19
|
-
apitally/client/
|
19
|
+
apitally/client/sentry.py,sha256=qMjHdI0V7c50ruo1WjmjWc8g6oGDv724vSCvcuZ8G9k,1188
|
20
|
+
apitally/client/server_errors.py,sha256=4B2BKDFoIpoWc55UVH6AIdYSgzj6zxCdMNUW77JjhZw,3423
|
20
21
|
apitally/client/validation_errors.py,sha256=6G8WYWFgJs9VH9swvkPXJGuOJgymj5ooWA9OwjUTbuM,1964
|
21
|
-
apitally-0.
|
22
|
-
apitally-0.
|
23
|
-
apitally-0.
|
24
|
-
apitally-0.
|
22
|
+
apitally-0.15.0.dist-info/METADATA,sha256=CZxfxtM3p1RBy5ICdnuhjAWt4CESHhKtAIFEFtKCbjw,8643
|
23
|
+
apitally-0.15.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
24
|
+
apitally-0.15.0.dist-info/licenses/LICENSE,sha256=vbLzC-4TddtXX-_AFEBKMYWRlxC_MN0g66QhPxo8PgY,1065
|
25
|
+
apitally-0.15.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|