sf-veritas 0.11.10__cp314-cp314-manylinux_2_28_x86_64.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.
- sf_veritas/__init__.py +46 -0
- sf_veritas/_auto_preload.py +73 -0
- sf_veritas/_sfconfig.c +162 -0
- sf_veritas/_sfconfig.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sfcrashhandler.c +267 -0
- sf_veritas/_sfcrashhandler.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sffastlog.c +953 -0
- sf_veritas/_sffastlog.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sffastnet.c +994 -0
- sf_veritas/_sffastnet.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sffastnetworkrequest.c +727 -0
- sf_veritas/_sffastnetworkrequest.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sffuncspan.c +2791 -0
- sf_veritas/_sffuncspan.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sffuncspan_config.c +730 -0
- sf_veritas/_sffuncspan_config.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sfheadercheck.c +341 -0
- sf_veritas/_sfheadercheck.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sfnetworkhop.c +1454 -0
- sf_veritas/_sfnetworkhop.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sfservice.c +1223 -0
- sf_veritas/_sfservice.cpython-314-x86_64-linux-gnu.so +0 -0
- sf_veritas/_sfteepreload.c +6227 -0
- sf_veritas/app_config.py +57 -0
- sf_veritas/cli.py +336 -0
- sf_veritas/constants.py +10 -0
- sf_veritas/custom_excepthook.py +304 -0
- sf_veritas/custom_log_handler.py +146 -0
- sf_veritas/custom_output_wrapper.py +153 -0
- sf_veritas/custom_print.py +153 -0
- sf_veritas/django_app.py +5 -0
- sf_veritas/env_vars.py +186 -0
- sf_veritas/exception_handling_middleware.py +18 -0
- sf_veritas/exception_metaclass.py +69 -0
- sf_veritas/fast_frame_info.py +116 -0
- sf_veritas/fast_network_hop.py +293 -0
- sf_veritas/frame_tools.py +112 -0
- sf_veritas/funcspan_config_loader.py +693 -0
- sf_veritas/function_span_profiler.py +1313 -0
- sf_veritas/get_preload_path.py +34 -0
- sf_veritas/import_hook.py +62 -0
- sf_veritas/infra_details/__init__.py +3 -0
- sf_veritas/infra_details/get_infra_details.py +24 -0
- sf_veritas/infra_details/kubernetes/__init__.py +3 -0
- sf_veritas/infra_details/kubernetes/get_cluster_name.py +147 -0
- sf_veritas/infra_details/kubernetes/get_details.py +7 -0
- sf_veritas/infra_details/running_on/__init__.py +17 -0
- sf_veritas/infra_details/running_on/kubernetes.py +11 -0
- sf_veritas/interceptors.py +543 -0
- sf_veritas/libsfnettee.so +0 -0
- sf_veritas/local_env_detect.py +118 -0
- sf_veritas/package_metadata.py +6 -0
- sf_veritas/patches/__init__.py +0 -0
- sf_veritas/patches/_patch_tracker.py +74 -0
- sf_veritas/patches/concurrent_futures.py +19 -0
- sf_veritas/patches/constants.py +1 -0
- sf_veritas/patches/exceptions.py +82 -0
- sf_veritas/patches/multiprocessing.py +32 -0
- sf_veritas/patches/network_libraries/__init__.py +99 -0
- sf_veritas/patches/network_libraries/aiohttp.py +294 -0
- sf_veritas/patches/network_libraries/curl_cffi.py +363 -0
- sf_veritas/patches/network_libraries/http_client.py +670 -0
- sf_veritas/patches/network_libraries/httpcore.py +580 -0
- sf_veritas/patches/network_libraries/httplib2.py +315 -0
- sf_veritas/patches/network_libraries/httpx.py +557 -0
- sf_veritas/patches/network_libraries/niquests.py +218 -0
- sf_veritas/patches/network_libraries/pycurl.py +399 -0
- sf_veritas/patches/network_libraries/requests.py +595 -0
- sf_veritas/patches/network_libraries/ssl_socket.py +822 -0
- sf_veritas/patches/network_libraries/tornado.py +360 -0
- sf_veritas/patches/network_libraries/treq.py +270 -0
- sf_veritas/patches/network_libraries/urllib_request.py +483 -0
- sf_veritas/patches/network_libraries/utils.py +598 -0
- sf_veritas/patches/os.py +17 -0
- sf_veritas/patches/threading.py +231 -0
- sf_veritas/patches/web_frameworks/__init__.py +54 -0
- sf_veritas/patches/web_frameworks/aiohttp.py +798 -0
- sf_veritas/patches/web_frameworks/async_websocket_consumer.py +337 -0
- sf_veritas/patches/web_frameworks/blacksheep.py +532 -0
- sf_veritas/patches/web_frameworks/bottle.py +513 -0
- sf_veritas/patches/web_frameworks/cherrypy.py +683 -0
- sf_veritas/patches/web_frameworks/cors_utils.py +122 -0
- sf_veritas/patches/web_frameworks/django.py +963 -0
- sf_veritas/patches/web_frameworks/eve.py +401 -0
- sf_veritas/patches/web_frameworks/falcon.py +931 -0
- sf_veritas/patches/web_frameworks/fastapi.py +738 -0
- sf_veritas/patches/web_frameworks/flask.py +526 -0
- sf_veritas/patches/web_frameworks/klein.py +501 -0
- sf_veritas/patches/web_frameworks/litestar.py +616 -0
- sf_veritas/patches/web_frameworks/pyramid.py +440 -0
- sf_veritas/patches/web_frameworks/quart.py +841 -0
- sf_veritas/patches/web_frameworks/robyn.py +708 -0
- sf_veritas/patches/web_frameworks/sanic.py +874 -0
- sf_veritas/patches/web_frameworks/starlette.py +742 -0
- sf_veritas/patches/web_frameworks/strawberry.py +1446 -0
- sf_veritas/patches/web_frameworks/tornado.py +485 -0
- sf_veritas/patches/web_frameworks/utils.py +170 -0
- sf_veritas/print_override.py +13 -0
- sf_veritas/regular_data_transmitter.py +444 -0
- sf_veritas/request_interceptor.py +401 -0
- sf_veritas/request_utils.py +550 -0
- sf_veritas/segfault_handler.py +116 -0
- sf_veritas/server_status.py +1 -0
- sf_veritas/shutdown_flag.py +11 -0
- sf_veritas/subprocess_startup.py +3 -0
- sf_veritas/test_cli.py +145 -0
- sf_veritas/thread_local.py +1319 -0
- sf_veritas/timeutil.py +114 -0
- sf_veritas/transmit_exception_to_sailfish.py +28 -0
- sf_veritas/transmitter.py +132 -0
- sf_veritas/types.py +47 -0
- sf_veritas/unified_interceptor.py +1678 -0
- sf_veritas/utils.py +39 -0
- sf_veritas-0.11.10.dist-info/METADATA +97 -0
- sf_veritas-0.11.10.dist-info/RECORD +141 -0
- sf_veritas-0.11.10.dist-info/WHEEL +5 -0
- sf_veritas-0.11.10.dist-info/entry_points.txt +2 -0
- sf_veritas-0.11.10.dist-info/top_level.txt +1 -0
- sf_veritas.libs/libbrotlicommon-6ce2a53c.so.1.0.6 +0 -0
- sf_veritas.libs/libbrotlidec-811d1be3.so.1.0.6 +0 -0
- sf_veritas.libs/libcom_err-730ca923.so.2.1 +0 -0
- sf_veritas.libs/libcrypt-52aca757.so.1.1.0 +0 -0
- sf_veritas.libs/libcrypto-bdaed0ea.so.1.1.1k +0 -0
- sf_veritas.libs/libcurl-eaa3cf66.so.4.5.0 +0 -0
- sf_veritas.libs/libgssapi_krb5-323bbd21.so.2.2 +0 -0
- sf_veritas.libs/libidn2-2f4a5893.so.0.3.6 +0 -0
- sf_veritas.libs/libk5crypto-9a74ff38.so.3.1 +0 -0
- sf_veritas.libs/libkeyutils-2777d33d.so.1.6 +0 -0
- sf_veritas.libs/libkrb5-a55300e8.so.3.3 +0 -0
- sf_veritas.libs/libkrb5support-e6594cfc.so.0.1 +0 -0
- sf_veritas.libs/liblber-2-d20824ef.4.so.2.10.9 +0 -0
- sf_veritas.libs/libldap-2-cea2a960.4.so.2.10.9 +0 -0
- sf_veritas.libs/libnghttp2-39367a22.so.14.17.0 +0 -0
- sf_veritas.libs/libpcre2-8-516f4c9d.so.0.7.1 +0 -0
- sf_veritas.libs/libpsl-99becdd3.so.5.3.1 +0 -0
- sf_veritas.libs/libsasl2-7de4d792.so.3.0.0 +0 -0
- sf_veritas.libs/libselinux-d0805dcb.so.1 +0 -0
- sf_veritas.libs/libssh-c11d285b.so.4.8.7 +0 -0
- sf_veritas.libs/libssl-60250281.so.1.1.1k +0 -0
- sf_veritas.libs/libunistring-05abdd40.so.2.1.0 +0 -0
- sf_veritas.libs/libuuid-95b83d40.so.1.3.0 +0 -0
sf_veritas/utils.py
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import json
|
|
2
|
+
from typing import List, Tuple
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def strtobool(val) -> bool:
|
|
6
|
+
"""Convert a string representation of truth to true (1) or false (0).
|
|
7
|
+
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
|
|
8
|
+
are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
|
|
9
|
+
'val' is anything else.
|
|
10
|
+
"""
|
|
11
|
+
val = val.lower()
|
|
12
|
+
if val in ("y", "yes", "t", "true", "on", "1"):
|
|
13
|
+
return True
|
|
14
|
+
elif val in ("n", "no", "f", "false", "off", "0"):
|
|
15
|
+
return False
|
|
16
|
+
else:
|
|
17
|
+
raise ValueError("invalid truth value %r" % (val,))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def is_json_serializable(value):
|
|
21
|
+
try:
|
|
22
|
+
json.dumps(value)
|
|
23
|
+
return True
|
|
24
|
+
except (TypeError, OverflowError):
|
|
25
|
+
return False
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def serialize_json_with_exclusions(input_dict) -> Tuple[str, List[str]]:
|
|
29
|
+
serializable_data = {}
|
|
30
|
+
excluded_fields = []
|
|
31
|
+
|
|
32
|
+
for k, v in input_dict.items():
|
|
33
|
+
if is_json_serializable(v):
|
|
34
|
+
serializable_data[k] = v
|
|
35
|
+
else:
|
|
36
|
+
excluded_fields.append(k)
|
|
37
|
+
|
|
38
|
+
json_str = json.dumps(serializable_data)
|
|
39
|
+
return json_str, excluded_fields
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: sf-veritas
|
|
3
|
+
Version: 0.11.10
|
|
4
|
+
Summary: Middleware for Django, Flask, and FastAPI to intercept requests, logs, and exceptions.
|
|
5
|
+
Author-email: Eric Meadows <em@sailfishqa.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: deepmerge>=1.1.1
|
|
10
|
+
Requires-Dist: fire>=0.7.0
|
|
11
|
+
Requires-Dist: ntplib>=0.4.0
|
|
12
|
+
Requires-Dist: pydantic>=2.9.2
|
|
13
|
+
Requires-Dist: tldextract>=5.1.2
|
|
14
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
15
|
+
Requires-Dist: orjson>=3.11.3
|
|
16
|
+
Requires-Dist: pyyaml>=6.0
|
|
17
|
+
Requires-Dist: tomli>=2.0.0; python_version < "3.11"
|
|
18
|
+
Requires-Dist: wrapt>=1.17.0
|
|
19
|
+
Provides-Extra: django
|
|
20
|
+
Requires-Dist: django; extra == "django"
|
|
21
|
+
Provides-Extra: flask
|
|
22
|
+
Requires-Dist: flask; extra == "flask"
|
|
23
|
+
Provides-Extra: fastapi
|
|
24
|
+
Requires-Dist: fastapi; extra == "fastapi"
|
|
25
|
+
Provides-Extra: requests
|
|
26
|
+
Requires-Dist: requests>=2.25.1; extra == "requests"
|
|
27
|
+
Provides-Extra: httpcore
|
|
28
|
+
Requires-Dist: httpcore[asyncio,http2,socks,trio]>=1.0.9; extra == "httpcore"
|
|
29
|
+
Provides-Extra: httpx
|
|
30
|
+
Requires-Dist: httpx[http2]>=0.28.1; extra == "httpx"
|
|
31
|
+
Provides-Extra: niquests
|
|
32
|
+
Requires-Dist: niquests>=3.15.2; extra == "niquests"
|
|
33
|
+
Provides-Extra: pycurl
|
|
34
|
+
Requires-Dist: pycurl>=7.45.7; extra == "pycurl"
|
|
35
|
+
Provides-Extra: all-network
|
|
36
|
+
Requires-Dist: requests>=2.25.1; extra == "all-network"
|
|
37
|
+
Requires-Dist: httpcore[asyncio,http2,socks,trio]>=1.0.9; extra == "all-network"
|
|
38
|
+
Requires-Dist: httpx[http2]>=0.28.1; extra == "all-network"
|
|
39
|
+
Requires-Dist: niquests>=3.15.2; extra == "all-network"
|
|
40
|
+
Requires-Dist: pycurl>=7.45.7; extra == "all-network"
|
|
41
|
+
|
|
42
|
+
# SF3 Middleware - Currently transmissions are diabled
|
|
43
|
+
|
|
44
|
+
<!-- TODO - turn on thread transmissions -->
|
|
45
|
+
|
|
46
|
+
Middleware for Python (Django, Flask, and FastAPI) to intercept requests, print statements, logs, and exceptions while persisting tracing.
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
|
|
50
|
+
Use Poetry to install:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
poetry add sf-veritas
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Usage
|
|
57
|
+
|
|
58
|
+
### Django, etc
|
|
59
|
+
|
|
60
|
+
**Switch the following:**
|
|
61
|
+
|
|
62
|
+
```sh
|
|
63
|
+
python manage.py runserver 0.0.0.0:8000
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
**To:**
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
sf-veritas API-KEY python manage.py runserver 0.0.0.0:8000
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## TODO - Rename all Sailfish artifacts to Sailfish.ai
|
|
73
|
+
|
|
74
|
+
## Network Hop Calculation Time
|
|
75
|
+
|
|
76
|
+
To evaluate the performance impact of this package, we benchmarked 1000 HTTP requests with and without the package enabled.
|
|
77
|
+
|
|
78
|
+
| Configuration | Mean (ms) | Median (ms) | Std Dev (ms) |
|
|
79
|
+
|-------------------|-----------|-------------|--------------|
|
|
80
|
+
| ✅ With Package | 79.12 | 54.00 | 111.18 |
|
|
81
|
+
| ❌ Without Package | 69.70 | 52.00 | 73.78 |
|
|
82
|
+
|
|
83
|
+
> ⚠️ Note: The package introduces a slight increase in mean response time and variance. This trade-off may be acceptable depending on the value the package provides (e.g., additional logging, monitoring, or security features).
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Optimized Entrypoint Capture (Post-Refactor)
|
|
88
|
+
|
|
89
|
+
After optimizing how the user-code entrypoint is captured (via faster stack inspection), we observed improved stability and performance across 1015 analyzed requests:
|
|
90
|
+
|
|
91
|
+
| Configuration | Mean (ms) | Median (ms) | Std Dev (ms) |
|
|
92
|
+
|-------------------|-----------|-------------|--------------|
|
|
93
|
+
| ✅ With Package | 142.45 | 138.50 | 80.78 |
|
|
94
|
+
| ❌ Without Package | 131.07 | 127.00 | 35.75 |
|
|
95
|
+
|
|
96
|
+
> ⚠️ The optimized implementation added a slight increase in mean latency (~8.7%), but this tradeoff is offset by improved accuracy of entrypoint capture.
|
|
97
|
+
---
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
sf_veritas/__init__.py,sha256=yW7aH8zfKlzLc6m3Md8OJ1edu8M4c86R8DCFbuiZF-o,1602
|
|
2
|
+
sf_veritas/_auto_preload.py,sha256=6XZLx86-7-Rf7XZ97ZHAFucYKz17o_QsI2Ha44V8xD4,3114
|
|
3
|
+
sf_veritas/_sfconfig.c,sha256=TRCGyme_OHJ1S02aqHlbp7MAQQOWQ7JdTs6Nv0DNJfk,5498
|
|
4
|
+
sf_veritas/_sfconfig.cpython-314-x86_64-linux-gnu.so,sha256=7yVDrjQ5UcpdTaZ32ghBK7gRG1rB_UvmVCFRS699lbw,17144
|
|
5
|
+
sf_veritas/_sfcrashhandler.c,sha256=Dwcgsgkb0mQSK3eh4kOe0yVRZDOKSxudKSDbioSQrUI,11110
|
|
6
|
+
sf_veritas/_sfcrashhandler.cpython-314-x86_64-linux-gnu.so,sha256=gNLZoCM91IbiSm8YLQz4w0hJmK0B84eXJ9RujXps1ek,221160
|
|
7
|
+
sf_veritas/_sffastlog.c,sha256=1qeOmRASRF6GG08iMODEELZ6u_2x_d61O7sctRdX2gI,34343
|
|
8
|
+
sf_veritas/_sffastlog.cpython-314-x86_64-linux-gnu.so,sha256=Vqe6dBVgtAHgFPqxg7r2C4iHMaDQALv7JkgYi_R5fh0,38209
|
|
9
|
+
sf_veritas/_sffastnet.c,sha256=qciwgc1PgU2ReisOnJwVhoR8ARiGIwgpqgy4987l8Rk,37748
|
|
10
|
+
sf_veritas/_sffastnet.cpython-314-x86_64-linux-gnu.so,sha256=RdRuXLwVxmdlS-5lk9bBRhrjE9L5gO3MXJovrWImEK0,46457
|
|
11
|
+
sf_veritas/_sffastnetworkrequest.c,sha256=00FnLJCmk0fNgNJ3rMWs3bSMcu5R1Q31qnOUfvPqZ3k,25753
|
|
12
|
+
sf_veritas/_sffastnetworkrequest.cpython-314-x86_64-linux-gnu.so,sha256=75GP5qdRyLPdM9s9pULkmtNmIr_rnGOeDSnfVofCYno,38169
|
|
13
|
+
sf_veritas/_sffuncspan.c,sha256=sR78RQ5CUGVCjyxAS5v_pHxRu93YkHO3YrmIbN1nzqw,105475
|
|
14
|
+
sf_veritas/_sffuncspan.cpython-314-x86_64-linux-gnu.so,sha256=JZmjRDgcXmPU8M71IDaxjkSszjXnJiUw2hPULpvegsw,80009
|
|
15
|
+
sf_veritas/_sffuncspan_config.c,sha256=JouyMruOUglF7GkFuLR-UWmjVCfck21Td8I2OLq4WL8,25507
|
|
16
|
+
sf_veritas/_sffuncspan_config.cpython-314-x86_64-linux-gnu.so,sha256=R4T8dqBWnU0jHOL3oB9btGmrEOUY-hNbH2AbpEh8ISs,27640
|
|
17
|
+
sf_veritas/_sfheadercheck.c,sha256=gfRySvanxADK_V7FQyUj0J5GKKcVOLkpEmx5pi4jve8,10724
|
|
18
|
+
sf_veritas/_sfheadercheck.cpython-314-x86_64-linux-gnu.so,sha256=QBzQwajT0srDeCrZyFXX5yxEGZ6diOyUiYUsEc-m4WA,17880
|
|
19
|
+
sf_veritas/_sfnetworkhop.c,sha256=qTOdbHPQQVdoYNMQUyb3wgYyXhailOILvbTFm02IOEU,52868
|
|
20
|
+
sf_veritas/_sfnetworkhop.cpython-314-x86_64-linux-gnu.so,sha256=xSaJf1qy7zh2U7w4tCbrSg6XnYT9OG0HdkxKIrmyynQ,50865
|
|
21
|
+
sf_veritas/_sfservice.c,sha256=Zn0D7U-Vy74Dni63u0ykPR8WhUIro84t8VFiyw-0UJg,47271
|
|
22
|
+
sf_veritas/_sfservice.cpython-314-x86_64-linux-gnu.so,sha256=ihEbskLLsvALOVGygdhMsK69IGAnTUZ4hmK2j4q7gKg,50577
|
|
23
|
+
sf_veritas/_sfteepreload.c,sha256=ZMaJ01046EqmQamB1ExTLTkHCcmDnLvtWWzHZ3TLW0s,260662
|
|
24
|
+
sf_veritas/app_config.py,sha256=81F3WCNcxbdqsX_mb9NY--oCpEMXG1BrskIIVL8wvRw,2162
|
|
25
|
+
sf_veritas/cli.py,sha256=b2Dowg5LLyHU-TWzypk0DctNjwqhzFDn-LqHZ3EGkyk,12376
|
|
26
|
+
sf_veritas/constants.py,sha256=Ls0g4zzhk4aQ_dbVfnwEIphMk_Z3J9OJGepxPv5Bv6o,718
|
|
27
|
+
sf_veritas/custom_excepthook.py,sha256=ViiwbL5K6_9897aO6H3hg-5g-kuVD96t262J9uUIGpg,9442
|
|
28
|
+
sf_veritas/custom_log_handler.py,sha256=P1ajuzEfCapriRzwqutTgAIbh2PJTaucxEQ1XhYbtXs,5503
|
|
29
|
+
sf_veritas/custom_output_wrapper.py,sha256=uVT-LIEyqaM_wd_T8THWASKVyAhnuv80_iP7sOMwyPI,4920
|
|
30
|
+
sf_veritas/custom_print.py,sha256=h3vIliaE_BryOXaNVAIx5ospZB5GTR5peFoZQ0I25LA,5162
|
|
31
|
+
sf_veritas/django_app.py,sha256=iQR7GB19P2mTa4tSO9-YcMt_86-GcGtdKT6rg2ck-DU,94
|
|
32
|
+
sf_veritas/env_vars.py,sha256=-lXfFmnxiNQ0ESmjoxhHVaWfXMgFhAyJDWj26Pa6F3A,7415
|
|
33
|
+
sf_veritas/exception_handling_middleware.py,sha256=o3tNvNoof59JnLwnKv-FnJN_9H8sbQkSJ1wa-BCIS1c,504
|
|
34
|
+
sf_veritas/exception_metaclass.py,sha256=jvem80P8WHjIGoJAP_DO71ADHZhjX42XgRCfafno20g,2450
|
|
35
|
+
sf_veritas/fast_frame_info.py,sha256=OT7i3-Yeea6l4gY8X3qnEDXU0GmO-rfUelKIA84Dw6c,3135
|
|
36
|
+
sf_veritas/fast_network_hop.py,sha256=NLsuAQGlmljBwaFr3N-mzcVoMEtg-oBNFsfS_y2Y5Vk,10220
|
|
37
|
+
sf_veritas/frame_tools.py,sha256=xVpyq-mrQEnwIZqZXpDtYEm6TX5hJkODrg-86IgACqs,3581
|
|
38
|
+
sf_veritas/funcspan_config_loader.py,sha256=_id59YfKISWP63dfmUgAxaQD5wScmjgGe7rPbSGwf58,27627
|
|
39
|
+
sf_veritas/function_span_profiler.py,sha256=Ye5GYcEiuTnJKzsGhNleaJWnIOn3fl7Rw4G_BHGAMpY,49608
|
|
40
|
+
sf_veritas/get_preload_path.py,sha256=egozS_jGk5mn1Fl2p3AvYSvVC2TjzM3exrxeHbuwiD4,827
|
|
41
|
+
sf_veritas/import_hook.py,sha256=iY7ag7NwjwXNEbsdSmUvDDKn7f2HOVxfCqMhi0cXCIE,2008
|
|
42
|
+
sf_veritas/interceptors.py,sha256=YMmn9f0WL6DmCbtGZzf6tWaHea6GAUxK9XqCLWr3qVY,19577
|
|
43
|
+
sf_veritas/libsfnettee.so,sha256=GjxSzKKJiyi3bxwSvTpJnB7Juvnnkg0cTQTl_SrydRY,108633
|
|
44
|
+
sf_veritas/local_env_detect.py,sha256=t6LT1JM0rN5njYBLHQ0oSH9FLgL9ldsyj6XpRTbpcGY,3932
|
|
45
|
+
sf_veritas/package_metadata.py,sha256=U06HSL0cDQcvSXwOXFU9HiBCPuAHm8NDbvxlNrmdutc,143
|
|
46
|
+
sf_veritas/print_override.py,sha256=zE0dynL7xEe1O8XGesU9nh18AW5afAS3wTTD2Ff206I,313
|
|
47
|
+
sf_veritas/regular_data_transmitter.py,sha256=WhrAV70vEacH7ya--MBnKeK5SkG5lXJV9sWJ2E7FkXs,15448
|
|
48
|
+
sf_veritas/request_interceptor.py,sha256=uszGkC0RmpC_NAK_oQyi5aenPQ8NwdRswHRy5TQisTI,14486
|
|
49
|
+
sf_veritas/request_utils.py,sha256=mEd804IOxI9OZiYLoifDzxztDyUnfWPqRsQZiCkJDz8,19167
|
|
50
|
+
sf_veritas/segfault_handler.py,sha256=z9mDPRjDEHUaGzjyvgv4dif5rJedTMmic2ZafWqlCGI,4648
|
|
51
|
+
sf_veritas/server_status.py,sha256=VZQJpDrjrLKB61A9OH2fjCdJTraI29iZ6x2oVE8lwnA,23
|
|
52
|
+
sf_veritas/shutdown_flag.py,sha256=ivDhin6dqbvXyhafbslZnTPhWlGTZ15rwyTaxA7HcBM,160
|
|
53
|
+
sf_veritas/subprocess_startup.py,sha256=OoYxLGvXlR2eoyg6s4D1-Gv2i7FvoGazkM0yPQulhog,103
|
|
54
|
+
sf_veritas/test_cli.py,sha256=2xjWTDKiavL4W49n7KsW5-2Wu0xRorTyavlNIJoZh_o,4944
|
|
55
|
+
sf_veritas/thread_local.py,sha256=TvpI3qVp91DlnP1d9_tVlzwHKwUkhUcJRD7pAxaon6c,46010
|
|
56
|
+
sf_veritas/timeutil.py,sha256=cUFfmLV300YfbPcokf7dmTEida7uOKrRP5w7iMExoBc,4364
|
|
57
|
+
sf_veritas/transmit_exception_to_sailfish.py,sha256=hKC30o9fEpYuCDwNI3EJ3Qc6hA-Clh2VnsHDmEVQmj4,1024
|
|
58
|
+
sf_veritas/transmitter.py,sha256=G3-4SmqYssvMNfVrZ0ZkfH00NMlo0Co16rUBp6w2t9o,4899
|
|
59
|
+
sf_veritas/types.py,sha256=KZV37s7wqJwx3uwOkwLZGUG3OdINmKa6T23rQYR1XKU,1321
|
|
60
|
+
sf_veritas/unified_interceptor.py,sha256=G1yntUHU9HPvoUVDQxzPUeIgCy6lYQfGq0Ye1kQ_zxo,62992
|
|
61
|
+
sf_veritas/utils.py,sha256=4DWVRCbjnE4nsG_t7A6Qmw35mg0AE5B3oRg_R-WP9PM,1089
|
|
62
|
+
sf_veritas/infra_details/__init__.py,sha256=fm2C1_km1TcbdNXuq8C6Lr8KhHPyUQ3bYYZoZgVYLos,82
|
|
63
|
+
sf_veritas/infra_details/get_infra_details.py,sha256=zhO-lT5xYbZ3ABqcj8bfPuH1Yf234s1c8Kwudc6NtHU,610
|
|
64
|
+
sf_veritas/infra_details/kubernetes/__init__.py,sha256=4g1cFJ7_pbVLzoaaXWOwt6W4Kt8_EBSjR5-sD2L1L4Q,64
|
|
65
|
+
sf_veritas/infra_details/kubernetes/get_cluster_name.py,sha256=q2toNwTmNZmxD7moy8V5gxVQZtaGjNolm4KUHVqiGEY,4680
|
|
66
|
+
sf_veritas/infra_details/kubernetes/get_details.py,sha256=PEzmte-9EC0kCRo-A1R_S0E60RjRKvpwrCmOVG1zSfA,163
|
|
67
|
+
sf_veritas/infra_details/running_on/__init__.py,sha256=zAEbvDQIrafUCIeDQbKaU2orcY1wvKc8z9OL_eyDdeg,271
|
|
68
|
+
sf_veritas/infra_details/running_on/kubernetes.py,sha256=BaIGbtO7aWosmWFn1Uyv_I1DaXICPdOv8AVr1hJodc8,312
|
|
69
|
+
sf_veritas/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
+
sf_veritas/patches/_patch_tracker.py,sha256=SA6gHjVumFaajlJBr9-63Van7jaJBtEj5KghUDQWjRk,1887
|
|
71
|
+
sf_veritas/patches/concurrent_futures.py,sha256=ZqUbg3R5daWpSx2sFgwilAF1D8HDkd95tfPyaASWcKU,562
|
|
72
|
+
sf_veritas/patches/constants.py,sha256=ALgzeZFfzF54_w_q49Ycst7OGocMDv8eHHZkhsJz0vA,87
|
|
73
|
+
sf_veritas/patches/exceptions.py,sha256=m4Zy9MLNxqvfCmexdSSxFXW45A8a_EOthLYwm9yEgkU,2531
|
|
74
|
+
sf_veritas/patches/multiprocessing.py,sha256=g-POVQKQrr7fBmDJmN5jpHy0LCRhmNw_v4ypZfQm_2Y,863
|
|
75
|
+
sf_veritas/patches/os.py,sha256=68w74eQ-BugO2oLR3HKSrtQwc2OrR7lWXzPUGqaI8YA,305
|
|
76
|
+
sf_veritas/patches/threading.py,sha256=8WIwzY77LTS0-E765Ec19AgVX-cqog2A_WpllyJoKcQ,9962
|
|
77
|
+
sf_veritas/patches/network_libraries/__init__.py,sha256=BNVbkDI3FDJdeu_ZNJCfxsHGqZa386bztLKVb3cxwLU,4925
|
|
78
|
+
sf_veritas/patches/network_libraries/aiohttp.py,sha256=4CtveM1d3ITIPdlU9HGkw_wr-6CtaUat01CV8bCmSOI,12101
|
|
79
|
+
sf_veritas/patches/network_libraries/curl_cffi.py,sha256=JYWDohDvbYpNJry5lU9TkpxGCWhG51UO85t8kLsMpKk,13601
|
|
80
|
+
sf_veritas/patches/network_libraries/http_client.py,sha256=cBtpNLXPTcDoMMHFJG-b1qdyTIWRt8-OYsblmh50azw,27521
|
|
81
|
+
sf_veritas/patches/network_libraries/httpcore.py,sha256=XVDxDjB-44YSWKUto-wQcZO311P82KdvkxF8_q33l6s,23319
|
|
82
|
+
sf_veritas/patches/network_libraries/httplib2.py,sha256=FGzKjsHUTmf8ZCbp4pQ1FXSWlossoJxaEJ2jSxbJ7bE,13197
|
|
83
|
+
sf_veritas/patches/network_libraries/httpx.py,sha256=A8lnhSAp3oUVdzkGItYzRwZdjcxEaqYhedeEFe-Jc58,21229
|
|
84
|
+
sf_veritas/patches/network_libraries/niquests.py,sha256=ncrGBlVSV3_90C8iZT8TwbFeiIvk6FCPLLF8oWcrQAA,7807
|
|
85
|
+
sf_veritas/patches/network_libraries/pycurl.py,sha256=zCBoaTtPA14yCG0oCngfN0BV8A-leZE-vOKsTqaj0Nc,16293
|
|
86
|
+
sf_veritas/patches/network_libraries/requests.py,sha256=pQO86vYn5Nkh_5SblgKO9I3MMGdSruDBa50rOSE5jFo,22835
|
|
87
|
+
sf_veritas/patches/network_libraries/ssl_socket.py,sha256=9q8PXFrgHPlP3x4p3cq9mLl2GufrkJKLK8YhCmr0Sgw,34951
|
|
88
|
+
sf_veritas/patches/network_libraries/tornado.py,sha256=dTZNbtZiEVLNp4INy41Q-fgU8FBNKgS--_eTHSlecoc,14219
|
|
89
|
+
sf_veritas/patches/network_libraries/treq.py,sha256=EQBZ8rtUpa1_T23lzZONMezYWM8Mbb51dYlHCtviT1s,9626
|
|
90
|
+
sf_veritas/patches/network_libraries/urllib_request.py,sha256=ppafGbKuBqFH0xeU6R3r4A7tBw-aUfW0L6W31pPV9JA,17569
|
|
91
|
+
sf_veritas/patches/network_libraries/utils.py,sha256=rOA-WqD9RGYaBmRDNt0-d1nlrEvOIZapuQU3PNbSPLE,20815
|
|
92
|
+
sf_veritas/patches/web_frameworks/__init__.py,sha256=jtNAvwmr6K5WGME4s14WVmd2e8QrBeD1us-TjDOaBXY,1802
|
|
93
|
+
sf_veritas/patches/web_frameworks/aiohttp.py,sha256=YjOg7kJeo5aXvHWOzYdTwwYNIr2z9uQd6_qAFUyCYxk,35961
|
|
94
|
+
sf_veritas/patches/web_frameworks/async_websocket_consumer.py,sha256=nFs7wXD30x4c96ztZTbTc4AyuazV7ZC_7dnRSiC7p0w,14990
|
|
95
|
+
sf_veritas/patches/web_frameworks/blacksheep.py,sha256=OWcgmxnbwYJ0PrHAb2FPlUixxZey2QXXH3NYphjF9BY,23116
|
|
96
|
+
sf_veritas/patches/web_frameworks/bottle.py,sha256=Ep1XpmypV21n1cF7jV4sKTZYU4253ROd1-pZaToDL0g,22430
|
|
97
|
+
sf_veritas/patches/web_frameworks/cherrypy.py,sha256=aC0FOgXdQOxe_9uuW2Mhv1f0so7T67kfYpEyStxa8HM,30605
|
|
98
|
+
sf_veritas/patches/web_frameworks/cors_utils.py,sha256=0RoFO0h974cED-lzB9vSwkxAhuF3hsfGR2xSsu2SemI,4312
|
|
99
|
+
sf_veritas/patches/web_frameworks/django.py,sha256=DPHHOX4ap7lolM5Wap_jVLzlP_bkhEHFgbnniUrgo_Y,39449
|
|
100
|
+
sf_veritas/patches/web_frameworks/eve.py,sha256=eCduBt6IxYPuZPmOyC_s_7kV6-IdY4fE0EYwn1ZWChM,17039
|
|
101
|
+
sf_veritas/patches/web_frameworks/falcon.py,sha256=lUdde9YPBFsxdSYU6lSrZDZMj_fuun8TCY48VUWOJTg,42738
|
|
102
|
+
sf_veritas/patches/web_frameworks/fastapi.py,sha256=eZBZGJThdGaeKqIXNC8oc6n2UJJJTXQBxslmmVoT3Ek,32057
|
|
103
|
+
sf_veritas/patches/web_frameworks/flask.py,sha256=d4Ys85aK0eZ8UwUIHOFXbZ0TJPoJw5LBgiYO-mOBobg,21584
|
|
104
|
+
sf_veritas/patches/web_frameworks/klein.py,sha256=1ZKySV1zavUgd5qONS5g5XMd3E2ONTZRPTKuqpTU7s0,24792
|
|
105
|
+
sf_veritas/patches/web_frameworks/litestar.py,sha256=4vcj4duHjsG6Y1y9tAxSnGXvNbjiRmnLt-WYhqpcqE8,25771
|
|
106
|
+
sf_veritas/patches/web_frameworks/pyramid.py,sha256=jOBAoCbqBl4gpjstgfAJbQCAtVh-sCTU5AOF5wDhS54,18921
|
|
107
|
+
sf_veritas/patches/web_frameworks/quart.py,sha256=lvPtR-NtnwPLSL1SLilOgcWF7LyaG_1bVKerYI9P1d8,38872
|
|
108
|
+
sf_veritas/patches/web_frameworks/robyn.py,sha256=jHgEG6yCol-AyYw8xsClhCVyYy2jYUCAQXuJr6Xme2M,32347
|
|
109
|
+
sf_veritas/patches/web_frameworks/sanic.py,sha256=r18Aq0KRLNa8jyDOMeSe3TbHuvqRW2Y0-fE7tND47qc,38559
|
|
110
|
+
sf_veritas/patches/web_frameworks/starlette.py,sha256=JUlEUaRYJV1pC8lLg06ICtbEdcD2LvBxTLvpD_74G4A,33331
|
|
111
|
+
sf_veritas/patches/web_frameworks/strawberry.py,sha256=6SIhiw_MoBZAMaCycb0YliDm1ADCps91SCeu6wjetx4,70920
|
|
112
|
+
sf_veritas/patches/web_frameworks/tornado.py,sha256=ktgQDJN4LKEhc3mqmD5sK-p4_Kg_2wORfqREsEtCtgc,21172
|
|
113
|
+
sf_veritas/patches/web_frameworks/utils.py,sha256=zfP84mLKGNWBQzykBTkVLTbTcpDd2ywsFCNU_7NZxv0,6002
|
|
114
|
+
sf_veritas.libs/libbrotlicommon-6ce2a53c.so.1.0.6,sha256=zyiyGpvmy7huKm-JlWHCMo8WS_JA9XIh55qtQLs8GBA,135913
|
|
115
|
+
sf_veritas.libs/libbrotlidec-811d1be3.so.1.0.6,sha256=dmwMSDMQH7ShACzQjRinGgwh53QUkcxPZXYv0hEpmKI,62193
|
|
116
|
+
sf_veritas.libs/libcom_err-730ca923.so.2.1,sha256=VY1sTtQQu5RJd_Y1BXtBFjqlFhiPCTMwGWZgzqu-LoQ,21545
|
|
117
|
+
sf_veritas.libs/libcrypt-52aca757.so.1.1.0,sha256=Rl6iBH7tI_X3G4lQfsNm9goOdNC29wIf_I77cVjQESc,140977
|
|
118
|
+
sf_veritas.libs/libcrypto-bdaed0ea.so.1.1.1k,sha256=teTU1EbwIqcxLKEwQCCxVDDLNnMUyvbgJRzPb37I3uo,3215921
|
|
119
|
+
sf_veritas.libs/libcurl-eaa3cf66.so.4.5.0,sha256=hroKYAZOcO-4k4jxJH601wsY9b9DcuVPSl2MJm_7zdk,619977
|
|
120
|
+
sf_veritas.libs/libgssapi_krb5-323bbd21.so.2.2,sha256=g7M9iJBAkDqHGJwEbffYKEFzUMxlECksKR-oNoqxJQw,378601
|
|
121
|
+
sf_veritas.libs/libidn2-2f4a5893.so.0.3.6,sha256=tElml3gdyDiZ61Dr9wncteS_pazPfYFpBEhnBI7aqQw,140377
|
|
122
|
+
sf_veritas.libs/libk5crypto-9a74ff38.so.3.1,sha256=H2bSp-k9CESbvUWKOX8THudxFSnVBTe5A965Hmk9DQI,110089
|
|
123
|
+
sf_veritas.libs/libkeyutils-2777d33d.so.1.6,sha256=Lxjn7VlUyYm6A8b4JMCptowYVig9FWTq8mEwh2PphLo,17929
|
|
124
|
+
sf_veritas.libs/libkrb5-a55300e8.so.3.3,sha256=piB8cdNRyNx9shGUUKxu1qZGbeWEtHDmZ87lQICcucU,1027129
|
|
125
|
+
sf_veritas.libs/libkrb5support-e6594cfc.so.0.1,sha256=XqP6drjaA1_eP3XEZn5884n1b9yj9AwSGhNGIyk5YuQ,85161
|
|
126
|
+
sf_veritas.libs/liblber-2-d20824ef.4.so.2.10.9,sha256=6G4ibGHHBo_PBkFm3aMbB01j8Vty9pr3Veg9iEdYU2U,73361
|
|
127
|
+
sf_veritas.libs/libldap-2-cea2a960.4.so.2.10.9,sha256=V-m-eZbx9pvIdNdOdshRynM5LkLogoh72p-hRIx0-bs,360849
|
|
128
|
+
sf_veritas.libs/libnghttp2-39367a22.so.14.17.0,sha256=llfQElLBK10tju2J2kujCoHMuQDnxCASAhoWmQfQOO8,175025
|
|
129
|
+
sf_veritas.libs/libpcre2-8-516f4c9d.so.0.7.1,sha256=IcbljW_oKuAVlrAwKz8qtRZxfi1sQH_iKxPSoNpzsmU,547745
|
|
130
|
+
sf_veritas.libs/libpsl-99becdd3.so.5.3.1,sha256=-lZ0GFyiQL7qiljsxFuu4GogshjaGJ-ny0F_oGpMiX8,80217
|
|
131
|
+
sf_veritas.libs/libsasl2-7de4d792.so.3.0.0,sha256=m_47nyN8AdR8gbjvl8eqmCy3_jPPiWCKBJFuDPlmc18,138761
|
|
132
|
+
sf_veritas.libs/libselinux-d0805dcb.so.1,sha256=iYGaLO-LIy5-WEihMiXHpeJUXyq56DDqGU49JbpfTu4,195097
|
|
133
|
+
sf_veritas.libs/libssh-c11d285b.so.4.8.7,sha256=0LTH3uVaOL-nK-nhCfIVf7RhqzJOMBP2BRg7snvmOEA,500185
|
|
134
|
+
sf_veritas.libs/libssl-60250281.so.1.1.1k,sha256=MCNuTI3K8vc-l_BvN5nElqPps2xW3COe2EZnuxtfQrE,666865
|
|
135
|
+
sf_veritas.libs/libunistring-05abdd40.so.2.1.0,sha256=IxfT3Vuwa8TtEgGZDPNNtS5NtygqrJJwvXgaV8Ku3HU,1826161
|
|
136
|
+
sf_veritas.libs/libuuid-95b83d40.so.1.3.0,sha256=Bj-_E8XyWfgC65o6pTuT9qLNcuA97EYDyCUUOfDR2q0,38041
|
|
137
|
+
sf_veritas-0.11.10.dist-info/METADATA,sha256=_XzxAhPPaGH9OgadabjWnJyTwPRW9-pCIsG8r1NYtzM,3396
|
|
138
|
+
sf_veritas-0.11.10.dist-info/WHEEL,sha256=T09gxi8xuh8nKaVGm0R2KkfGhtBi5zcomygs7seFQUw,113
|
|
139
|
+
sf_veritas-0.11.10.dist-info/entry_points.txt,sha256=4SBtcBpbZZNeRmM0CWOr9hUj6K_cWepi2IO3RaH8j8E,56
|
|
140
|
+
sf_veritas-0.11.10.dist-info/top_level.txt,sha256=oGrJM_aM9ICFgDJ_otJR4PL5zmPNsub9j2t1CZ-b0MQ,11
|
|
141
|
+
sf_veritas-0.11.10.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sf_veritas
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|