Last active
October 24, 2023 23:12
-
-
Save pamelafox/1d0535e840c29c4dee7815210df6d24b to your computer and use it in GitHub Desktop.
profiling with yappi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from collections import namedtuple | |
import aiohttp | |
import pytest | |
from azure.core.exceptions import ResourceNotFoundError | |
from azure.core.pipeline.transport import ( | |
AioHttpTransportResponse, | |
AsyncHttpTransport, | |
HttpRequest, | |
) | |
from azure.storage.blob.aio import BlobServiceClient | |
import yappi | |
import app | |
MockToken = namedtuple("MockToken", ["token", "expires_on"]) | |
class MockAzureCredential: | |
async def get_token(self, uri): | |
return MockToken("mock_token", 9999999999) | |
@pytest.mark.asyncio | |
async def test_content_file(monkeypatch, mock_env): | |
class MockAiohttpClientResponse404(aiohttp.ClientResponse): | |
def __init__(self, url, body_bytes, headers=None): | |
self._body = body_bytes | |
self._headers = headers | |
self._cache = {} | |
self.status = 404 | |
self.reason = "Not Found" | |
self._url = url | |
class MockAiohttpClientResponse(aiohttp.ClientResponse): | |
def __init__(self, url, body_bytes, headers=None): | |
self._body = body_bytes | |
self._headers = headers | |
self._cache = {} | |
self.status = 200 | |
self.reason = "OK" | |
self._url = url | |
class MockTransport(AsyncHttpTransport): | |
async def send(self, request: HttpRequest, **kwargs) -> AioHttpTransportResponse: | |
if request.url.endswith("notfound.pdf"): | |
raise ResourceNotFoundError(MockAiohttpClientResponse404(request.url, b"")) | |
else: | |
return AioHttpTransportResponse( | |
request, | |
MockAiohttpClientResponse( | |
request.url, | |
b"test content", | |
{ | |
"Content-Type": "application/octet-stream", | |
"Content-Range": "bytes 0-27/28", | |
"Content-Length": "28", | |
}, | |
), | |
) | |
async def __aenter__(self): | |
return self | |
async def __aexit__(self, *args): | |
pass | |
async def open(self): | |
pass | |
async def close(self): | |
pass | |
yappi.set_clock_type("WALL") | |
with yappi.run(): | |
# Then we can plug this into any SDK via kwargs: | |
blob_client = BlobServiceClient( | |
f"https://{os.environ['AZURE_STORAGE_ACCOUNT']}.blob.core.windows.net", | |
credential=MockAzureCredential(), | |
transport=MockTransport(), | |
) | |
blob_container_client = blob_client.get_container_client(os.environ["AZURE_STORAGE_CONTAINER"]) | |
quart_app = app.create_app() | |
async with quart_app.test_app() as test_app: | |
quart_app.config.update({"blob_container_client": blob_container_client}) | |
client = test_app.test_client() | |
response = await client.get("/content/notfound.pdf") | |
assert response.status_code == 404 | |
yappi.stop() | |
# print to a file TextIO | |
f = open("output.prof", "w") | |
yappi.get_func_stats().print_all(out=f, columns={0: ("name", 135), 1: ("ncall", 8), 2: ("tsub", 8)}) | |
return | |
response = await client.get("/content/role_library.pdf") | |
assert response.status_code == 200 | |
assert response.headers["Content-Type"] == "application/pdf" | |
assert await response.get_data() == b"test content" | |
response = await client.get("/content/role_library.pdf#page=10") | |
assert response.status_code == 200 | |
assert response.headers["Content-Type"] == "application/pdf" | |
assert await response.get_data() == b"test content" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clock type: WALL | |
Ordered by: totaltime, desc | |
name ncall tsub | |
/usr/local/lib/python3.11/asyncio/base_events.py:1845 _UnixSelectorEventLoop._run_once 27 0.000116 | |
/usr/local/lib/python3.11/asyncio/events.py:78 Handle._run 31 0.052616 | |
/workspaces/azure-search-openai-demo/tests/test_content_file.py:25 test_content_file 2/1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:217 QuartClient.get 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:68 QuartClient.open 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:391 QuartClient._make_request 2 0.000072 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:67 TestHTTPConnection.__aexit__ 2 0.035528 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1612 Quart.__call__ 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1623 Quart.asgi_app 2 0.000019 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:44 ASGIHTTPConnection.__call__ 2 0.000018 | |
/usr/local/lib/python3.11/asyncio/tasks.py:399 wait 2 0.000015 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:54 ASGIHTTPConnection.handle_messages 2 0.034978 | |
/usr/local/lib/python3.11/asyncio/queues.py:149 Queue.get 12 0.034932 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:85 TestHTTPConnection._asgi_receive 6 0.034951 | |
/usr/local/lib/python3.11/asyncio/tasks.py:507 _wait 2 0.034939 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:96 ASGIHTTPConnection.handle_request 2 0.000035 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1356 Quart.handle_request 2 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1380 Quart.full_dispatch_request 2 0.000027 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1472 Quart.dispatch_request 2 0.000011 | |
/workspaces/azure-search-openai-demo/app/backend/app.py:72 content_file 2 0.000037 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/decorator_async.py:70 wrapper_use_tracer 4/2 0.000105 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:65 OpenTelemetrySpan.__init__ 6 0.000068 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/__init__.py:41 wrapper 26 0.000054 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/__init__.py:90 get_value 8 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:921 entry_points 1 0.000106 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:930 <genexpr> 161 0.000139 | |
/workspaces/azure-search-openai-demo/app/backend/app.py:276 create_app 2 0.000044 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:42 Quart.wrapper_func 28/8 0.000054 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:606 Quart.add_url_rule 20 0.000098 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:162 QuartMap.add 20 0.000052 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:548 QuartRule.bind 20 0.000020 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:681 QuartRule.compile 20 0.000184 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_itertools.py:4 unique_everseen 161 0.000344 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:722 QuartRule._compile_builder 40 0.000913 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:571 Quart.register_blueprint 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:273 Blueprint.register 2 0.000055 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:87 BlueprintSetupState.add_url_rule 18 0.000047 | |
/usr/local/lib/python3.11/logging/__init__.py:2117 exception 2 0.000004 | |
/usr/local/lib/python3.11/logging/__init__.py:2107 error 2 0.000006 | |
/usr/local/lib/python3.11/logging/__init__.py:1508 RootLogger.error 2 0.000011 | |
/usr/local/lib/python3.11/logging/__init__.py:1610 RootLogger._log 2 0.000018 | |
/usr/local/lib/python3.11/logging/__init__.py:1636 RootLogger.handle 2 0.000011 | |
/usr/local/lib/python3.11/logging/__init__.py:1690 RootLogger.callHandlers 2 0.000020 | |
/usr/local/lib/python3.11/logging/__init__.py:965 _FileHandler.handle 6 0.000020 | |
/usr/local/lib/python3.11/logging/__init__.py:1098 _FileHandler.emit 6 0.000017 | |
/usr/local/lib/python3.11/logging/__init__.py:1216 _FileHandler.emit 2 0.000006 | |
/usr/local/lib/python3.11/logging/__init__.py:942 _FileHandler.format 6 0.000011 | |
/usr/local/lib/python3.11/logging/__init__.py:674 DatetimeFormatter.format 6 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:480 PathDistribution.entry_points 160 0.000136 | |
/usr/local/lib/python3.11/logging/__init__.py:633 DatetimeFormatter.formatException 2 0.000014 | |
/usr/local/lib/python3.11/traceback.py:111 print_exception 2 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:431 <lambda> 16 0.000017 | |
/usr/local/lib/python3.11/ast.py:380 walk 1632 0.000894 | |
/usr/local/lib/python3.11/traceback.py:687 TracebackException.__init__ 2 0.000030 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:358 __new__ 160 0.000275 | |
/usr/local/lib/python3.11/traceback.py:397 _extract_from_extended_frame_gen 2 0.000147 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:829 PathDistribution.read_text 160 0.000450 | |
/usr/local/lib/python3.11/traceback.py:316 FrameSummary.line 536 0.000205 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:362 <setcomp> 160 0.002575 | |
/usr/local/lib/python3.11/linecache.py:26 getline 60 0.000155 | |
/usr/local/lib/python3.11/linecache.py:36 getlines 60 0.000046 | |
/usr/local/lib/python3.11/linecache.py:80 updatecache 12 0.000064 | |
/usr/local/lib/python3.11/ast.py:267 iter_child_nodes 2976 0.002223 | |
/usr/local/lib/python3.11/pathlib.py:1053 PosixPath.read_text 160 0.000182 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_py39compat.py:13 normalized_name 160 0.000085 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:846 PathDistribution._normalized_name 160 0.000394 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:317 _from_text_for 160 0.000213 | |
/usr/local/lib/python3.11/asyncio/tasks.py:436 wait_for 4 0.002488 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:319 <genexpr> 325 0.000164 | |
/usr/local/lib/python3.11/pathlib.py:1036 PosixPath.open 160 0.000107 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/app.py:53 TestApp.__aenter__ 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/app.py:39 TestApp.startup 2 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:252 Quart.__init__ 2 0.000030 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:323 <genexpr> 325 0.000220 | |
/usr/local/lib/python3.11/traceback.py:987 TracebackException.print 2 0.000039 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:289 _prefix_names 56 0.000320 | |
/usr/local/lib/python3.11/traceback.py:886 TracebackException.format 62 0.000047 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_blob_client_async.py:439 BlobClient.download_blob 2 0.000031 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_download_async.py:270 StorageStreamDownloader._setup 2 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_download_async.py:328 StorageStreamDownloader._initial_request 2 0.000024 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1649 Quart.startup 2 0.000024 | |
/workspaces/azure-search-openai-demo/app/backend/app.py:170 setup_clients 2 0.000073 | |
..scode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_blob_operations.py:83 BlobOperations.download 2 0.000042 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:107 <genexpr> 325 0.000262 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_blob_service_client_async.py:119 BlobServiceClient.__init__ 4 0.000075 | |
/usr/local/lib/python3.11/traceback.py:513 StackSummary.format 2 0.000062 | |
/usr/local/lib/python3.11/tokenize.py:392 open 12 0.000072 | |
/usr/local/lib/python3.11/traceback.py:458 StackSummary.format_frame_summary 60 0.000428 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:207 AsyncPipeline.run 2 0.000023 | |
/usr/local/lib/python3.11/ast.py:255 iter_fields 4736 0.001174 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:56 _SansIOAsyncHTTPPolicyRunner.send 22/2 0.000141 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_blob_service_client.py:121 BlobServiceClient.__init__ 4 0.000071 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/_azure_blob_storage.py:53 AzureBlobStorage.__init__ 14 0.000149 | |
/usr/local/lib/python3.11/pathlib.py:757 PosixPath.joinpath 160 0.000086 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:751 _parts 80 0.000126 | |
/usr/local/lib/python3.11/pathlib.py:530 PosixPath._make_child 160 0.000232 | |
..e/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_blob_service_client_async.py:643 BlobServiceClient.get_container_client 4 0.000033 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:752 <listcomp> 80 0.000046 | |
/usr/local/lib/python3.11/ast.py:33 parse 152 0.000105 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_tools_async.py:46 await_result 50/48 0.000100 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:746 _convert 16 0.000022 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_container_client_async.py:114 ContainerClient.__init__ 4 0.000038 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_functools.py:89 pass_none 160 0.000183 | |
/usr/local/lib/python3.11/re/__init__.py:272 _compile 184 0.000173 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_container_client_async.py:1381 ContainerClient.get_blob_client 2 0.000026 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1507 Quart.finalize_request 2 0.000051 | |
..al/lib/python3.11/site-packages/azure/core/pipeline/policies/_authentication_async.py:82 AsyncStorageBearerTokenCredentialPolicy.send 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:53 AzureBlobStorage.__init__ 6 0.000153 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_blob_client_async.py:121 BlobClient.__init__ 2 0.000043 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:113 read 325 0.000464 | |
/usr/local/lib/python3.11/pathlib.py:484 _parse_args 167 0.000308 | |
..ode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_container_client_async.py:130 ContainerClient._build_generated_client 8 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_redirect_async.py:57 AsyncRedirectPolicy.send 2 0.000009 | |
/usr/local/lib/python3.11/traceback.py:577 _extract_caret_anchors_from_line_segment 56 0.000145 | |
/usr/local/lib/python3.11/functools.py:35 update_wrapper 160 0.000439 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:203 EntryPoint.load 1 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_functools.py:99 wrapper 160 0.000084 | |
/usr/local/lib/python3.11/importlib/__init__.py:108 import_module 1 0.000005 | |
<frozen importlib._bootstrap>:1192 _gcd_import 1 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies_async.py:105 ExponentialRetry.send 2 0.000014 | |
<frozen importlib._bootstrap>:1165 _find_and_load 1 0.000022 | |
/usr/local/lib/python3.11/re/_compiler.py:738 compile 4 0.000028 | |
/usr/local/lib/python3.11/traceback.py:349 _walk_tb_with_full_positions 62 0.000033 | |
/usr/local/lib/python3.11/re/__init__.py:178 sub 180 0.000144 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:768 normalize 160 0.000182 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:70 BlobServiceClient.__init__ 10 0.000107 | |
/usr/local/lib/python3.11/traceback.py:363 _get_code_position 60 0.000064 | |
<frozen importlib._bootstrap>:1120 _find_and_load_unlocked 1 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies_async.py:48 AsyncStorageResponseHook.send 2 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:161 RequestContext.__aenter__ 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1560 Quart.process_response 2 0.000043 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:140 RequestContext.push 2 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:359 <setcomp> 160 0.000502 | |
/usr/local/lib/python3.11/re/__init__.py:225 compile 4 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:858 _name_from_stem 160 0.000143 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_container_client.py:140 ContainerClient.__init__ 4 0.000030 | |
/usr/local/lib/python3.11/urllib/request.py:319 Request.__init__ 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:100 RequestContext._push 2 0.000058 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_blob_client.py:156 BlobClient.__init__ 2 0.000039 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:269 _after_request 2 0.000037 | |
..ode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/_configuration.py:37 AzureBlobStorageConfiguration.__init__ 14 0.000041 | |
/usr/local/lib/python3.11/urllib/request.py:343 Request.full_url 2 0.000052 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client_async.py:68 BlobServiceClient._create_pipeline 10 0.000125 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:296 EntryPoints.select 1 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:301 <genexpr> 2 0.000069 | |
..e/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/_configuration.py:49 AzureBlobStorageConfiguration._configure 14 0.000117 | |
/usr/local/lib/python3.11/pathlib.py:56 _PosixFlavour.parse_parts 167 0.000301 | |
/usr/local/lib/python3.11/urllib/request.py:374 Request._parse 2 0.000023 | |
/usr/local/lib/python3.11/pathlib.py:546 PosixPath.__fspath__ 160 0.000096 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:52 RequestContext.match_request 2 0.000018 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/search/documents/aio/_search_client_async.py:64 SearchClient.__init__ 2 0.000028 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_py39compat.py:25 ep_matches 165 0.000126 | |
/usr/local/lib/python3.11/collections/__init__.py:452 Pair._replace 165 0.000119 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:487 MapAdapter.match 2 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/_azure_blob_storage.py:59 <dictcomp> 14 0.000290 | |
<frozen posixpath>:140 basename 167 0.000245 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1167 Quart.request_context 2 0.000007 | |
/usr/local/lib/python3.11/re/_parser.py:972 parse 4 0.000030 | |
/usr/local/lib/python3.11/urllib/parse.py:841 quote 132 0.000112 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:126 RequestContext.__init__ 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:34 RequestContext.__init__ 2 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:528 Quart.create_url_adapter 6 0.000015 | |
<frozen posixpath>:117 splitext 162 0.000154 | |
..scode/.local/lib/python3.11/site-packages/azure/search/documents/_generated/aio/_search_index_client.py:33 SearchIndexClient.__init__ 2 0.000032 | |
/usr/local/lib/python3.11/pathlib.py:536 PurePosixPath.__str__ 322 0.000209 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/routing.py:40 QuartMap.bind_to_request 2 0.000074 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:588 QuartRule._parse_rule 68 0.000195 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:280 Quart.__init__ 2 0.000037 | |
/usr/local/lib/python3.11/re/_parser.py:449 _parse_sub 9/4 0.000049 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_collections.py:28 parse 165 0.000222 | |
/usr/local/lib/python3.11/traceback.py:634 _ExceptionPrintContext.emit 66 0.000056 | |
<frozen abc>:121 __subclasscheck__ 136/58 0.000075 | |
/usr/local/lib/python3.11/tokenize.py:299 detect_encoding 12 0.000053 | |
../vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_configuration.py:37 AzureBlobStorageConfiguration.__init__ 6 0.000028 | |
/usr/local/lib/python3.11/re/_parser.py:509 _parse 9/4 0.000159 | |
<frozen abc>:117 __instancecheck__ 37 0.000018 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:131 StorageHeadersPolicy.on_request 2 0.000026 | |
<frozen importlib._bootstrap>:1054 _find_spec 1 0.000029 | |
<frozen importlib._bootstrap>:666 _load_unlocked 1 0.000006 | |
/usr/local/lib/python3.11/collections/__init__.py:442 _make 165 0.000090 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/utils.py:94 cached_property.__get__ 14/12 0.000183 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:362 _sanitise_origin_set 2 0.000272 | |
..scode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_configuration.py:49 AzureBlobStorageConfiguration._configure 6 0.000075 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:813 <genexpr> 10 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:235 EntryPoint.matches 165 0.000136 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:69 StateMachineMatcher.match 2 0.000025 | |
/usr/local/lib/python3.11/urllib/parse.py:1058 _splittype 2 0.000006 | |
/usr/local/lib/python3.11/urllib/parse.py:917 quote_from_bytes 128 0.000178 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:703 FastPath.search 9 0.000022 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1297 Quart.make_response 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:130 NotFound.get_response 2 0.000022 | |
<string>:1 <lambda> 428 0.000177 | |
/usr/local/lib/python3.11/re/_compiler.py:571 _code 4 0.000025 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:79 _match 10/2 0.000026 | |
/usr/local/lib/python3.11/urllib/parse.py:374 urlparse 22 0.000085 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:59 <dictcomp> 6 0.000171 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:200 EntryPoint.__init__ 165 0.000143 | |
/usr/local/lib/python3.11/uuid.py:674 uuid1 2 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:42 build_download_request 2 0.000042 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:93 _AsyncTransportRunner.send 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:131 AsyncPipeline.__init__ 12 0.000150 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:125 BlobServiceClient.url 46 0.000028 | |
<frozen importlib._bootstrap_external>:934 SourceFileLoader.exec_module 1 0.000018 | |
/usr/local/lib/python3.11/tokenize.py:323 read_or_stop 22 0.000008 | |
/usr/local/lib/python3.11/textwrap.py:470 indent 60 0.000029 | |
<frozen genericpath>:121 _splitext 162 0.000152 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client_async.py:174 AsyncTransportWrapper.send 4/2 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:432 HttpLoggingPolicy.__init__ 26 0.000050 | |
/workspaces/azure-search-openai-demo/tests/test_content_file.py:47 MockTransport.send 2 0.000023 | |
<frozen codecs>:319 IncrementalDecoder.decode 133 0.000104 | |
/usr/local/lib/python3.11/logging/__init__.py:1595 RootLogger.makeRecord 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/_pipeline_client_async.py:155 AsyncPipelineClient.__init__ 16 0.000022 | |
/usr/local/lib/python3.11/typing.py:1304 _SpecialGenericAlias.__instancecheck__ 52 0.000030 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_retry.py:76 RetryPolicy.__init__ 22 0.000164 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:174 cancel_tasks 2 0.000145 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:208 UserAgentPolicy.__init__ 26 0.000079 | |
/usr/local/lib/python3.11/traceback.py:310 FrameSummary._original_line 236 0.000073 | |
/usr/local/lib/python3.11/logging/__init__.py:292 LogRecord.__init__ 2 0.000045 | |
/usr/local/lib/python3.11/asyncio/tasks.py:654 ensure_future 12 0.000010 | |
..scode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_distributed_tracing.py:84 DistributedTracingPolicy.on_request 2 0.000018 | |
/usr/local/lib/python3.11/asyncio/tasks.py:662 _ensure_future 14 0.000037 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:321 _from_text 160 0.000095 | |
/usr/local/lib/python3.11/pathlib.py:523 _format_parsed_parts 164 0.000127 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:512 Quart.auto_find_instance_path 2 0.000006 | |
/usr/local/lib/python3.11/logging/__init__.py:2081 getLogger 28 0.000036 | |
/usr/local/lib/python3.11/traceback.py:561 _byte_offset_to_character_offset 120 0.000098 | |
<frozen os>:674 _Environ.__getitem__ 79 0.000076 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/exceptions.py:357 ResourceNotFoundError.__init__ 2 0.000028 | |
/usr/local/lib/python3.11/urllib/parse.py:1079 _splithost 2 0.000001 | |
/usr/local/lib/python3.11/typing.py:1579 _SpecialGenericAlias.__subclasscheck__ 52 0.000044 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/_pipeline_client_async.py:183 AsyncPipelineClient._build_pipeline 2 0.000047 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:124 valid 294 0.000101 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:231 EntryPoint._for 165 0.000090 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/assertion/rewrite.py:93 AssertionRewritingHook.find_spec 1 0.000010 | |
<frozen importlib._bootstrap_external>:1007 SourceFileLoader.get_code 1 0.000026 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/wrappers/response.py:144 Response.__init__ 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:764 find_package 2 0.000015 | |
/usr/local/lib/python3.11/re/_compiler.py:37 _compile 15/4 0.000083 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/routing.py:12 QuartRule.__init__ 20 0.000036 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:447 parse_query 10 0.000046 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/assertion/rewrite.py:180 AssertionRewritingHook._early_rewrite_bailout 1 0.000028 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:64 ASGIHTTPConnection._create_request_from_scope 2 0.000028 | |
..de/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_distributed_tracing.py:143 DistributedTracingPolicy.on_exception 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/exceptions.py:291 ResourceNotFoundError.__init__ 2 0.000016 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:38 StateMachineMatcher.add 20 0.000082 | |
/usr/local/lib/python3.11/logging/__init__.py:1327 Manager.getLogger 28 0.000056 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:353 QuartMap.update 2 0.000018 | |
/usr/local/lib/python3.11/pathlib.py:515 _from_parsed_parts 161 0.000086 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:411 create_configuration 4 0.000050 | |
..vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_distributed_tracing.py:106 DistributedTracingPolicy.end_span 2 0.000014 | |
/usr/local/lib/python3.11/linecache.py:52 checkcache 24 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/response.py:108 Response.__init__ 4 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/settings.py:260 PrioritizedSetting.__call__ 10 0.000031 | |
/usr/local/lib/python3.11/textwrap.py:482 prefixed_lines 224 0.000064 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:706 FastPath.mtime 9 0.000032 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:977 Quart.handle_user_exception 2 0.000010 | |
/usr/local/lib/python3.11/urllib/parse.py:452 urlsplit 5 0.000059 | |
<frozen importlib._bootstrap_external>:1496 find_spec 1 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:175 QuartMap.bind 2 0.000011 | |
<frozen importlib._bootstrap>:1207 _handle_fromlist 108 0.000069 | |
/usr/local/lib/python3.11/asyncio/base_events.py:429 _UnixSelectorEventLoop.create_task 12 0.000050 | |
..local/lib/python3.11/site-packages/azure/search/documents/_generated/aio/_configuration.py:30 SearchIndexClientConfiguration.__init__ 2 0.000011 | |
<frozen _collections_abc>:771 _Environ.get 53 0.000024 | |
<frozen os>:773 getenv 44 0.000025 | |
<frozen importlib._bootstrap_external>:1464 _get_spec 1 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_redirect.py:76 AsyncRedirectPolicy.__init__ 26 0.000073 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_container_client.py:172 ContainerClient._format_url 18 0.000024 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1087 Quart.ensure_async 10 0.000008 | |
/usr/local/lib/python3.11/contextlib.py:132 _GeneratorContextManager.__enter__ 8 0.000007 | |
<frozen posixpath>:41 _get_sep 193 0.000066 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:441 QuartRule.__init__ 20 0.000061 | |
/home/vscode/.local/lib/python3.11/site-packages/aiohttp/client_reqrep.py:825 MockAiohttpClientResponse404.__repr__ 4 0.000076 | |
/usr/local/lib/python3.11/asyncio/coroutines.py:34 iscoroutine 18 0.000011 | |
/usr/local/lib/python3.11/pathlib.py:469 __new__ 5 0.000009 | |
/usr/local/lib/python3.11/selectors.py:451 EpollSelector.select 28 0.000043 | |
<frozen importlib._bootstrap_external>:1604 FileFinder.find_spec 1 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:307 _apply_cors 2 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:93 is_coroutine_function 10 0.000009 | |
/usr/local/lib/python3.11/contextlib.py:434 suppress.__exit__ 227 0.000071 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/utils.py:170 make_test_scope 2 0.000019 | |
/usr/local/lib/python3.11/asyncio/base_events.py:751 _UnixSelectorEventLoop.call_soon 32 0.000028 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:951 Quart.handle_http_exception 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:255 <genexpr> 331 0.000069 | |
..cal/lib/python3.11/site-packages/azure/search/documents/_generated/aio/_configuration.py:45 SearchIndexClientConfiguration._configure 2 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/local.py:303 _ProxyLookup.__get__ 42 0.000041 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:111 ASGIHTTPConnection._send_response 2 0.000018 | |
/usr/local/lib/python3.11/pathlib.py:504 _from_parts 5 0.000010 | |
<frozen importlib._bootstrap>:566 module_from_spec 1 0.000008 | |
/usr/local/lib/python3.11/traceback.py:815 TracebackException.format_exception_only 4 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/base.py:107 Request.blueprints 8 0.000036 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:108 NotFound.get_body 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/request.py:134 Request.__init__ 2 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:712 FastPath.lookup 1 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:71 Quart.__init__ 2 0.000030 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/_abstract_span.py:264 OpenTelemetrySpan.set_http_attributes 2 0.000020 | |
/usr/local/lib/python3.11/asyncio/coroutines.py:21 iscoroutinefunction 10 0.000019 | |
/usr/local/lib/python3.11/unittest/mock.py:1119 MagicMock.__call__ 2 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1420 Quart.preprocess_request 2 0.000016 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:718 Lookup.__init__ 1 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:78 TestHTTPConnection.as_response 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:227 OpenTelemetrySpan.__exit__ 6 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/rest/_rest_py3.py:93 HttpRequest.__init__ 2 0.000022 | |
<frozen _collections_abc>:941 CaseInsensitiveDict.update 14 0.000026 | |
<frozen codecs>:309 IncrementalDecoder.__init__ 69 0.000050 | |
<frozen importlib._bootstrap>:493 _init_module_attrs 1 0.000039 | |
<frozen os>:756 encode 79 0.000053 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:105 section_pairs 160 0.000074 | |
/usr/local/lib/python3.11/functools.py:65 wraps 160 0.000073 | |
/usr/local/lib/python3.11/linecache.py:147 lazycache 60 0.000053 | |
/usr/local/lib/python3.11/http/cookiejar.py:1680 CookieJar.extract_cookies 2 0.000030 | |
/usr/local/lib/python3.11/re/_compiler.py:509 _compile_info 4 0.000036 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:715 _get_func_code 40 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_blob_client.py:197 BlobClient._format_url 8 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:87 RequestContext.__aexit__ 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:55 StateMachineMatcher.update 2 0.000004 | |
/usr/local/lib/python3.11/contextlib.py:428 suppress.__init__ 227 0.000068 | |
/usr/local/lib/python3.11/asyncio/tasks.py:424 <genexpr> 6 0.000005 | |
<frozen posixpath>:71 join 14 0.000054 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/response.py:253 Response.__init__ 2 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/logging.py:369 LogCaptureHandler.emit 4 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:873 HeaderSet.add 2 0.000007 | |
../python3.11/site-packages/azure/core/pipeline/policies/_authentication_async.py:46 AsyncStorageBearerTokenCredentialPolicy.on_request 2 0.000022 | |
/usr/local/lib/python3.11/inspect.py:409 iscoroutinefunction 10 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:60 _update_state 30/2 0.000047 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:211 OpenTelemetrySpan.__enter__ 4 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:549 use_span 8 0.000022 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:689 FastPath.children 1 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:75 RequestContext.auto_pop 2 0.000007 | |
/usr/local/lib/python3.11/asyncio/base_events.py:709 _UnixSelectorEventLoop.call_later 4 0.000015 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_blob_client.py:761 BlobClient._download_blob_options 2 0.000021 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:89 case_insensitive_dict 8 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/blueprints.py:376 Blueprint._merge_blueprint_funcs 2 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/helpers.py:369 abort 2 0.000019 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:898 HeaderSet.update 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:55 Headers.__getitem__ 26 0.000050 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:250 Quart.static_url_path 4 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/urls.py:112 iri_to_uri 2 0.000018 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies_async.py:147 ExponentialRetry.__init__ 10 0.000030 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/response.py:153 Response.status 4 0.000030 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:225 Quart.static_folder 12 0.000009 | |
/usr/local/lib/python3.11/logging/__init__.py:1087 _FileHandler.flush 6 0.000026 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_base.py:639 AsyncPipelineClient.format_url 2 0.000008 | |
/usr/local/lib/python3.11/asyncio/base_events.py:780 _UnixSelectorEventLoop._call_soon 32 0.000027 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:444 Quart.logger 2 0.000015 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:548 Serializer.__init__ 20 0.000057 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/utils.py:26 make_test_headers_path_and_query_string 2 0.000015 | |
/usr/local/lib/python3.11/unittest/mock.py:1130 MagicMock._increment_mock_call 2 0.000027 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:247 OpenTelemetrySpan.to_header 2 0.000003 | |
/usr/local/lib/python3.11/tokenize.py:329 find_cookie 22 0.000022 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:144 RequestContext.pop 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:50 Headers.__init__ 10 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:88 TestHTTPConnection._asgi_send 6 0.000008 | |
/usr/local/lib/python3.11/inspect.py:391 _has_code_flag 10 0.000029 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:242 AppContext.push 4 0.000020 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/response.py:39 on_update 2 0.000025 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/settings.py:167 convert_tracing_impl 10 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:1374 Deserializer.__init__ 20 0.000053 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/propagate/__init__.py:104 inject 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:288 Headers.set 12 0.000029 | |
/home/vscode/.local/lib/python3.11/site-packages/blinker/base.py:304 NamedSignal.send_async 18 0.000029 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:172 Headers.extend 4 0.000023 | |
<frozen _collections_abc>:778 _Environ.__contains__ 18 0.000016 | |
<frozen importlib._bootstrap_external>:1127 SourceFileLoader.get_data 1 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:372 Headers.__setitem__ 8 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:116 CaseInsensitiveDict.__init__ 8 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:792 Serializer.serialize_data 8 0.000012 | |
/usr/local/lib/python3.11/contextlib.py:141 _GeneratorContextManager.__exit__ 8 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/search/documents/_generated/aio/_search_index_client.py:40 <dictcomp> 2 0.000033 | |
/usr/local/lib/python3.11/platform.py:1119 python_version 26 0.000022 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:774 _join 80 0.000039 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/common.py:61 change_context 8 0.000017 | |
<frozen importlib._bootstrap_external>:140 _path_stat 3 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:493 get_tracer 6 0.000006 | |
/usr/local/lib/python3.11/pathlib.py:239 _PosixFlavour.splitroot 173 0.000045 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:825 Quart._find_error_handler 2 0.000031 | |
...local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies_async.py:240 AsyncStorageBearerTokenCredentialPolicy.__init__ 10 0.000017 | |
/usr/local/lib/python3.11/pathlib.py:94 _PosixFlavour.join_parsed_parts 160 0.000045 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/propagators/composite.py:55 CompositePropagator.inject 2 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:372 _sanitise_header_set 6 0.000008 | |
/usr/local/lib/python3.11/urllib/parse.py:687 parse_qs 10 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/pathlib.py:420 fnmatch_ex 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:94 NotFound.get_description 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:379 Blueprint._merge_blueprint_funcs 2 0.000019 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:84 Headers.get 10 0.000020 | |
/usr/local/lib/python3.11/asyncio/queues.py:110 Queue.put 10 0.000016 | |
/usr/local/lib/python3.11/traceback.py:802 TracebackException._load_lines 2 0.000015 | |
<frozen importlib._bootstrap>:233 _call_with_frames_removed 2 0.000002 | |
/usr/local/lib/python3.11/asyncio/base_events.py:733 _UnixSelectorEventLoop.call_at 4 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:711 _path_is_relative_to 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/logging.py:55 create_logger 2 0.000008 | |
/usr/local/lib/python3.11/urllib/request.py:301 request_host 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:696 FastPath.zip_children 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:246 AppContext.pop 4 0.000018 | |
/usr/local/lib/python3.11/asyncio/events.py:31 Handle.__init__ 36 0.000034 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:240 Headers.__contains__ 14 0.000011 | |
/usr/local/lib/python3.11/encodings/__init__.py:71 search_function 1 0.000011 | |
..al/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_container_operations.py:69 ContainerOperations.__init__ 14 0.000037 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1199 Quart.test_app 2 0.000005 | |
/usr/local/lib/python3.11/urllib/parse.py:119 _coerce_args 49 0.000036 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/local.py:504 _get_current_object 42 0.000031 | |
/home/vscode/.local/lib/python3.11/site-packages/zipp/__init__.py:288 Path.__init__ 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:739 Lookup.search 9 0.000026 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/base.py:95 Request.blueprint 16 0.000022 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_vendor.py:11 _convert_request 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:261 AppContext.__aenter__ 2 0.000004 | |
/usr/local/lib/python3.11/http/cookiejar.py:1599 CookieJar.make_cookies 2 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_encryption.py:60 BlobServiceClient._configure_encryption 20 0.000027 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:338 Headers.setdefault 4 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/app.py:36 TestApp.test_client 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/zipp/__init__.py:132 make 1 0.000005 | |
<frozen importlib._bootstrap>:169 _ModuleLockManager.__enter__ 1 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:90 RequestContext._push_appctx 2 0.000008 | |
/usr/local/lib/python3.11/pathlib.py:703 PurePosixPath.relative_to 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/contextvars_context.py:1 <module> 1 0.000006 | |
..ib/python3.11/site-packages/azure/core/pipeline/policies/_authentication_async.py:38 AsyncStorageBearerTokenCredentialPolicy.__init__ 12 0.000026 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/settings.py:155 _get_opentelemetry_span_if_opentelemetry_is_imported 10 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:839 serialize_basic 8 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/logging.py:133 ColoredLevelFormatter.format 4 0.000006 | |
/usr/local/lib/python3.11/inspect.py:729 getmro 160 0.000035 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_serialize.py:96 get_modify_conditions 2 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/app.py:22 TestApp.__init__ 2 0.000014 | |
/usr/local/lib/python3.11/logging/__init__.py:1734 Logger.isEnabledFor 8 0.000025 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:390 _get_config_or_default 8 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/shared_access_signature.py:50 to_list 10 0.000034 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:895 Quart.test_client 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:366 <lambda> 20 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/base.py:34 Request.__init__ 2 0.000007 | |
/usr/local/lib/python3.11/re/_parser.py:164 SubPattern.__getitem__ 67 0.000028 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:457 _str_header_value 24 0.000020 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:717 Serializer.url 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/markupsafe/__init__.py:24 Markup.wrapped 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/settings.py:133 _get_opentelemetry_span 10 0.000019 | |
<string>:2 State.__init__ 68 0.000031 | |
/usr/local/lib/python3.11/urllib/parse.py:729 parse_qsl 10 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:104 decode_headers 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/click/core.py:1817 AppGroup.__init__ 4 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:78 StorageHeadersPolicy.__init__ 26 0.000023 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:484 Quart.make_config 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/zipp/__init__.py:74 FastLookup.__init__ 1 0.000009 | |
/usr/local/lib/python3.11/wsgiref/handlers.py:19 format_date_time 2 0.000013 | |
/usr/local/lib/python3.11/enum.py:686 __call__ 16 0.000016 | |
/usr/local/lib/python3.11/enum.py:1516 RegexFlag.__and__ 8 0.000016 | |
/usr/local/lib/python3.11/asyncio/queues.py:33 Queue.__init__ 6 0.000020 | |
/usr/local/lib/python3.11/re/_parser.py:174 SubPattern.getwidth 20/9 0.000024 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:61 TestHTTPConnection.__aenter__ 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/response.py:325 Response.set_data 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:426 <genexpr> 2 0.000005 | |
<frozen importlib._bootstrap_external>:727 _compile_bytecode 1 0.000005 | |
/usr/local/lib/python3.11/logging/__init__.py:1561 RootLogger.findCaller 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/configuration.py:74 Configuration.__init__ 26 0.000026 | |
/usr/local/lib/python3.11/logging/__init__.py:228 _acquireLock 34 0.000016 | |
<frozen importlib._bootstrap>:405 ModuleSpec.parent 23 0.000024 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/wrappers/response.py:291 Response.set_data 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:265 AppContext.__aexit__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:401 ExponentialRetry.__init__ 10 0.000025 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:822 PathDistribution.__init__ 160 0.000028 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/helpers.py:559 get_root_path 2 0.000009 | |
/usr/local/lib/python3.11/asyncio/queues.py:137 Queue.put_nowait 10 0.000017 | |
/usr/local/lib/python3.11/contextlib.py:431 suppress.__enter__ 227 0.000028 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_base.py:197 HttpRequest.__init__ 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:58 QuartClient.__init__ 2 0.000009 | |
...local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_service_operations.py:59 ServiceOperations.__init__ 14 0.000024 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:100 encode_headers 4 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/response.py:157 Response._clean_status 4 0.000024 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:850 Aborter.__call__ 2 0.000019 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:771 Serializer.header 6 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:533 get_tracer_provider 6 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:245 UserAgentPolicy.on_request 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/__init__.py:105 set_value 6 0.000007 | |
../vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:257 OpenTelemetrySpan.add_attribute 14 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/_internal.py:159 header_property.__get__ 6 0.000010 | |
<frozen importlib._bootstrap>:392 ModuleSpec.cached 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:380 extend 12 0.000013 | |
/usr/local/lib/python3.11/asyncio/queues.py:175 Queue.get_nowait 10 0.000018 | |
/usr/local/lib/python3.11/platform.py:1002 _sys_version 26 0.000020 | |
<frozen codecs>:260 IncrementalDecoder.__init__ 69 0.000025 | |
/usr/local/lib/python3.11/asyncio/tasks.py:728 gather 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/request.py:231 Request.host 2 0.000009 | |
/usr/local/lib/python3.11/logging/__init__.py:658 DatetimeFormatter.formatMessage 6 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:255 Headers.add 12 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1113 Quart.do_teardown_request 2 0.000007 | |
..local/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_container_operations.py:894 ContainerOperations.__init__ 6 0.000020 | |
<frozen importlib._bootstrap>:179 _get_module_lock 1 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/__init__.py:128 get_current 14 0.000015 | |
/usr/local/lib/python3.11/re/_compiler.py:241 _optimize_charset 2 0.000012 | |
<frozen importlib._bootstrap_external>:567 _get_cached 1 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/_schema.py:42 get_schema_url 6 0.000008 | |
/usr/local/lib/python3.11/contextlib.py:287 helper 8 0.000014 | |
..scode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_blob_operations.py:76 BlobOperations.__init__ 14 0.000018 | |
/usr/local/lib/python3.11/traceback.py:264 FrameSummary.__init__ 60 0.000024 | |
/usr/local/lib/python3.11/urllib/parse.py:164 SplitResult.hostname 6 0.000010 | |
<frozen abc>:105 __new__ 1 0.000004 | |
/usr/local/lib/python3.11/asyncio/events.py:103 TimerHandle.__init__ 4 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:565 QuartRule.get_converter 8 0.000016 | |
/usr/local/lib/python3.11/re/_parser.py:254 Tokenizer.get 33 0.000016 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:204 BlobServiceClient._format_query_string 10 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:93 QuartMap.__init__ 2 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/click/core.py:1501 AppGroup.__init__ 4 0.000011 | |
/usr/local/lib/python3.11/zipfile.py:1245 FastLookup.__init__ 1 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:101 <listcomp> 4 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:720 _find_package_path 2 0.000011 | |
<frozen posixpath>:397 abspath 4 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:883 QuartRule.build_compare_key 20 0.000016 | |
..cal/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_page_blob_operations.py:61 PageBlobOperations.__init__ 14 0.000017 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:868 HeaderSet.__init__ 8 0.000015 | |
/usr/local/lib/python3.11/urllib/parse.py:413 _splitnetloc 4 0.000017 | |
/usr/local/lib/python3.11/logging/__init__.py:237 _releaseLock 34 0.000017 | |
<frozen importlib._bootstrap_external>:437 cache_from_source 2 0.000009 | |
..me/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/propagation/tracecontext.py:89 TraceContextTextMapPropagator.inject 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:477 <setcomp> 20 0.000016 | |
/home/vscode/.local/lib/python3.11/site-packages/markupsafe/__init__.py:260 _escape_argspec 4 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:445 HttpLoggingPolicy.on_request 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:242 Quart.has_static_folder 4 0.000001 | |
..lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_append_blob_operations.py:56 AppendBlobOperations.__init__ 14 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1155 Quart.app_context 4 0.000009 | |
<frozen importlib._bootstrap_external>:1599 FileFinder._get_spec 1 0.000009 | |
/usr/local/lib/python3.11/asyncio/base_events.py:425 _UnixSelectorEventLoop.create_future 10 0.000020 | |
..l/lib/python3.11/site-packages/azure/storage/blob/_generated/aio/operations/_block_blob_operations.py:58 BlockBlobOperations.__init__ 14 0.000014 | |
/usr/local/lib/python3.11/asyncio/events.py:147 TimerHandle.cancel 4 0.000008 | |
/usr/local/lib/python3.11/http/cookiejar.py:1261 CookieJar.__init__ 2 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_custom_hook.py:44 CustomHookPolicy.__init__ 22 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:246 Blueprint.make_setup_state 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:885 distributions 1 0.000004 | |
/usr/local/lib/python3.11/asyncio/base_events.py:700 _UnixSelectorEventLoop.time 32 0.000014 | |
/usr/local/lib/python3.11/re/_parser.py:94 State.closegroup 5 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:630 <setcomp> 20 0.000016 | |
<string>:2 RulePart.__init__ 68 0.000018 | |
..de/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_service_operations.py:361 ServiceOperations.__init__ 6 0.000015 | |
/usr/local/lib/python3.11/traceback.py:645 <lambda> 162 0.000018 | |
/usr/local/lib/python3.11/logging/__init__.py:1479 Logger.info 4 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/_schema.py:34 get_latest_version 6 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:208 cors 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:33 TestHTTPConnection.__init__ 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/sessions.py:34 SecureCookieSessionInterface.make_null_session 2 0.000009 | |
/usr/local/lib/python3.11/platform.py:1187 platform 26 0.000013 | |
/usr/local/lib/python3.11/re/_compiler.py:434 _get_literal_prefix 7/4 0.000014 | |
<frozen importlib._bootstrap_external>:675 _validate_timestamp_pyc 1 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_serialize.py:145 get_api_version 20 0.000017 | |
/usr/local/lib/python3.11/logging/__init__.py:652 DatetimeFormatter.usesTime 6 0.000010 | |
/usr/local/lib/python3.11/traceback.py:173 _safe_string 4 0.000011 | |
/usr/local/lib/python3.11/asyncio/tasks.py:431 _release_waiter 4 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/_internal.py:180 header_property.__set__ 2 0.000002 | |
<frozen posixpath>:150 dirname 6 0.000009 | |
/usr/local/lib/python3.11/logging/__init__.py:2140 info 2 0.000007 | |
/usr/local/lib/python3.11/asyncio/base_futures.py:14 isfuture 16 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/request.py:260 Request.content_length 2 0.000004 | |
/usr/local/lib/python3.11/enum.py:1228 OpenTelemetrySchemaVersion.__format__ 6 0.000009 | |
/usr/local/lib/python3.11/re/_parser.py:233 Tokenizer.__next 65 0.000016 | |
/usr/local/lib/python3.11/urllib/parse.py:205 SplitResult._hostinfo 10 0.000010 | |
/usr/local/lib/python3.11/fnmatch.py:19 fnmatch 2 0.000005 | |
/usr/local/lib/python3.11/re/_parser.py:249 Tokenizer.match 44 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:199 AsyncPipeline._prepare_multipart 2 0.000007 | |
<frozen importlib._bootstrap_external>:126 _path_join 6 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/markupsafe/__init__.py:71 __new__ 14 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:783 <listcomp> 40 0.000015 | |
/usr/local/lib/python3.11/uuid.py:139 UUID.__init__ 2 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:52 _SansIOAsyncHTTPPolicyRunner.__init__ 64 0.000015 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/logging.py:28 has_level_handler 2 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:128 CaseInsensitiveDict.__setitem__ 26 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/blinker/base.py:336 NamedSignal._extract_sender 18 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:111 parse_converter_args 8 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:162 StorageHosts.on_request 2 0.000010 | |
..al/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_append_blob_operations.py:426 AppendBlobOperations.__init__ 6 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:412 discover 1 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:965 HeaderSet.to_header 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/base.py:83 Request.endpoint 50 0.000015 | |
/usr/local/lib/python3.11/asyncio/mixins.py:12 Queue._get_loop 4 0.000012 | |
/usr/local/lib/python3.11/encodings/__init__.py:43 normalize_encoding 1 0.000010 | |
../vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1477 BlobOperations.__init__ 6 0.000014 | |
<werkzeug routing>:1 <module> 40 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:226 UserAgentPolicy.user_agent 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/aio/_download_async.py:200 StorageStreamDownloader.__init__ 2 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:250 ProxyTracerProvider.get_tracer 6 0.000009 | |
/usr/local/lib/python3.11/enum.py:1093 __new__ 16 0.000014 | |
/usr/local/lib/python3.11/unittest/mock.py:762 MagicMock.__setattr__ 6 0.000013 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/rest/_helpers.py:211 HttpRequest.__setattr__ 10 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_aiohttp.py:88 AioHttpTransport.__init__ 4 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/config.py:75 Config.__init__ 2 0.000014 | |
/usr/local/lib/python3.11/logging/__init__.py:1953 basicConfig 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/markupsafe/__init__.py:171 escape 4 0.000002 | |
/workspaces/azure-search-openai-demo/app/backend/app.py:157 ensure_openai_token 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:426 ExponentialRetry.configure_retries 2 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:142 <listcomp> 2 0.000014 | |
/usr/local/lib/python3.11/asyncio/queues.py:95 Queue.empty 34 0.000014 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:87 NotFound.name 4 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:1149 Quart.do_teardown_appcontext 4 0.000006 | |
/usr/local/lib/python3.11/logging/__init__.py:194 _is_internal_frame 10 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:139 CaseInsensitiveDict.__getitem__ 22 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/propagation/__init__.py:38 get_current_span 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:34 _TestWrapper.get_all 4 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_utils.py:97 get_domain 2 0.000001 | |
<frozen importlib._bootstrap_external>:159 _path_isfile 1 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/response.py:38 Response.fget 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/search/documents/_utils.py:16 get_authentication_policy 2 0.000004 | |
/usr/local/lib/python3.11/inspect.py:300 ismethod 12 0.000010 | |
/usr/local/lib/python3.11/logging/__init__.py:1378 Manager._fixupParents 2 0.000009 | |
/usr/local/lib/python3.11/pathlib.py:682 PurePosixPath.with_suffix 1 0.000009 | |
<frozen posixpath>:52 normcase 14 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_distributed_tracing.py:53 _default_network_span_namer 2 0.000007 | |
<frozen os>:760 decode 23 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:434 ProxyTracer.start_span 6 0.000011 | |
/usr/local/lib/python3.11/asyncio/tasks.py:764 _done_callback 2 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/app.py:60 TestApp._asgi_receive 2 0.000004 | |
/usr/local/lib/python3.11/re/_parser.py:82 State.opengroup 5 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/__init__.py:140 attach 6 0.000004 | |
/usr/local/lib/python3.11/_weakrefset.py:85 WeakSet.add 12 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/baggage/propagation/__init__.py:110 W3CBaggagePropagator.inject 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:795 MetadataPathFinder.find_distributions 1 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:442 <genexpr> 10 0.000003 | |
..ocal/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_block_blob_operations.py:666 BlockBlobOperations.__init__ 6 0.000011 | |
/usr/local/lib/python3.11/logging/__init__.py:922 _FileHandler.acquire 12 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:347 _format_shared_key_credential 10 0.000012 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:41 BlueprintSetupState.__init__ 2 0.000010 | |
..vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/models/_models_py3.py:2079 ModifiedAccessConditions.__init__ 2 0.000007 | |
<frozen importlib._bootstrap_external>:150 _path_is_mode_type 1 0.000001 | |
/usr/local/lib/python3.11/re/_compiler.py:396 _simple 6 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:231 AppContext.__init__ 4 0.000006 | |
/usr/local/lib/python3.11/encodings/idna.py:145 Codec.encode 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/_pipeline_client.py:76 PipelineClient.__init__ 6 0.000008 | |
/usr/local/lib/python3.11/re/_parser.py:160 SubPattern.__len__ 27 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:45 TestHTTPConnection.send 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:375 StorageContentValidation.on_request 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/__init__.py:154 detach 6 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:858 serialize_unicode 8 0.000011 | |
/usr/local/lib/python3.11/unittest/mock.py:1127 MagicMock._mock_call 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:136 RequestContext.request 20 0.000011 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:465 ExponentialRetry.increment 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/click/core.py:1202 AppGroup.__init__ 4 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:240 wrapper 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/sessions.py:145 SecureCookieSessionInterface.open_session 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:831 _get_custom_serializers 8 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_base.py:576 PipelineClient.__init__ 22 0.000011 | |
/usr/local/lib/python3.11/contextlib.py:104 _GeneratorContextManager.__init__ 8 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:500 Quart.make_aborter 2 0.000007 | |
/usr/local/lib/python3.11/re/_parser.py:79 State.groups 18 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:850 Quart.trap_http_exception 2 0.000010 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:101 StorageHeadersPolicy.on_request 2 0.000004 | |
/usr/local/lib/python3.11/re/_parser.py:224 Tokenizer.__init__ 4 0.000009 | |
<frozen importlib._bootstrap_external>:778 spec_from_file_location 1 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:158 Headers.items 16 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:18 iter_multi_items 16 0.000007 | |
<frozen importlib._bootstrap>:173 _ModuleLockManager.__exit__ 1 0.000006 | |
/workspaces/azure-search-openai-demo/app/backend/approaches/chatreadretrieveread.py:57 ChatReadRetrieveReadApproach.__init__ 2 0.000007 | |
/usr/local/lib/python3.11/encodings/idna.py:298 getregentry 1 0.000005 | |
/usr/local/lib/python3.11/logging/__init__.py:447 PercentStyle.format 2 0.000004 | |
/usr/local/lib/python3.11/re/_parser.py:172 SubPattern.append 15 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:380 MapAdapter.__init__ 2 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/local.py:288 bind_f 42 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/search/documents/_generated/_serialization.py:1364 Deserializer.__init__ 2 0.000009 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/blueprints.py:300 <lambda> 2 0.000002 | |
...local/lib/python3.11/site-packages/azure/storage/blob/_generated/operations/_page_blob_operations.py:813 PageBlobOperations.__init__ 6 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/contextvars_context.py:40 ContextVarsRuntimeContext.get_current 14 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:537 QuartRule.get_rules 40 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sessions.py:70 NullSession.__init__ 2 0.000004 | |
<frozen importlib._bootstrap>:1101 _sanity_check 1 0.000007 | |
/usr/local/lib/python3.11/logging/__init__.py:1447 Logger.__init__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_authentication.py:45 _enforce_https 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:658 _get_exc_class_and_code 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/contextvars_context.py:31 ContextVarsRuntimeContext.attach 6 0.000003 | |
/usr/local/lib/python3.11/asyncio/events.py:64 TimerHandle.cancel 4 0.000007 | |
/workspaces/azure-search-openai-demo/tests/test_content_file.py:21 MockAzureCredential.get_token 2 0.000006 | |
<frozen _collections_abc>:907 CaseInsensitiveDict.pop 4 0.000005 | |
/usr/local/lib/python3.11/unittest/mock.py:1176 MagicMock._execute_mock_call 2 0.000007 | |
<frozen importlib._bootstrap_external>:642 _classify_pyc 1 0.000003 | |
/usr/local/lib/python3.11/asyncio/locks.py:78 Lock.__init__ 14 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/search/documents/_generated/_serialization.py:548 Serializer.__init__ 2 0.000008 | |
<frozen importlib._bootstrap_external>:1146 SourceFileLoader.path_stats 1 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:459 is_credential_sastoken 10 0.000005 | |
/usr/local/lib/python3.11/asyncio/locks.py:20 Lock.__aexit__ 2 0.000003 | |
/usr/local/lib/python3.11/asyncio/base_events.py:517 _UnixSelectorEventLoop._check_closed 48 0.000008 | |
/usr/local/lib/python3.11/asyncio/base_events.py:1940 _UnixSelectorEventLoop.get_debug 64 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/__init__.py:86 PipelineContext.__setitem__ 6 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/__init__.py:58 __getattr__ 4 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:34 StateMachineMatcher.__init__ 2 0.000006 | |
/usr/local/lib/python3.11/re/_compiler.py:568 isstring 8 0.000007 | |
<frozen importlib._bootstrap_external>:84 _unpack_uint32 3 0.000005 | |
/usr/local/lib/python3.11/urllib/parse.py:175 SplitResult.port 4 0.000004 | |
/usr/local/lib/python3.11/re/_parser.py:446 _uniq 3 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_base.py:378 HttpRequest.prepare_multipart_body 2 0.000007 | |
<frozen importlib._bootstrap_external>:128 <listcomp> 6 0.000006 | |
/usr/local/lib/python3.11/re/_parser.py:286 Tokenizer.tell 23 0.000007 | |
/usr/local/lib/python3.11/_weakrefset.py:39 _remove 8 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:415 Quart._check_setup_finished 28 0.000008 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/sessions.py:132 SecureCookieSessionInterface.get_signing_serializer 2 0.000006 | |
<frozen posixpath>:389 normpath 4 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/helpers.py:27 get_debug_flag 2 0.000001 | |
/usr/local/lib/python3.11/logging/__init__.py:432 PercentStyle.usesTime 6 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:743 ProxyPolicy.__init__ 26 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_blob_service_client.py:142 BlobServiceClient._format_url 20 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/rules.py:788 <listcomp> 40 0.000007 | |
/usr/local/lib/python3.11/asyncio/locks.py:182 Event.set 12 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/assertion/rewrite.py:240 AssertionRewritingHook._is_marked_for_rewrite 1 0.000007 | |
/usr/local/lib/python3.11/asyncio/locks.py:167 Event.__init__ 14 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:194 StorageLoggingPolicy.__init__ 4 0.000006 | |
/usr/local/lib/python3.11/asyncio/queues.py:50 Queue._get 10 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_serialize.py:62 _get_match_headers 2 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/utils.py:72 make_test_body_with_headers 2 0.000006 | |
/usr/local/lib/python3.11/unittest/mock.py:2483 __new__ 4 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/blinker/base.py:375 NamedSignal.receivers_for 18 0.000007 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:783 Prepared.__bool__ 18 0.000007 | |
/usr/local/lib/python3.11/re/__init__.py:253 escape 8 0.000004 | |
/usr/local/lib/python3.11/asyncio/locks.py:14 Lock.__aenter__ 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/baggage/__init__.py:36 get_all 2 0.000003 | |
<frozen importlib._bootstrap_external>:132 _path_split 2 0.000003 | |
/usr/local/lib/python3.11/asyncio/tasks.py:519 _on_completion 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/connections.py:48 TestHTTPConnection.send_complete 2 0.000001 | |
/usr/local/lib/python3.11/re/_compiler.py:384 _mk_bitmap 1 0.000003 | |
/usr/local/lib/python3.11/urllib/parse.py:108 _noop 29 0.000006 | |
<frozen _collections_abc>:78 _check_methods 6 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/http.py:139 quote_header_value 2 0.000003 | |
/usr/local/lib/python3.11/asyncio/tasks.py:707 _GatheringFuture.__init__ 2 0.000005 | |
<frozen importlib._bootstrap>:100 _ModuleLock.acquire 1 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/utils.py:49 get_host 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:128 <lambda> 4 0.000006 | |
/usr/local/lib/python3.11/urllib/parse.py:520 urlunsplit 2 0.000003 | |
/usr/local/lib/python3.11/urllib/parse.py:659 unquote 4 0.000006 | |
..ib/python3.11/site-packages/azure/search/documents/_generated/aio/operations/_documents_operations.py:60 DocumentsOperations.__init__ 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:870 <setcomp> 8 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/settings.py:149 _get_opencensus_span_if_opencensus_is_imported 10 0.000006 | |
/usr/local/lib/python3.11/re/_parser.py:267 Tokenizer.getuntil 1 0.000005 | |
../vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_distributed_tracing.py:80 DistributedTracingPolicy.__init__ 6 0.000004 | |
/usr/local/lib/python3.11/unittest/mock.py:332 MagicMock._get 6 0.000004 | |
<frozen posixpath>:60 isabs 4 0.000004 | |
<frozen _collections_abc>:262 __subclasshook__ 1 0.000004 | |
<frozen _collections_abc>:156 __subclasshook__ 21 0.000004 | |
/usr/local/lib/python3.11/asyncio/queues.py:53 Queue._put 10 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/request.py:118 Request.__init__ 2 0.000006 | |
/usr/local/lib/python3.11/logging/__init__.py:368 LogRecord.getMessage 6 0.000006 | |
<frozen posixpath>:100 split 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:164 Headers.keys 2 0.000003 | |
/usr/local/lib/python3.11/functools.py:421 _unwrap_partial 10 0.000004 | |
/usr/local/lib/python3.11/logging/__init__.py:815 RootLogger.filter 8 0.000006 | |
/usr/local/lib/python3.11/inspect.py:378 isfunction 10 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/exceptions.py:404 ResourceNotFoundError.__str__ 2 0.000006 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/http.py:720 parse_set_header 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_base.py:84 _format_url_section 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:408 ProxyTracer.__init__ 6 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/request.py:45 Body.__init__ 2 0.000004 | |
<frozen _collections_abc>:113 __subclasshook__ 4 0.000003 | |
/usr/local/lib/python3.11/urllib/parse.py:156 SplitResult.username 2 0.000004 | |
/usr/local/lib/python3.11/asyncio/selector_events.py:733 _UnixSelectorEventLoop._process_events 28 0.000005 | |
/usr/local/lib/python3.11/logging/__init__.py:1720 Logger.getEffectiveLevel 6 0.000005 | |
/usr/local/lib/python3.11/asyncio/locks.py:125 Lock.release 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:279 StorageRequestHook.__init__ 4 0.000005 | |
/usr/local/lib/python3.11/logging/__init__.py:929 _FileHandler.release 12 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:47 _TestCookieJarResponse.info 4 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:380 _sanitise_max_age 2 0.000000 | |
<frozen importlib._bootstrap>:748 find_spec 1 0.000003 | |
<frozen _collections_abc>:409 __subclasshook__ 39 0.000005 | |
/usr/local/lib/python3.11/logging/__init__.py:164 <lambda> 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:145 CaseInsensitiveDict.__iter__ 4 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:105 <listcomp> 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/pluggy/_tracing.py:68 TagTracerSub.__call__ 1 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/contextvars_context.py:44 ContextVarsRuntimeContext.detach 6 0.000002 | |
/usr/local/lib/python3.11/logging/__init__.py:440 PercentStyle._format 2 0.000005 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/logging.py:205 PercentStyleMultiline.format 4 0.000005 | |
<frozen importlib._bootstrap>:71 _ModuleLock.__init__ 1 0.000003 | |
/usr/local/lib/python3.11/uuid.py:280 UUID.__str__ 2 0.000004 | |
/usr/local/lib/python3.11/enum.py:1195 OpenTelemetrySchemaVersion.__str__ 6 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_generated/_serialization.py:297 ModifiedAccessConditions.__init__ 2 0.000004 | |
/usr/local/lib/python3.11/fnmatch.py:64 fnmatchcase 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:235 Quart.static_folder 2 0.000003 | |
<frozen importlib._bootstrap>:920 find_spec 1 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/json/provider.py:37 DefaultJSONProvider.__init__ 2 0.000004 | |
/usr/local/lib/python3.11/re/_compiler.py:214 _compile_charset 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_serialize.py:87 get_access_conditions 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:283 StorageLoggingPolicy.__init__ 26 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:488 Quart.after_request 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_redirect.py:95 AsyncRedirectPolicy.configure_redirects 2 0.000004 | |
/workspaces/azure-search-openai-demo/app/backend/approaches/retrievethenread.py:40 RetrieveThenReadApproach.__init__ 2 0.000004 | |
/usr/local/lib/python3.11/asyncio/queues.py:47 Queue._init 6 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/exceptions.py:391 _parse_odata_body 2 0.000004 | |
<frozen codecs>:94 __new__ 1 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:196 BlobServiceClient.api_version 6 0.000004 | |
/workspaces/azure-search-openai-demo/app/backend/core/authentication.py:28 AuthenticationHelper.__init__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:903 Quart.before_websocket 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:688 ContentDecodePolicy.on_request 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:89 _AsyncTransportRunner.__init__ 12 0.000004 | |
/usr/local/lib/python3.11/zipfile.py:1872 FastLookup.__del__ 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/click/core.py:867 AppGroup.__init__ 4 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/request.py:104 Body.set_complete 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/converters.py:66 UnicodeConverter.__init__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:198 StorageLoggingPolicy.on_request 2 0.000004 | |
/workspaces/azure-search-openai-demo/tests/test_content_file.py:29 MockAiohttpClientResponse404.__init__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:148 CaseInsensitiveDict.__len__ 4 0.000000 | |
/workspaces/azure-search-openai-demo/tests/conftest.py:24 MockAzureCredential.get_token 1 0.000004 | |
/usr/local/lib/python3.11/re/_parser.py:109 SubPattern.__init__ 15 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/logging.py:36 <genexpr> 6 0.000004 | |
<frozen _collections_abc>:315 __subclasshook__ 16 0.000004 | |
/usr/local/lib/python3.11/http/cookiejar.py:1227 deepvalues 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:67 is_exhausted 2 0.000002 | |
/usr/local/lib/python3.11/http/cookiejar.py:1753 CookieJar.__iter__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/span.py:517 NonRecordingSpan.set_attribute 14 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:847 NullSession.__init__ 2 0.000004 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:450 <listcomp> 10 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/converters.py:37 PathConverter.__init__ 8 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base.py:44 cleanup_kwargs_for_transport 2 0.000003 | |
/usr/local/lib/python3.11/urllib/parse.py:421 _checknetloc 5 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:683 FastPath.__init__ 9 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:347 StorageContentValidation.__init__ 4 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/aiohttp/client_reqrep.py:784 MockAiohttpClientResponse404.headers 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/contextvars_context.py:26 ContextVarsRuntimeContext.__init__ 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/routing.py:77 _normalise_host 4 0.000003 | |
/usr/local/lib/python3.11/urllib/parse.py:1189 _splittag 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:283 StorageRequestHook.on_request 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/_schema.py:38 get_attribute_mappings 6 0.000003 | |
/usr/local/lib/python3.11/re/_compiler.py:386 <listcomp> 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/app.py:447 Quart.before_serving 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:645 Context.__init__ 1 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:77 NotFound.__init__ 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/configuration.py:134 ConnectionConfiguration.__init__ 4 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/__init__.py:53 PipelineContext.__init__ 2 0.000003 | |
<frozen importlib._bootstrap>:1026 _ImportLockContext.__enter__ 5 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/search/documents/_index_documents_batch.py:27 IndexDocumentsBatch.__init__ 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:809 _search_paths 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies_async.py:44 AsyncStorageResponseHook.__init__ 4 0.000003 | |
<frozen importlib._bootstrap>:125 _ModuleLock.release 1 0.000002 | |
/usr/local/lib/python3.11/enum.py:193 property.__get__ 2 0.000003 | |
/usr/local/lib/python3.11/logging/__init__.py:202 _checkLevel 2 0.000003 | |
/usr/local/lib/python3.11/unittest/mock.py:2515 _Call.__init__ 4 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/response.py:69 DataBody.__init__ 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client_async.py:171 AsyncTransportWrapper.__init__ 6 0.000003 | |
/usr/local/lib/python3.11/asyncio/locks.py:194 Event.clear 10 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:248 Headers.__iter__ 10 0.000002 | |
/usr/local/lib/python3.11/urllib/parse.py:1037 unwrap 2 0.000003 | |
/usr/local/lib/python3.11/re/_compiler.py:465 _get_charset_prefix 3 0.000003 | |
<frozen importlib.util>:73 find_spec 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:839 Aborter.__init__ 2 0.000003 | |
/usr/local/lib/python3.11/pathlib.py:622 PurePosixPath.name 4 0.000003 | |
/usr/local/lib/python3.11/threading.py:90 RLock 2 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/response_handlers.py:88 process_storage_error 2 0.000003 | |
/usr/local/lib/python3.11/traceback.py:631 _ExceptionPrintContext.indent 6 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/_pytest/stash.py:75 Stash.__getitem__ 1 0.000003 | |
/usr/local/lib/python3.11/tokenize.py:288 _get_normal_name 1 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:703 _endpoint_from_view_func 16 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:178 OpenTelemetrySpan.kind 2 0.000003 | |
/usr/local/lib/python3.11/asyncio/base_events.py:1840 _UnixSelectorEventLoop._timer_handle_cancelled 4 0.000003 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/utils.py:183 raise_task_exceptions 4 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:385 Headers.update 2 0.000003 | |
/usr/local/lib/python3.11/re/_parser.py:168 SubPattern.__setitem__ 6 0.000003 | |
<frozen importlib._bootstrap>:244 _verbose_message 7 0.000003 | |
<frozen importlib._bootstrap>:1030 _ImportLockContext.__exit__ 5 0.000002 | |
/usr/local/lib/python3.11/_weakrefset.py:37 WeakSet.__init__ 2 0.000003 | |
/usr/local/lib/python3.11/zipfile.py:693 _check_compression 1 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/request_handlers.py:103 validate_and_format_range_headers 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:794 ImmutableDict.copy 2 0.000002 | |
..ib/python3.11/site-packages/azure/core/pipeline/policies/_sensitive_header_cleanup_policy.py:50 SensitiveHeaderCleanupPolicy.__init__ 2 0.000002 | |
<string>:2 RulePart.__eq__ 2 0.000002 | |
<frozen importlib._bootstrap_external>:599 SourceFileLoader._check_name_wrapper 1 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:120 QueueMessagePolicy.on_request 2 0.000001 | |
/usr/local/lib/python3.11/traceback.py:626 _ExceptionPrintContext.__init__ 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/structures.py:995 HeaderSet.__bool__ 4 0.000002 | |
/usr/local/lib/python3.11/logging/__init__.py:123 getLevelName 2 0.000001 | |
/usr/local/lib/python3.11/asyncio/futures.py:299 _get_loop 2 0.000001 | |
/usr/local/lib/python3.11/re/_parser.py:73 State.__init__ 4 0.000002 | |
/usr/local/lib/python3.11/asyncio/locks.py:93 Lock.acquire 2 0.000002 | |
<frozen importlib._bootstrap_external>:180 _path_isabs 1 0.000002 | |
/usr/local/lib/python3.11/threading.py:1453 current_thread 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_base.py:103 HttpLoggingPolicy.on_exception 20 0.000002 | |
/usr/local/lib/python3.11/traceback.py:96 _parse_value_tb 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/ctx.py:421 has_request_context 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/blueprints.py:379 extend 4 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/config.py:19 ConfigAttribute.__get__ 2 0.000002 | |
/usr/local/lib/python3.11/threading.py:1152 _MainThread.name 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_download.py:31 process_range_and_offset 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/context/contextvars_context.py:19 ContextVarsRuntimeContext 1 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:236 OpenTelemetrySpan.start 2 0.000002 | |
/usr/local/lib/python3.11/asyncio/queues.py:99 Queue.full 20 0.000002 | |
/usr/local/lib/python3.11/pathlib.py:630 PurePosixPath.suffix 1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:61 <lambda> 6 0.000002 | |
/usr/local/lib/python3.11/traceback.py:165 _format_final_exc_line 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_pipeline_transport_rest_shared.py:104 _pad_attr_name 10 0.000002 | |
/usr/local/lib/python3.11/http/cookiejar.py:884 DefaultCookiePolicy.__init__ 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_container_client.py:62 _get_blob_name 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/settings.py:292 PrioritizedSetting.__get__ 10 0.000002 | |
<frozen importlib._bootstrap_external>:134 <genexpr> 4 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/app.py:63 TestApp._asgi_send 2 0.000001 | |
/usr/local/lib/python3.11/re/_parser.py:297 Tokenizer.checkgroupname 1 0.000001 | |
/workspaces/azure-search-openai-demo/app/backend/core/modelhelper.py:17 get_token_limit 2 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_utils.py:146 <genexpr> 16 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:551 Quart.debug 4 0.000002 | |
/home/vscode/.local/lib/python3.11/site-packages/markupsafe/__init__.py:82 Markup.__html__ 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:420 ProxyTracer._tracer 6 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/pluggy/_tracing.py:42 TagTracer._processmessage 1 0.000001 | |
/usr/local/lib/python3.11/http/cookiejar.py:44 _debug 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/datastructures/headers.py:319 <listcomp> 2 0.000001 | |
/usr/local/lib/python3.11/pathlib.py:257 _PosixFlavour.casefold_parts 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/app.py:427 Quart.name 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/_base_async.py:168 AsyncPipeline._prepare_multipart_mixed_request 2 0.000001 | |
<frozen importlib._bootstrap>:413 ModuleSpec.has_location 1 0.000001 | |
/usr/local/lib/python3.11/logging/__init__.py:1273 PlaceHolder.append 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:31 _TestWrapper.__init__ 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:84 StorageHeadersPolicy.headers 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/policies.py:158 StorageHosts.__init__ 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/_collections.py:23 FreezableDefaultDict.freeze 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_shared/base_client.py:449 <dictcomp> 10 0.000001 | |
<frozen importlib._bootstrap>:48 _new_module 1 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/scaffold.py:266 Quart.static_url_path 2 0.000001 | |
/usr/local/lib/python3.11/asyncio/locks.py:142 Lock._wake_up_first 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/span.py:509 NonRecordingSpan.end 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:748 ProxyPolicy.on_request 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/flask/sansio/blueprints.py:316 <genexpr> 2 0.000001 | |
/usr/local/lib/python3.11/unittest/mock.py:574 MagicMock.__get_side_effect 2 0.000001 | |
/usr/local/lib/python3.11/logging/__init__.py:1319 Manager.disable 4 0.000001 | |
/usr/local/lib/python3.11/urllib/parse.py:193 SplitResult._userinfo 2 0.000001 | |
/usr/local/lib/python3.11/asyncio/locks.py:200 Event.wait 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/converters.py:40 UnicodeConverter.to_python 2 0.000001 | |
/usr/local/lib/python3.11/re/_compiler.py:31 _combine_flags 10 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:138 RequestIdPolicy.__init__ 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:648 Context.path 1 0.000000 | |
/usr/local/lib/python3.11/site-packages/_distutils_hack/__init__.py:89 DistutilsMetaFinder.find_spec 1 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/response.py:139 Response.status_code 4 0.000001 | |
/usr/local/lib/python3.11/typing.py:2256 cast 33 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/sessions.py:42 SecureCookieSessionInterface.is_null_session 2 0.000001 | |
/usr/local/lib/python3.11/re/_compiler.py:405 _generate_overlap_table 1 0.000001 | |
<frozen importlib._bootstrap_external>:1421 _path_importer_cache 1 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/storage/blob/_serialize.py:153 get_version_id 2 0.000001 | |
<frozen importlib._bootstrap>:357 ModuleSpec.__init__ 1 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/tracing/common.py:41 get_function_and_class_name 4 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:312 ASGILifespan.__init__ 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/span.py:503 NonRecordingSpan.get_span_context 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:40 ASGIHTTPConnection.__init__ 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/rest/_rest_py3.py:161 HttpRequest.content 2 0.000001 | |
../vscode/.local/lib/python3.11/site-packages/azure/core/tracing/ext/opentelemetry_span/__init__.py:135 OpenTelemetrySpan.span_instance 18 0.000001 | |
<frozen importlib._bootstrap_external>:1097 SourceFileLoader.__init__ 1 0.000001 | |
/usr/local/lib/python3.11/unittest/mock.py:337 MagicMock._set 6 0.000001 | |
/usr/local/lib/python3.11/zipfile.py:1876 FastLookup.close 1 0.000001 | |
/usr/local/lib/python3.11/urllib/request.py:360 Request.data 2 0.000001 | |
/usr/local/lib/python3.11/logging/__init__.py:795 Logger.__init__ 2 0.000001 | |
<frozen importlib._bootstrap>:198 cb 1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/map.py:712 MapAdapter.get_default_redirect 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/utils/_pipeline_transport_rest_shared.py:122 _prepare_multipart_body_helper 2 0.000001 | |
/usr/local/lib/python3.11/urllib/request.py:337 Request.full_url 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:439 _discover_resolvers 1 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/aiohttp/client_reqrep.py:766 MockAiohttpClientResponse404.url 2 0.000001 | |
/usr/local/lib/python3.11/re/_parser.py:956 fix_flags 4 0.000001 | |
/usr/local/lib/python3.11/multiprocessing/process.py:189 _MainProcess.name 2 0.000001 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/propagate/__init__.py:159 get_global_textmap 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/__init__.py:148 PipelineRequest.__init__ 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/sansio/utils.py:140 get_content_length 2 0.000000 | |
<frozen importlib._bootstrap_external>:931 SourceFileLoader.create_module 1 0.000000 | |
/usr/local/lib/python3.11/enum.py:1256 RegexFlag.value 2 0.000000 | |
/usr/local/lib/python3.11/re/_parser.py:369 _escape 1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/helpers.py:361 _split_blueprint_path 1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/testing/client.py:44 _TestCookieJarResponse.__init__ 2 0.000000 | |
/usr/local/lib/python3.11/unittest/mock.py:1114 MagicMock._mock_check_sig 2 0.000000 | |
<frozen importlib._bootstrap_external>:1122 SourceFileLoader.get_filename 1 0.000000 | |
/usr/local/lib/python3.11/re/_compiler.py:426 _get_iscased 10 0.000000 | |
/usr/local/lib/python3.11/multiprocessing/process.py:37 current_process 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/rest/_rest_py3.py:128 HttpRequest._set_body 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/span.py:506 NonRecordingSpan.is_recording 4 0.000000 | |
/usr/local/lib/python3.11/traceback.py:642 <lambda> 2 0.000000 | |
/usr/local/lib/python3.11/asyncio/queues.py:58 Queue._wakeup_next 20 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/asgi.py:315 ASGILifespan.__call__ 1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/importlib_metadata/__init__.py:761 Prepared.__init__ 1 0.000000 | |
<frozen importlib._bootstrap>:165 _ModuleLockManager.__init__ 1 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/routing/matcher.py:140 <lambda> 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/policies/_universal.py:568 ContentDecodePolicy.__init__ 6 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart_cors/__init__.py:394 _get_origin_if_valid 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/aiohttp/client_reqrep.py:806 MockAiohttpClientResponse404.__del__ 2 0.000000 | |
<frozen importlib._bootstrap_external>:71 _relax_case 1 0.000000 | |
..thon3.11/site-packages/azure/core/pipeline/policies/_authentication_async.py:150 AsyncStorageBearerTokenCredentialPolicy.on_exception 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/exceptions.py:122 NotFound.get_headers 2 0.000000 | |
/usr/local/lib/python3.11/logging/__init__.py:2223 _LiveLoggingNullHandler.handle 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/werkzeug/utils.py:152 header_property.lookup 8 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/azure/core/pipeline/transport/_base.py:237 HttpRequest.body 2 0.000000 | |
/usr/local/lib/python3.11/unittest/mock.py:536 MagicMock.__get_return_value 2 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/opentelemetry/trace/__init__.py:449 NoOpTracer.start_span 6 0.000000 | |
/home/vscode/.local/lib/python3.11/site-packages/quart/wrappers/request.py:95 Body.append 4 0.000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment