├── .codespellrc ├── .coveragerc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── component_owners.yml ├── pull_request_template.md ├── scripts │ ├── update-version-patch.sh │ ├── update-version.sh │ └── use-cla-approved-github-bot.sh └── workflows │ ├── backport.yml │ ├── changelog.yml │ ├── codeql-analysis.yml │ ├── component-owners.yml │ ├── core_contrib_test_0.yml │ ├── fossa.yml │ ├── generate_workflows.py │ ├── generate_workflows_lib │ ├── hatch_build.py │ ├── pyproject.toml │ └── src │ │ └── generate_workflows_lib │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── core_contrib_test.yml.j2 │ │ ├── lint.yml.j2 │ │ ├── loongsuite_lint.yml.j2 │ │ ├── loongsuite_misc.yml.j2 │ │ ├── loongsuite_test.yml.j2 │ │ ├── misc.yml.j2 │ │ ├── test.yml.j2 │ │ └── version.py │ ├── generate_workflows_loongsuite.py │ ├── lint_0.yml │ ├── loongsuite_lint_0.yml │ ├── loongsuite_test_0.yml │ ├── misc_0.yml │ ├── ossf-scorecard.yml │ ├── package-prepare-patch-release.yml │ ├── package-prepare-release.yml │ ├── package-release.yml │ ├── prepare-patch-release.yml │ ├── prepare-release-branch.yml │ ├── release.yml │ ├── test_0.yml │ ├── test_1.yml │ └── test_2.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── .rstcheck.cfg ├── CHANGELOG-loongsuite.md ├── CHANGELOG.md ├── CONTRIBUTING-loongsuite-zh.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.Apache ├── LICENSE.BSD3 ├── README-upstream.md ├── README.md ├── RELEASING.md ├── _template ├── README.rst ├── autodoc_entry.rst ├── pyproject.toml └── version.py ├── deploy ├── deploy-Jaeger&Elasticsearch-en.md └── deploy-Jaeger&Elasticsearch.md ├── dev-requirements.txt ├── docs-requirements.txt ├── docs ├── Makefile ├── _assets │ └── img │ │ ├── loongcollector-sig-dingtalk.jpg │ │ ├── loongsuite-go-sig-dingtalk.png │ │ ├── loongsuite-java-sig-dingtalk.jpg │ │ ├── loongsuite-logo.png │ │ ├── loongsuite-python-sig-dingtalk.jpg │ │ └── quickstart-results.png ├── conf.py ├── index.rst ├── instrumentation-genai │ ├── openai.rst │ └── util.rst ├── instrumentation │ ├── aio_pika │ │ └── aio_pika.rst │ ├── aiohttp_client │ │ └── aiohttp_client.rst │ ├── aiohttp_server │ │ └── aiohttp_server.rst │ ├── aiokafka │ │ └── aiokafka.rst │ ├── aiopg │ │ └── aiopg.rst │ ├── asgi │ │ └── asgi.rst │ ├── asyncclick │ │ └── asyncclick.rst │ ├── asyncio │ │ └── asyncio.rst │ ├── asyncpg │ │ └── asyncpg.rst │ ├── aws_lambda │ │ └── aws_lambda.rst │ ├── base │ │ ├── instrumentation.rst │ │ └── instrumentor.rst │ ├── boto │ │ └── boto.rst │ ├── boto3sqs │ │ └── boto3sqs.rst │ ├── botocore │ │ └── botocore.rst │ ├── cassandra │ │ └── cassandra.rst │ ├── celery │ │ └── celery.rst │ ├── click │ │ └── click.rst │ ├── confluent_kafka │ │ └── confluent_kafka.rst │ ├── dbapi │ │ └── dbapi.rst │ ├── django │ │ └── django.rst │ ├── elasticsearch │ │ └── elasticsearch.rst │ ├── falcon │ │ └── falcon.rst │ ├── fastapi │ │ └── fastapi.rst │ ├── flask │ │ └── flask.rst │ ├── grpc │ │ └── grpc.rst │ ├── httpx │ │ └── httpx.rst │ ├── jinja2 │ │ └── jinja2.rst │ ├── kafka_python │ │ └── kafka_python.rst │ ├── logging │ │ └── logging.rst │ ├── mysql │ │ └── mysql.rst │ ├── mysqlclient │ │ └── mysqlclient.rst │ ├── pika │ │ └── pika.rst │ ├── psycopg │ │ └── psycopg.rst │ ├── psycopg2 │ │ └── psycopg2.rst │ ├── pymemcache │ │ └── pymemcache.rst │ ├── pymongo │ │ └── pymongo.rst │ ├── pymssql │ │ └── pymssql.rst │ ├── pymysql │ │ └── pymysql.rst │ ├── pyramid │ │ └── pyramid.rst │ ├── redis │ │ └── redis.rst │ ├── remoulade │ │ └── remoulade.rst │ ├── requests │ │ └── requests.rst │ ├── sqlalchemy │ │ └── sqlalchemy.rst │ ├── sqlite3 │ │ └── sqlite3.rst │ ├── starlette │ │ └── starlette.rst │ ├── system_metrics │ │ └── system_metrics.rst │ ├── threading │ │ └── threading.rst │ ├── tornado │ │ └── tornado.rst │ ├── tortoiseorm │ │ └── tortoiseorm.rst │ ├── urllib │ │ └── urllib3.rst │ ├── urllib3 │ │ └── urllib3.rst │ └── wsgi │ │ └── wsgi.rst ├── make.bat ├── nitpick-exceptions.ini ├── performance │ └── benchmarks.rst ├── propagator │ └── aws │ │ └── aws.rst ├── resource │ └── container │ │ └── container.rst └── sdk-extension │ └── aws │ └── aws.rst ├── eachdist.ini ├── exporter ├── opentelemetry-exporter-credential-provider-gcp │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── gcp_credential_provider │ │ │ ├── __init__.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ └── test_credential_provider.py ├── opentelemetry-exporter-prometheus-remote-write │ ├── README.rst │ ├── example │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── cortex-config.yml │ │ ├── docker-compose.yml │ │ ├── requirements.txt │ │ └── sampleapp.py │ ├── proto │ │ ├── .gitignore │ │ ├── README.md │ │ └── generate-proto-py.sh │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── exporter │ │ │ └── prometheus_remote_write │ │ │ ├── __init__.py │ │ │ ├── gen │ │ │ ├── gogoproto │ │ │ │ └── gogo_pb2.py │ │ │ ├── remote_pb2.py │ │ │ └── types_pb2.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_prometheus_remote_write_exporter.py └── opentelemetry-exporter-richconsole │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── exporter │ │ └── richconsole │ │ ├── __init__.py │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ ├── __init__.py │ └── test_rich_exporter.py ├── gen-requirements.txt ├── instrumentation-genai ├── README.md ├── opentelemetry-instrumentation-google-genai │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.rst │ ├── TODOS.md │ ├── examples │ │ ├── manual │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── zero-code │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── google_genai │ │ │ ├── __init__.py │ │ │ ├── allowlist_util.py │ │ │ ├── custom_semconv.py │ │ │ ├── dict_util.py │ │ │ ├── flags.py │ │ │ ├── generate_content.py │ │ │ ├── instrumentor.py │ │ │ ├── message.py │ │ │ ├── otel_wrapper.py │ │ │ ├── package.py │ │ │ ├── tool_call_wrapper.py │ │ │ └── version.py │ └── tests │ │ ├── __init__.py │ │ ├── common │ │ ├── auth.py │ │ ├── base.py │ │ ├── instrumentation_context.py │ │ └── otel_mocker.py │ │ ├── generate_content │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cassettes │ │ │ ├── test_non_streaming[excludecontent-gemini-2.5-flash-vertexaiapi-async-default].yaml │ │ │ ├── test_non_streaming[excludecontent-gemini-2.5-flash-vertexaiapi-sync-default].yaml │ │ │ ├── test_non_streaming[logcontent-gemini-2.5-flash-vertexaiapi-async-default].yaml │ │ │ ├── test_non_streaming[logcontent-gemini-2.5-flash-vertexaiapi-sync-default].yaml │ │ │ ├── test_streaming[excludecontent-gemini-2.5-flash-vertexaiapi-async-default].yaml │ │ │ ├── test_streaming[excludecontent-gemini-2.5-flash-vertexaiapi-sync-default].yaml │ │ │ ├── test_streaming[logcontent-gemini-2.5-flash-vertexaiapi-async-default].yaml │ │ │ ├── test_streaming[logcontent-gemini-2.5-flash-vertexaiapi-sync-default].yaml │ │ │ ├── test_upload_hook_non_streaming[excludecontent-gemini-2.5-flash-vertexaiapi-async-enable_completion_hook-experimental].yaml │ │ │ ├── test_upload_hook_non_streaming[excludecontent-gemini-2.5-flash-vertexaiapi-sync-enable_completion_hook-experimental].yaml │ │ │ ├── test_upload_hook_non_streaming[logcontent-gemini-2.5-flash-vertexaiapi-async-enable_completion_hook-experimental].yaml │ │ │ └── test_upload_hook_non_streaming[logcontent-gemini-2.5-flash-vertexaiapi-sync-enable_completion_hook-experimental].yaml │ │ ├── nonstreaming_base.py │ │ ├── streaming_base.py │ │ ├── test_async_nonstreaming.py │ │ ├── test_async_streaming.py │ │ ├── test_config_span_attributes.py │ │ ├── test_e2e.py │ │ ├── test_finish_reasons.py │ │ ├── test_sync_nonstreaming.py │ │ ├── test_sync_streaming.py │ │ ├── test_tool_call_instrumentation.py │ │ └── util.py │ │ ├── requirements.latest.txt │ │ ├── requirements.oldest.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── test_allowlist_util.py │ │ ├── test_dict_util.py │ │ └── test_tool_call_wrapper.py ├── opentelemetry-instrumentation-langchain │ ├── CHANGELOG.md │ ├── LICENSE │ ├── NOTICE │ ├── README.rst │ ├── examples │ │ ├── manual │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── zero-code │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── langchain │ │ │ ├── __init__.py │ │ │ ├── callback_handler.py │ │ │ ├── package.py │ │ │ ├── span_manager.py │ │ │ └── version.py │ └── tests │ │ ├── __init__.py │ │ ├── cassettes │ │ ├── test_chat_openai_gpt_3_5_turbo_model_llm_call.yaml │ │ └── test_us_amazon_nova_lite_v1_0_bedrock_llm_call.yaml │ │ ├── conftest.py │ │ ├── test_llm_call.py │ │ └── test_span_manager.py ├── opentelemetry-instrumentation-openai-agents-v2 │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.rst │ ├── examples │ │ ├── content-capture │ │ │ ├── .env.example │ │ │ ├── README.md │ │ │ └── main.py │ │ ├── manual │ │ │ ├── .env.example │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── zero-code │ │ │ ├── .env.example │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── openai_agents │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── span_processor.py │ │ │ └── version.py │ └── tests │ │ ├── conftest.py │ │ ├── requirements.latest.txt │ │ ├── requirements.oldest.txt │ │ ├── stubs │ │ ├── agents │ │ │ ├── __init__.py │ │ │ └── tracing │ │ │ │ ├── __init__.py │ │ │ │ ├── processor_interface.py │ │ │ │ ├── spans.py │ │ │ │ └── traces.py │ │ ├── opentelemetry │ │ │ └── instrumentation │ │ │ │ └── instrumentor.py │ │ └── wrapt.py │ │ ├── test_tracer.py │ │ ├── test_z_instrumentor_behaviors.py │ │ └── test_z_span_processor_unit.py ├── opentelemetry-instrumentation-openai-v2 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.rst │ ├── examples │ │ ├── embeddings │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ ├── manual │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── zero-code │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── openai_v2 │ │ │ ├── __init__.py │ │ │ ├── instruments.py │ │ │ ├── package.py │ │ │ ├── patch.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── cassettes │ │ ├── test_async_chat_completion_404.yaml │ │ ├── test_async_chat_completion_extra_params.yaml │ │ ├── test_async_chat_completion_metrics.yaml │ │ ├── test_async_chat_completion_multiple_choices.yaml │ │ ├── test_async_chat_completion_multiple_choices_streaming.yaml │ │ ├── test_async_chat_completion_multiple_tools_streaming_no_content.yaml │ │ ├── test_async_chat_completion_multiple_tools_streaming_with_content.yaml │ │ ├── test_async_chat_completion_no_content.yaml │ │ ├── test_async_chat_completion_streaming.yaml │ │ ├── test_async_chat_completion_streaming_not_complete.yaml │ │ ├── test_async_chat_completion_streaming_unsampled.yaml │ │ ├── test_async_chat_completion_tool_calls_no_content.yaml │ │ ├── test_async_chat_completion_tool_calls_with_content.yaml │ │ ├── test_async_chat_completion_with_content.yaml │ │ ├── test_async_embeddings_error_handling.yaml │ │ ├── test_async_embeddings_no_content.yaml │ │ ├── test_async_embeddings_token_metrics.yaml │ │ ├── test_async_embeddings_with_batch_input.yaml │ │ ├── test_async_embeddings_with_content.yaml │ │ ├── test_async_embeddings_with_dimensions.yaml │ │ ├── test_async_embeddings_with_encoding_format.yaml │ │ ├── test_chat_completion_404.yaml │ │ ├── test_chat_completion_extra_params.yaml │ │ ├── test_chat_completion_handles_not_given.yaml │ │ ├── test_chat_completion_metrics.yaml │ │ ├── test_chat_completion_multiple_choices.yaml │ │ ├── test_chat_completion_multiple_choices_streaming.yaml │ │ ├── test_chat_completion_multiple_tools_streaming_no_content.yaml │ │ ├── test_chat_completion_multiple_tools_streaming_with_content.yaml │ │ ├── test_chat_completion_no_content.yaml │ │ ├── test_chat_completion_streaming.yaml │ │ ├── test_chat_completion_streaming_not_complete.yaml │ │ ├── test_chat_completion_tool_calls_no_content.yaml │ │ ├── test_chat_completion_tool_calls_with_content.yaml │ │ ├── test_chat_completion_with_content.yaml │ │ ├── test_chat_completion_with_content_span_unsampled.yaml │ │ ├── test_embeddings_model_not_found.yaml │ │ ├── test_embeddings_no_content.yaml │ │ ├── test_embeddings_token_metrics.yaml │ │ ├── test_embeddings_with_batch_input.yaml │ │ ├── test_embeddings_with_content.yaml │ │ ├── test_embeddings_with_dimensions.yaml │ │ ├── test_embeddings_with_encoding_format.yaml │ │ ├── test_embeddings_with_not_given_values[not_given_value0].yaml │ │ └── test_embeddings_with_not_given_values[not_given_value1].yaml │ │ ├── conftest.py │ │ ├── requirements.latest.txt │ │ ├── requirements.oldest.txt │ │ ├── test_async_chat_completions.py │ │ ├── test_async_embeddings.py │ │ ├── test_chat_completions.py │ │ ├── test_chat_metrics.py │ │ ├── test_embeddings.py │ │ └── test_utils.py ├── opentelemetry-instrumentation-vertexai │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.rst │ ├── examples │ │ ├── manual │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── zero-code │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── main.py │ │ │ └── requirements.txt │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── vertexai │ │ │ ├── __init__.py │ │ │ ├── events.py │ │ │ ├── package.py │ │ │ ├── patch.py │ │ │ ├── py.typed │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── cassettes │ │ ├── test_function_call_choice.yaml │ │ ├── test_function_call_choice_no_content.yaml │ │ ├── test_generate_content.yaml │ │ ├── test_generate_content_all_events.yaml │ │ ├── test_generate_content_all_input_events.yaml │ │ ├── test_generate_content_extra_params.yaml │ │ ├── test_generate_content_invalid_role.yaml │ │ ├── test_generate_content_invalid_temperature.yaml │ │ ├── test_generate_content_missing_model.yaml │ │ ├── test_generate_content_with_files.yaml │ │ ├── test_generate_content_without_events.yaml │ │ ├── test_preview_generate_content_all_input_events.yaml │ │ ├── test_tool_events.yaml │ │ ├── test_tool_events_no_content.yaml │ │ └── test_tool_events_with_completion_hook.yaml │ │ ├── conftest.py │ │ ├── requirements.latest.txt │ │ ├── requirements.oldest.txt │ │ ├── shared_test_utils.py │ │ ├── test_chat_completions.py │ │ ├── test_chat_completions_experimental.py │ │ ├── test_function_calling.py │ │ ├── test_function_calling_experimental.py │ │ ├── test_instrumentor.py │ │ └── test_utils.py └── opentelemetry-instrumentation-weaviate │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── instrumentation │ │ └── weaviate │ │ ├── __init__.py │ │ ├── package.py │ │ └── version.py │ └── tests │ └── __init__.py ├── instrumentation-loongsuite ├── README.md ├── loongsuite-instrumentation-agentscope │ ├── README.md │ ├── _assets │ │ ├── img_v0 │ │ │ └── results.png │ │ └── img_v1 │ │ │ ├── AgentScopeStudio │ │ │ ├── dashboard.png │ │ │ └── detail.png │ │ │ └── Aliyun │ │ │ ├── agent_description.png │ │ │ ├── llm_info.png │ │ │ └── tool_exec.png │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── agentscope │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── shared │ │ │ ├── __init__.py │ │ │ ├── attributes.py │ │ │ ├── constants.py │ │ │ └── telemetry_options.py │ │ │ ├── utils.py │ │ │ ├── v0 │ │ │ ├── __init__.py │ │ │ ├── _extractor.py │ │ │ ├── _with_span.py │ │ │ └── _wrapper.py │ │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── _request_attributes_extractor.py │ │ │ ├── _response_attributes_extractor.py │ │ │ ├── _wrapper.py │ │ │ ├── message_converter.py │ │ │ ├── patch.py │ │ │ └── utils.py │ │ │ └── version.py │ └── tests │ │ ├── conftest.py │ │ ├── shared │ │ ├── __init__.py │ │ └── version_utils.py │ │ ├── v0 │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_agentscope.py │ │ └── v1 │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_agentscope_v1.py ├── loongsuite-instrumentation-agno │ ├── README.md │ ├── _assets │ │ └── img │ │ │ ├── agno_demo_prompt.png │ │ │ ├── agno_demo_reasoning.png │ │ │ ├── agno_demo_response.png │ │ │ └── agno_demo_toolcall.png │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── agno │ │ │ ├── __init__.py │ │ │ ├── _extractor.py │ │ │ ├── _with_span.py │ │ │ ├── _wrapper.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_agno.py ├── loongsuite-instrumentation-dify │ ├── README.md │ ├── _assets │ │ └── image │ │ │ └── demo.png │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── dify │ │ │ ├── __init__.py │ │ │ ├── _base_wrapper.py │ │ │ ├── capture_content.py │ │ │ ├── config.py │ │ │ ├── constants.py │ │ │ ├── dify_utils.py │ │ │ ├── entities.py │ │ │ ├── env_utils.py │ │ │ ├── handler │ │ │ ├── __init__.py │ │ │ ├── _flow_handler.py │ │ │ ├── _graph_engine_thread_pool_handler.py │ │ │ ├── _plugin_llm_handler.py │ │ │ └── _rag_handler.py │ │ │ ├── package.py │ │ │ ├── semconv.py │ │ │ ├── strategy │ │ │ ├── __init__.py │ │ │ ├── agent_strategy.py │ │ │ ├── factory.py │ │ │ ├── strategy.py │ │ │ └── workflow_strategy.py │ │ │ ├── utils.py │ │ │ ├── version.py │ │ │ └── wrapper.py │ └── tests │ │ └── instrumentation │ │ └── dify │ │ ├── test_plugin_llm_handler.py │ │ ├── test_rag_handler.py │ │ ├── test_strategy.py │ │ └── test_utils.py ├── loongsuite-instrumentation-langchain │ ├── README.md │ ├── _assets │ │ └── img │ │ │ └── results.png │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── langchain │ │ │ ├── __init__.py │ │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── _tracer.py │ │ │ ├── _utils.py │ │ │ └── semconv.py │ │ │ ├── package.py │ │ │ └── version.py │ └── tests │ │ └── instrumentation │ │ └── langchain │ │ ├── test_base64_filter.py │ │ ├── test_langchain_instrumentor.py │ │ ├── test_message_parsing.py │ │ ├── test_metadata.py │ │ ├── test_prompts.py │ │ ├── test_singleton_tracer.py │ │ └── test_token_counts.py ├── loongsuite-instrumentation-mcp │ ├── README.md │ ├── _assets │ │ └── image │ │ │ └── demo.png │ ├── examples │ │ ├── __init__.py │ │ ├── simple_client.py │ │ └── simple_server.py │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── mcp │ │ │ ├── __init__.py │ │ │ ├── handler.py │ │ │ ├── metrics.py │ │ │ ├── package.py │ │ │ ├── semconv.py │ │ │ ├── session_handler.py │ │ │ ├── utils.py │ │ │ └── version.py │ └── tests │ │ ├── __init__.py │ │ ├── fastmcp_server.py │ │ ├── fixtures.py │ │ ├── mcp_server.py │ │ ├── test_http.py │ │ ├── test_instrument.py │ │ ├── test_operations.py │ │ ├── test_propagate.py │ │ ├── test_session_handler.py │ │ ├── test_sse.py │ │ ├── test_stdio.py │ │ ├── test_utils.py │ │ └── test_websocket.py └── loongsuite-instrumentation-mem0 │ ├── README.md │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── instrumentation │ │ └── mem0 │ │ ├── __init__.py │ │ ├── config.py │ │ ├── internal │ │ ├── __init__.py │ │ ├── _extractors.py │ │ ├── _util.py │ │ └── _wrapper.py │ │ ├── package.py │ │ ├── semconv.py │ │ └── version.py │ ├── test-requirements-latest.txt │ ├── test-requirements-oldest.txt │ └── tests │ ├── __init__.py │ ├── cassettes │ ├── test_client_add_vcr.yaml │ ├── test_client_batch_delete_vcr.yaml │ ├── test_client_batch_update_vcr.yaml │ ├── test_client_delete_all_vcr.yaml │ ├── test_client_delete_vcr.yaml │ ├── test_client_get_all_vcr.yaml │ ├── test_client_get_vcr.yaml │ ├── test_client_history_vcr.yaml │ ├── test_client_search_vcr.yaml │ ├── test_client_update_vcr.yaml │ ├── test_memory_add_full_flow.yaml │ └── test_record_memory_full_flow_vcr.yaml │ ├── conftest.py │ ├── pytest-min.ini │ ├── test_config.py │ ├── test_extractors.py │ ├── test_instrumentor.py │ ├── test_memory_client_errors_vcr.py │ ├── test_memory_client_vcr.py │ ├── test_memory_operations_record_vcr.py │ ├── test_memory_operations_vcr.py │ └── test_util.py ├── instrumentation ├── README.md ├── opentelemetry-instrumentation-aio-pika │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── aio_pika │ │ │ ├── __init__.py │ │ │ ├── aio_pika_instrumentor.py │ │ │ ├── callback_decorator.py │ │ │ ├── package.py │ │ │ ├── publish_decorator.py │ │ │ ├── span_builder.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ ├── test-requirements-3.txt │ └── tests │ │ ├── __init__.py │ │ ├── consts.py │ │ ├── test_aio_pika_instrumentation.py │ │ ├── test_callback_decorator.py │ │ ├── test_publish_decorator.py │ │ └── test_span_builder.py ├── opentelemetry-instrumentation-aiohttp-client │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── aiohttp_client │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_aiohttp_client_integration.py ├── opentelemetry-instrumentation-aiohttp-server │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── aiohttp_server │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_aiohttp_server_integration.py ├── opentelemetry-instrumentation-aiokafka │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── aiokafka │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_instrumentation.py │ │ └── test_utils.py ├── opentelemetry-instrumentation-aiopg │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── aiopg │ │ │ ├── __init__.py │ │ │ ├── aiopg_integration.py │ │ │ ├── package.py │ │ │ ├── version.py │ │ │ └── wrappers.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_aiopg_integration.py ├── opentelemetry-instrumentation-asgi │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── asgi │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── types.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_asgi_custom_headers.py │ │ ├── test_asgi_middleware.py │ │ └── test_getter.py ├── opentelemetry-instrumentation-asyncclick │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── asyncclick │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ └── test_asyncclick.py ├── opentelemetry-instrumentation-asyncio │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── asyncio │ │ │ ├── __init__.py │ │ │ ├── environment_variables.py │ │ │ ├── instrumentation_state.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── common_test_func.py │ │ ├── test_asyncio_anext.py │ │ ├── test_asyncio_cancellation.py │ │ ├── test_asyncio_create_task.py │ │ ├── test_asyncio_duplicate_instrument.py │ │ ├── test_asyncio_ensure_future.py │ │ ├── test_asyncio_future_cancellation.py │ │ ├── test_asyncio_gather.py │ │ ├── test_asyncio_integration.py │ │ ├── test_asyncio_run_coroutine_threadsafe.py │ │ ├── test_asyncio_taskgroup.py │ │ ├── test_asyncio_to_thread.py │ │ ├── test_asyncio_utils.py │ │ └── test_asyncio_wait.py ├── opentelemetry-instrumentation-asyncpg │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── asyncpg │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_asyncpg_wrapper.py ├── opentelemetry-instrumentation-aws-lambda │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── aws_lambda │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── mocks │ │ ├── __init__.py │ │ ├── alb_conventional_headers_event.py │ │ ├── alb_multi_value_headers_event.py │ │ ├── api_gateway_http_api_event.py │ │ ├── api_gateway_proxy_event.py │ │ ├── dynamo_db_event.py │ │ ├── lambda_function.py │ │ ├── s3_event.py │ │ ├── sns_event.py │ │ └── sqs_event.py │ │ └── test_aws_lambda_instrumentation_manual.py ├── opentelemetry-instrumentation-boto │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── boto │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_boto_instrumentation.py ├── opentelemetry-instrumentation-boto3sqs │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── boto3sqs │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_boto3sqs_instrumentation.py ├── opentelemetry-instrumentation-botocore │ ├── LICENSE │ ├── README.rst │ ├── examples │ │ └── bedrock-runtime │ │ │ └── zero-code │ │ │ ├── .env │ │ │ ├── README.rst │ │ │ ├── converse.py │ │ │ ├── converse_stream.py │ │ │ ├── invoke_model.py │ │ │ ├── invoke_model_stream.py │ │ │ └── requirements.txt │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── botocore │ │ │ ├── __init__.py │ │ │ ├── environment_variables.py │ │ │ ├── extensions │ │ │ ├── __init__.py │ │ │ ├── _messaging.py │ │ │ ├── bedrock.py │ │ │ ├── bedrock_utils.py │ │ │ ├── dynamodb.py │ │ │ ├── lmbd.py │ │ │ ├── secretsmanager.py │ │ │ ├── sfns.py │ │ │ ├── sns.py │ │ │ ├── sqs.py │ │ │ └── types.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bedrock_utils.py │ │ ├── cassettes │ │ ├── test_converse_no_content.yaml │ │ ├── test_converse_no_content_different_events.yaml │ │ ├── test_converse_stream_close_before_consumption.yaml │ │ ├── test_converse_stream_handles_event_stream_error.yaml │ │ ├── test_converse_stream_no_content.yaml │ │ ├── test_converse_stream_no_content_different_events.yaml │ │ ├── test_converse_stream_no_content_tool_call.yaml │ │ ├── test_converse_stream_tool_call_parsing_errors.yaml │ │ ├── test_converse_stream_with_content.yaml │ │ ├── test_converse_stream_with_content_different_events.yaml │ │ ├── test_converse_stream_with_content_tool_call.yaml │ │ ├── test_converse_stream_with_invalid_model.yaml │ │ ├── test_converse_tool_call_no_content.yaml │ │ ├── test_converse_tool_call_with_content.yaml │ │ ├── test_converse_with_content.yaml │ │ ├── test_converse_with_content_different_events.yaml │ │ ├── test_converse_with_invalid_model.yaml │ │ ├── test_invoke_model_no_content[amazon.nova].yaml │ │ ├── test_invoke_model_no_content[amazon.titan].yaml │ │ ├── test_invoke_model_no_content[anthropic.claude].yaml │ │ ├── test_invoke_model_no_content[cohere.command-r].yaml │ │ ├── test_invoke_model_no_content[cohere.command].yaml │ │ ├── test_invoke_model_no_content[meta.llama].yaml │ │ ├── test_invoke_model_no_content[mistral.mistral].yaml │ │ ├── test_invoke_model_no_content_different_events[amazon.nova].yaml │ │ ├── test_invoke_model_no_content_different_events[anthropic.claude].yaml │ │ ├── test_invoke_model_no_content_tool_call[amazon.nova].yaml │ │ ├── test_invoke_model_no_content_tool_call[anthropic.claude].yaml │ │ ├── test_invoke_model_with_content[amazon.nova].yaml │ │ ├── test_invoke_model_with_content[amazon.titan].yaml │ │ ├── test_invoke_model_with_content[anthropic.claude].yaml │ │ ├── test_invoke_model_with_content[cohere.command-r].yaml │ │ ├── test_invoke_model_with_content[cohere.command].yaml │ │ ├── test_invoke_model_with_content[meta.llama].yaml │ │ ├── test_invoke_model_with_content[mistral.mistral].yaml │ │ ├── test_invoke_model_with_content_assistant_content_as_string.yaml │ │ ├── test_invoke_model_with_content_different_events[amazon.nova].yaml │ │ ├── test_invoke_model_with_content_different_events[anthropic.claude].yaml │ │ ├── test_invoke_model_with_content_tool_call[amazon.nova].yaml │ │ ├── test_invoke_model_with_content_tool_call[anthropic.claude].yaml │ │ ├── test_invoke_model_with_content_user_content_as_string.yaml │ │ ├── test_invoke_model_with_invalid_model.yaml │ │ ├── test_invoke_model_with_response_stream_close_before_consumption[amazon.nova].yaml │ │ ├── test_invoke_model_with_response_stream_close_before_consumption[amazon.titan].yaml │ │ ├── test_invoke_model_with_response_stream_close_before_consumption[anthropic.claude].yaml │ │ ├── test_invoke_model_with_response_stream_handles_stream_error.yaml │ │ ├── test_invoke_model_with_response_stream_invalid_model.yaml │ │ ├── test_invoke_model_with_response_stream_no_content[amazon.nova].yaml │ │ ├── test_invoke_model_with_response_stream_no_content[amazon.titan].yaml │ │ ├── test_invoke_model_with_response_stream_no_content[anthropic.claude].yaml │ │ ├── test_invoke_model_with_response_stream_no_content_different_events[amazon.nova].yaml │ │ ├── test_invoke_model_with_response_stream_no_content_different_events[anthropic.claude].yaml │ │ ├── test_invoke_model_with_response_stream_no_content_tool_call[amazon.nova].yaml │ │ ├── test_invoke_model_with_response_stream_no_content_tool_call[anthropic.claude].yaml │ │ ├── test_invoke_model_with_response_stream_with_content[amazon.nova].yaml │ │ ├── test_invoke_model_with_response_stream_with_content[amazon.titan].yaml │ │ ├── test_invoke_model_with_response_stream_with_content[anthropic.claude].yaml │ │ ├── test_invoke_model_with_response_stream_with_content_different_events[amazon.nova].yaml │ │ ├── test_invoke_model_with_response_stream_with_content_different_events[anthropic.claude].yaml │ │ ├── test_invoke_model_with_response_stream_with_content_tool_call[amazon.nova].yaml │ │ └── test_invoke_model_with_response_stream_with_content_tool_call[anthropic.claude].yaml │ │ ├── conftest.py │ │ ├── test_botocore_bedrock.py │ │ ├── test_botocore_dynamodb.py │ │ ├── test_botocore_instrumentation.py │ │ ├── test_botocore_lambda.py │ │ ├── test_botocore_messaging.py │ │ ├── test_botocore_secretsmanager.py │ │ ├── test_botocore_sfns.py │ │ ├── test_botocore_sns.py │ │ └── test_botocore_sqs.py ├── opentelemetry-instrumentation-cassandra │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── cassandra │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_cassandra_integration.py ├── opentelemetry-instrumentation-celery │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── celery │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── celery_test_tasks.py │ │ ├── test_duplicate.py │ │ ├── test_getter.py │ │ ├── test_metrics.py │ │ ├── test_tasks.py │ │ └── test_utils.py ├── opentelemetry-instrumentation-click │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── click │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ └── test_click.py ├── opentelemetry-instrumentation-confluent-kafka │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── confluent_kafka │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_instrumentation.py │ │ └── utils.py ├── opentelemetry-instrumentation-dbapi │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── dbapi │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_dbapi_integration.py ├── opentelemetry-instrumentation-django │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── django │ │ │ ├── __init__.py │ │ │ ├── environment_variables.py │ │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ ├── otel_middleware.py │ │ │ └── sqlcommenter_middleware.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ ├── test-requirements-3.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_middleware.py │ │ ├── test_middleware_asgi.py │ │ ├── test_sqlcommenter.py │ │ └── views.py ├── opentelemetry-instrumentation-elasticsearch │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── elasticsearch │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ └── tests │ │ ├── __init__.py │ │ ├── helpers_es6.py │ │ ├── helpers_es7.py │ │ ├── helpers_es8.py │ │ ├── sanitization_queries.py │ │ └── test_elasticsearch.py ├── opentelemetry-instrumentation-falcon │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── falcon │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ ├── test-requirements-3.txt │ ├── test-requirements-4.txt │ └── tests │ │ ├── __init__.py │ │ ├── app.py │ │ └── test_falcon.py ├── opentelemetry-instrumentation-fastapi │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── fastapi │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_fastapi_instrumentation.py │ │ ├── test_fastapi_instrumentation_custom_headers.py │ │ └── test_fastapi_instrumentation_wrapped.py ├── opentelemetry-instrumentation-flask │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── flask │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ └── tests │ │ ├── __init__.py │ │ ├── base_test.py │ │ ├── test_automatic.py │ │ ├── test_copy_context.py │ │ ├── test_multithreading.py │ │ ├── test_programmatic.py │ │ └── test_sqlcommenter.py ├── opentelemetry-instrumentation-grpc │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── grpc │ │ │ ├── __init__.py │ │ │ ├── _aio_client.py │ │ │ ├── _aio_server.py │ │ │ ├── _client.py │ │ │ ├── _server.py │ │ │ ├── _utilities.py │ │ │ ├── filters │ │ │ └── __init__.py │ │ │ ├── grpcext │ │ │ ├── __init__.py │ │ │ └── _interceptor.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── _aio_client.py │ │ ├── _client.py │ │ ├── _server.py │ │ ├── protobuf │ │ ├── test_server.proto │ │ ├── test_server_pb2.py │ │ └── test_server_pb2_grpc.py │ │ ├── test_aio_client_interceptor.py │ │ ├── test_aio_client_interceptor_filter.py │ │ ├── test_aio_client_interceptor_hooks.py │ │ ├── test_aio_server_interceptor.py │ │ ├── test_aio_server_interceptor_filter.py │ │ ├── test_client_interceptor.py │ │ ├── test_client_interceptor_filter.py │ │ ├── test_client_interceptor_hooks.py │ │ ├── test_filters.py │ │ ├── test_server_interceptor.py │ │ └── test_server_interceptor_filter.py ├── opentelemetry-instrumentation-httpx │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── httpx │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ └── test_httpx_integration.py ├── opentelemetry-instrumentation-jinja2 │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── jinja2 │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── templates │ │ ├── base.html │ │ └── template.html │ │ └── test_jinja2.py ├── opentelemetry-instrumentation-kafka-python │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── kafka │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-ng.txt │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_instrumentation.py │ │ └── test_utils.py ├── opentelemetry-instrumentation-logging │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── logging │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── environment_variables.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_logging.py ├── opentelemetry-instrumentation-mysql │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── mysql │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ └── test_mysql_integration.py ├── opentelemetry-instrumentation-mysqlclient │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── mysqlclient │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_mysqlclient_integration.py ├── opentelemetry-instrumentation-pika │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── pika │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── pika_instrumentor.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_getter.py │ │ ├── test_pika_instrumentation.py │ │ └── test_utils.py ├── opentelemetry-instrumentation-psycopg │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── psycopg │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ └── test_psycopg_integration.py ├── opentelemetry-instrumentation-psycopg2 │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── psycopg2 │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-binary.txt │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_psycopg2_instrumentation.py │ │ └── test_psycopg2_integration.py ├── opentelemetry-instrumentation-pymemcache │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── pymemcache │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ ├── test-requirements-3.txt │ ├── test-requirements-4.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_pymemcache.py │ │ └── utils.py ├── opentelemetry-instrumentation-pymongo │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── pymongo │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_pymongo.py ├── opentelemetry-instrumentation-pymssql │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── pymssql │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_pymssql_integration.py ├── opentelemetry-instrumentation-pymysql │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── pymysql │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_pymysql_integration.py ├── opentelemetry-instrumentation-pyramid │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── pyramid │ │ │ ├── __init__.py │ │ │ ├── callbacks.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── pyramid_base_test.py │ │ ├── test_automatic.py │ │ └── test_programmatic.py ├── opentelemetry-instrumentation-redis │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── redis │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ ├── util.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_redis.py ├── opentelemetry-instrumentation-remoulade │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── remoulade │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_messages.py │ │ └── test_uninstrument.py ├── opentelemetry-instrumentation-requests │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── requests │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_requests_integration.py │ │ ├── test_requests_ip_support.py │ │ └── test_user_agent_synthetic.py ├── opentelemetry-instrumentation-sqlalchemy │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── sqlalchemy │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ ├── test-requirements-2.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_sqlalchemy.py │ │ ├── test_sqlalchemy_metrics.py │ │ └── test_sqlcommenter.py ├── opentelemetry-instrumentation-sqlite3 │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── sqlite3 │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_sqlite3.py │ │ └── testdb ├── opentelemetry-instrumentation-starlette │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── starlette │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.in │ ├── test-requirements.latest.txt │ ├── test-requirements.oldest.txt │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_starlette_instrumentation.py ├── opentelemetry-instrumentation-system-metrics │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── system_metrics │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_system_metrics.py ├── opentelemetry-instrumentation-threading │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── threading │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_threading.py ├── opentelemetry-instrumentation-tornado │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── tornado │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_instrumentation.py │ │ ├── test_metrics_instrumentation.py │ │ └── tornado_test_app.py ├── opentelemetry-instrumentation-tortoiseorm │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── tortoiseorm │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_tortoiseorm_instrumentation.py ├── opentelemetry-instrumentation-urllib │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── urllib │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ ├── py.typed │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_metrics_instrumentation.py │ │ └── test_urllib_integration.py ├── opentelemetry-instrumentation-urllib3 │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── instrumentation │ │ │ └── urllib3 │ │ │ ├── __init__.py │ │ │ ├── package.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_urllib3_integration.py │ │ ├── test_urllib3_ip_support.py │ │ └── test_urllib3_metrics.py └── opentelemetry-instrumentation-wsgi │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── instrumentation │ │ └── wsgi │ │ ├── __init__.py │ │ ├── package.py │ │ ├── py.typed │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ ├── __init__.py │ ├── test_getter.py │ └── test_wsgi_middleware.py ├── opentelemetry-contrib-instrumentations ├── LICENSE ├── README.rst ├── pyproject.toml └── src │ └── opentelemetry │ └── contrib-instrumentations │ └── version.py ├── opentelemetry-distro ├── README.rst ├── pyproject.toml ├── src │ └── opentelemetry │ │ └── distro │ │ ├── __init__.py │ │ ├── py.typed │ │ └── version.py ├── test-requirements.txt └── tests │ ├── __init__.py │ └── test_distro.py ├── opentelemetry-instrumentation ├── LICENSE ├── README.md ├── README.rst ├── pyproject.toml ├── src │ └── opentelemetry │ │ └── instrumentation │ │ ├── _semconv.py │ │ ├── auto_instrumentation │ │ ├── __init__.py │ │ ├── _load.py │ │ └── sitecustomize.py │ │ ├── bootstrap.py │ │ ├── bootstrap_gen.py │ │ ├── dependencies.py │ │ ├── distro.py │ │ ├── environment_variables.py │ │ ├── instrumentor.py │ │ ├── propagators.py │ │ ├── py.typed │ │ ├── sqlcommenter_utils.py │ │ ├── utils.py │ │ └── version.py ├── test-requirements.txt └── tests │ ├── __init__.py │ ├── auto_instrumentation │ ├── test_initialize.py │ ├── test_load.py │ ├── test_run.py │ └── test_sitecustomize.py │ ├── test_bootstrap.py │ ├── test_dependencies.py │ ├── test_distro.py │ ├── test_instrumentor.py │ ├── test_propagators.py │ ├── test_semconv.py │ └── test_utils.py ├── processor └── opentelemetry-processor-baggage │ ├── LICENSE │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── processor │ │ └── baggage │ │ ├── __init__.py │ │ ├── processor.py │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ ├── __init__.py │ └── test_baggage_processor.py ├── propagator ├── opentelemetry-propagator-aws-xray │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MANIFEST.rst │ ├── README.rst │ ├── benchmark-requirements.txt │ ├── benchmarks │ │ └── test_benchmark_aws_xray_propagator.py │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── propagators │ │ │ └── aws │ │ │ ├── __init__.py │ │ │ ├── aws_xray_propagator.py │ │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_aws_xray_lambda_propagator.py │ │ └── test_aws_xray_propagator.py └── opentelemetry-propagator-ot-trace │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── propagators │ │ └── ot_trace │ │ ├── __init__.py │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ ├── __init__.py │ └── test_ot_trace_propagator.py ├── pyproject.toml ├── pytest.ini ├── resource ├── opentelemetry-resource-detector-azure │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MANIFEST.rst │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── resource │ │ │ └── detector │ │ │ └── azure │ │ │ ├── __init__.py │ │ │ ├── _constants.py │ │ │ ├── _utils.py │ │ │ ├── app_service.py │ │ │ ├── functions.py │ │ │ ├── version.py │ │ │ └── vm.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_app_service.py │ │ ├── test_functions.py │ │ └── test_vm.py ├── opentelemetry-resource-detector-container │ ├── LICENSE │ ├── MANIFEST.rst │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── resource │ │ │ └── detector │ │ │ └── container │ │ │ ├── __init__.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ └── test_container.py └── opentelemetry-resource-detector-containerid │ ├── LICENSE │ ├── MANIFEST.rst │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── resource │ │ └── detector │ │ └── containerid │ │ ├── __init__.py │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ ├── __init__.py │ └── test_container.py ├── rtd-requirements.txt ├── scripts ├── build.sh ├── build_a_package.sh ├── check_for_valid_readme.py ├── coverage.sh ├── eachdist.py ├── generate_instrumentation_bootstrap.py ├── generate_instrumentation_metapackage.py ├── generate_instrumentation_readme.py ├── generate_release_notes.sh ├── license_header.txt ├── merge_changelog_to_main.sh ├── otel_packaging.py ├── prepare_release.sh └── update_sha.py ├── sdk-extension └── opentelemetry-sdk-extension-aws │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MANIFEST.rst │ ├── README.rst │ ├── benchmark-requirements.txt │ ├── benchmarks │ └── trace │ │ └── test_benchmark_aws_xray_ids_generator.py │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── sdk │ │ └── extension │ │ └── aws │ │ ├── resource │ │ ├── __init__.py │ │ ├── _lambda.py │ │ ├── beanstalk.py │ │ ├── ec2.py │ │ ├── ecs.py │ │ └── eks.py │ │ ├── trace │ │ ├── __init__.py │ │ ├── aws_xray_id_generator.py │ │ └── sampler │ │ │ ├── __init__.py │ │ │ ├── _aws_xray_sampling_client.py │ │ │ ├── _clock.py │ │ │ ├── _sampling_rule.py │ │ │ ├── _sampling_rule_applier.py │ │ │ ├── _sampling_statistics_document.py │ │ │ ├── _sampling_target.py │ │ │ └── aws_xray_remote_sampler.py │ │ └── version.py │ ├── test-requirements-0.txt │ ├── test-requirements-1.txt │ └── tests │ ├── __init__.py │ ├── resource │ ├── ecs │ │ ├── metadatav4-response-container-ec2.json │ │ ├── metadatav4-response-container-fargate.json │ │ ├── metadatav4-response-task-ec2.json │ │ └── metadatav4-response-task-fargate.json │ ├── test__lambda.py │ ├── test_beanstalk.py │ ├── test_ec2.py │ ├── test_ecs.py │ └── test_eks.py │ └── trace │ ├── __init__.py │ ├── sampler │ ├── __init__.py │ ├── _mock_clock.py │ ├── data │ │ ├── get-sampling-rules-response-sample-2.json │ │ ├── get-sampling-rules-response-sample.json │ │ ├── get-sampling-targets-response-sample.json │ │ ├── test-remote-sampler_sampling-rules-response-sample.json │ │ └── test-remote-sampler_sampling-targets-response-sample.json │ ├── test_aws_xray_remote_sampler.py │ ├── test_aws_xray_sampling_client.py │ ├── test_clock.py │ ├── test_sampling_rule.py │ ├── test_sampling_rule_applier.py │ ├── test_sampling_statistics_document.py │ └── test_sampling_target.py │ └── test_aws_xray_ids_generator.py ├── tests └── opentelemetry-docker-tests │ └── tests │ ├── asyncpg │ └── test_asyncpg_functional.py │ ├── celery │ ├── conftest.py │ └── test_celery_functional.py │ ├── check_availability.py │ ├── docker-compose.yml │ ├── flask │ └── test_flask_functional.py │ ├── mysql │ └── test_mysql_functional.py │ ├── postgres │ ├── test_aiopg_functional.py │ ├── test_psycopg_functional.py │ └── test_psycopg_sqlcommenter.py │ ├── pymongo │ └── test_pymongo_functional.py │ ├── pymysql │ └── test_pymysql_functional.py │ ├── redis │ └── test_redis_functional.py │ ├── sqlalchemy_tests │ ├── __init__.py │ ├── mixins.py │ ├── test_instrument.py │ ├── test_mssql.py │ ├── test_mysql.py │ ├── test_postgres.py │ └── test_sqlite.py │ └── test-requirements.txt ├── tox-loongsuite.ini ├── tox-uv.toml ├── tox.ini ├── typings └── fsspec │ └── __init__.pyi ├── util ├── opentelemetry-util-genai │ ├── CHANGELOG-loongsuite.md │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README-loongsuite.rst │ ├── README.rst │ ├── pyproject.toml │ ├── src │ │ └── opentelemetry │ │ │ └── util │ │ │ └── genai │ │ │ ├── __init__.py │ │ │ ├── _extended_memory │ │ │ ├── __init__.py │ │ │ ├── memory_types.py │ │ │ └── memory_utils.py │ │ │ ├── _extended_semconv │ │ │ ├── gen_ai_extended_attributes.py │ │ │ └── gen_ai_memory_attributes.py │ │ │ ├── _upload │ │ │ ├── __init__.py │ │ │ └── completion_hook.py │ │ │ ├── completion_hook.py │ │ │ ├── environment_variables.py │ │ │ ├── extended_handler.py │ │ │ ├── extended_span_utils.py │ │ │ ├── extended_types.py │ │ │ ├── handler.py │ │ │ ├── instruments.py │ │ │ ├── metrics.py │ │ │ ├── span_utils.py │ │ │ ├── types.py │ │ │ ├── utils.py │ │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── test_completion_hook.py │ │ ├── test_extended_handler.py │ │ ├── test_extended_memory.py │ │ ├── test_handler_metrics.py │ │ ├── test_upload.py │ │ ├── test_upload_entrypoint.py │ │ ├── test_utils.py │ │ └── test_version.py └── opentelemetry-util-http │ ├── README.rst │ ├── pyproject.toml │ ├── src │ └── opentelemetry │ │ └── util │ │ └── http │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── httplib.py │ │ ├── py.typed │ │ └── version.py │ ├── test-requirements.txt │ └── tests │ ├── __init__.py │ ├── test_capture_custom_headers.py │ ├── test_detect_synthetic_user_agent.py │ ├── test_http_base.py │ ├── test_http_excluded_urls.py │ ├── test_redact_query_parameters.py │ ├── test_redact_url.py │ ├── test_remove_credentials.py │ ├── test_sanitize_method.py │ └── test_try_set_ip.py └── uv.lock /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.codespellrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/component_owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/component_owners.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/update-version-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/scripts/update-version-patch.sh -------------------------------------------------------------------------------- /.github/scripts/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/scripts/update-version.sh -------------------------------------------------------------------------------- /.github/scripts/use-cla-approved-github-bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/scripts/use-cla-approved-github-bot.sh -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/component-owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/component-owners.yml -------------------------------------------------------------------------------- /.github/workflows/core_contrib_test_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/core_contrib_test_0.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/generate_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/generate_workflows.py -------------------------------------------------------------------------------- /.github/workflows/generate_workflows_lib/hatch_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/generate_workflows_lib/hatch_build.py -------------------------------------------------------------------------------- /.github/workflows/generate_workflows_lib/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/generate_workflows_lib/pyproject.toml -------------------------------------------------------------------------------- /.github/workflows/generate_workflows_lib/src/generate_workflows_lib/.gitignore: -------------------------------------------------------------------------------- 1 | tox.ini 2 | -------------------------------------------------------------------------------- /.github/workflows/generate_workflows_lib/src/generate_workflows_lib/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /.github/workflows/generate_workflows_loongsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/generate_workflows_loongsuite.py -------------------------------------------------------------------------------- /.github/workflows/lint_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/lint_0.yml -------------------------------------------------------------------------------- /.github/workflows/loongsuite_lint_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/loongsuite_lint_0.yml -------------------------------------------------------------------------------- /.github/workflows/loongsuite_test_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/loongsuite_test_0.yml -------------------------------------------------------------------------------- /.github/workflows/misc_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/misc_0.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/package-prepare-patch-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/package-prepare-patch-release.yml -------------------------------------------------------------------------------- /.github/workflows/package-prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/package-prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/package-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/package-release.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-patch-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/prepare-patch-release.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/prepare-release-branch.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/test_0.yml -------------------------------------------------------------------------------- /.github/workflows/test_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/test_1.yml -------------------------------------------------------------------------------- /.github/workflows/test_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.github/workflows/test_2.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.rstcheck.cfg: -------------------------------------------------------------------------------- 1 | [rstcheck] 2 | ignore_directives = automodule 3 | -------------------------------------------------------------------------------- /CHANGELOG-loongsuite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/CHANGELOG-loongsuite.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING-loongsuite-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/CONTRIBUTING-loongsuite-zh.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.Apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/LICENSE.Apache -------------------------------------------------------------------------------- /LICENSE.BSD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/LICENSE.BSD3 -------------------------------------------------------------------------------- /README-upstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/README-upstream.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/RELEASING.md -------------------------------------------------------------------------------- /_template/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/_template/README.rst -------------------------------------------------------------------------------- /_template/autodoc_entry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/_template/autodoc_entry.rst -------------------------------------------------------------------------------- /_template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/_template/pyproject.toml -------------------------------------------------------------------------------- /_template/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/_template/version.py -------------------------------------------------------------------------------- /deploy/deploy-Jaeger&Elasticsearch-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/deploy/deploy-Jaeger&Elasticsearch-en.md -------------------------------------------------------------------------------- /deploy/deploy-Jaeger&Elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/deploy/deploy-Jaeger&Elasticsearch.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_assets/img/loongcollector-sig-dingtalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/_assets/img/loongcollector-sig-dingtalk.jpg -------------------------------------------------------------------------------- /docs/_assets/img/loongsuite-go-sig-dingtalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/_assets/img/loongsuite-go-sig-dingtalk.png -------------------------------------------------------------------------------- /docs/_assets/img/loongsuite-java-sig-dingtalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/_assets/img/loongsuite-java-sig-dingtalk.jpg -------------------------------------------------------------------------------- /docs/_assets/img/loongsuite-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/_assets/img/loongsuite-logo.png -------------------------------------------------------------------------------- /docs/_assets/img/loongsuite-python-sig-dingtalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/_assets/img/loongsuite-python-sig-dingtalk.jpg -------------------------------------------------------------------------------- /docs/_assets/img/quickstart-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/_assets/img/quickstart-results.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/instrumentation-genai/openai.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation-genai/openai.rst -------------------------------------------------------------------------------- /docs/instrumentation-genai/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation-genai/util.rst -------------------------------------------------------------------------------- /docs/instrumentation/aio_pika/aio_pika.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/aio_pika/aio_pika.rst -------------------------------------------------------------------------------- /docs/instrumentation/aiohttp_client/aiohttp_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/aiohttp_client/aiohttp_client.rst -------------------------------------------------------------------------------- /docs/instrumentation/aiohttp_server/aiohttp_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/aiohttp_server/aiohttp_server.rst -------------------------------------------------------------------------------- /docs/instrumentation/aiokafka/aiokafka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/aiokafka/aiokafka.rst -------------------------------------------------------------------------------- /docs/instrumentation/aiopg/aiopg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/aiopg/aiopg.rst -------------------------------------------------------------------------------- /docs/instrumentation/asgi/asgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/asgi/asgi.rst -------------------------------------------------------------------------------- /docs/instrumentation/asyncclick/asyncclick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/asyncclick/asyncclick.rst -------------------------------------------------------------------------------- /docs/instrumentation/asyncio/asyncio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/asyncio/asyncio.rst -------------------------------------------------------------------------------- /docs/instrumentation/asyncpg/asyncpg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/asyncpg/asyncpg.rst -------------------------------------------------------------------------------- /docs/instrumentation/aws_lambda/aws_lambda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/aws_lambda/aws_lambda.rst -------------------------------------------------------------------------------- /docs/instrumentation/base/instrumentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/base/instrumentation.rst -------------------------------------------------------------------------------- /docs/instrumentation/base/instrumentor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/base/instrumentor.rst -------------------------------------------------------------------------------- /docs/instrumentation/boto/boto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/boto/boto.rst -------------------------------------------------------------------------------- /docs/instrumentation/boto3sqs/boto3sqs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/boto3sqs/boto3sqs.rst -------------------------------------------------------------------------------- /docs/instrumentation/botocore/botocore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/botocore/botocore.rst -------------------------------------------------------------------------------- /docs/instrumentation/cassandra/cassandra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/cassandra/cassandra.rst -------------------------------------------------------------------------------- /docs/instrumentation/celery/celery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/celery/celery.rst -------------------------------------------------------------------------------- /docs/instrumentation/click/click.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/click/click.rst -------------------------------------------------------------------------------- /docs/instrumentation/confluent_kafka/confluent_kafka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/confluent_kafka/confluent_kafka.rst -------------------------------------------------------------------------------- /docs/instrumentation/dbapi/dbapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/dbapi/dbapi.rst -------------------------------------------------------------------------------- /docs/instrumentation/django/django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/django/django.rst -------------------------------------------------------------------------------- /docs/instrumentation/elasticsearch/elasticsearch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/elasticsearch/elasticsearch.rst -------------------------------------------------------------------------------- /docs/instrumentation/falcon/falcon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/falcon/falcon.rst -------------------------------------------------------------------------------- /docs/instrumentation/fastapi/fastapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/fastapi/fastapi.rst -------------------------------------------------------------------------------- /docs/instrumentation/flask/flask.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/flask/flask.rst -------------------------------------------------------------------------------- /docs/instrumentation/grpc/grpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/grpc/grpc.rst -------------------------------------------------------------------------------- /docs/instrumentation/httpx/httpx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/httpx/httpx.rst -------------------------------------------------------------------------------- /docs/instrumentation/jinja2/jinja2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/jinja2/jinja2.rst -------------------------------------------------------------------------------- /docs/instrumentation/kafka_python/kafka_python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/kafka_python/kafka_python.rst -------------------------------------------------------------------------------- /docs/instrumentation/logging/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/logging/logging.rst -------------------------------------------------------------------------------- /docs/instrumentation/mysql/mysql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/mysql/mysql.rst -------------------------------------------------------------------------------- /docs/instrumentation/mysqlclient/mysqlclient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/mysqlclient/mysqlclient.rst -------------------------------------------------------------------------------- /docs/instrumentation/pika/pika.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/pika/pika.rst -------------------------------------------------------------------------------- /docs/instrumentation/psycopg/psycopg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/psycopg/psycopg.rst -------------------------------------------------------------------------------- /docs/instrumentation/psycopg2/psycopg2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/psycopg2/psycopg2.rst -------------------------------------------------------------------------------- /docs/instrumentation/pymemcache/pymemcache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/pymemcache/pymemcache.rst -------------------------------------------------------------------------------- /docs/instrumentation/pymongo/pymongo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/pymongo/pymongo.rst -------------------------------------------------------------------------------- /docs/instrumentation/pymssql/pymssql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/pymssql/pymssql.rst -------------------------------------------------------------------------------- /docs/instrumentation/pymysql/pymysql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/pymysql/pymysql.rst -------------------------------------------------------------------------------- /docs/instrumentation/pyramid/pyramid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/pyramid/pyramid.rst -------------------------------------------------------------------------------- /docs/instrumentation/redis/redis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/redis/redis.rst -------------------------------------------------------------------------------- /docs/instrumentation/remoulade/remoulade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/remoulade/remoulade.rst -------------------------------------------------------------------------------- /docs/instrumentation/requests/requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/requests/requests.rst -------------------------------------------------------------------------------- /docs/instrumentation/sqlalchemy/sqlalchemy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/sqlalchemy/sqlalchemy.rst -------------------------------------------------------------------------------- /docs/instrumentation/sqlite3/sqlite3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/sqlite3/sqlite3.rst -------------------------------------------------------------------------------- /docs/instrumentation/starlette/starlette.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/starlette/starlette.rst -------------------------------------------------------------------------------- /docs/instrumentation/system_metrics/system_metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/system_metrics/system_metrics.rst -------------------------------------------------------------------------------- /docs/instrumentation/threading/threading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/threading/threading.rst -------------------------------------------------------------------------------- /docs/instrumentation/tornado/tornado.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/tornado/tornado.rst -------------------------------------------------------------------------------- /docs/instrumentation/tortoiseorm/tortoiseorm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/tortoiseorm/tortoiseorm.rst -------------------------------------------------------------------------------- /docs/instrumentation/urllib/urllib3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/urllib/urllib3.rst -------------------------------------------------------------------------------- /docs/instrumentation/urllib3/urllib3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/urllib3/urllib3.rst -------------------------------------------------------------------------------- /docs/instrumentation/wsgi/wsgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/instrumentation/wsgi/wsgi.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/nitpick-exceptions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/nitpick-exceptions.ini -------------------------------------------------------------------------------- /docs/performance/benchmarks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/performance/benchmarks.rst -------------------------------------------------------------------------------- /docs/propagator/aws/aws.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/propagator/aws/aws.rst -------------------------------------------------------------------------------- /docs/resource/container/container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/resource/container/container.rst -------------------------------------------------------------------------------- /docs/sdk-extension/aws/aws.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/docs/sdk-extension/aws/aws.rst -------------------------------------------------------------------------------- /eachdist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/eachdist.ini -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-credential-provider-gcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-credential-provider-gcp/LICENSE -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-credential-provider-gcp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-credential-provider-gcp/README.rst -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-credential-provider-gcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-credential-provider-gcp/pyproject.toml -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-credential-provider-gcp/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-credential-provider-gcp/test-requirements.txt -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/README.rst -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/example/Dockerfile -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/example/README.md -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/example/sampleapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/example/sampleapp.py -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/proto/.gitignore: -------------------------------------------------------------------------------- 1 | opentelemetry 2 | -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/proto/README.md -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/pyproject.toml -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/test-requirements.txt -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/tests/__init__.py -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-prometheus-remote-write/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-prometheus-remote-write/tests/conftest.py -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-richconsole/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-richconsole/README.rst -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-richconsole/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-richconsole/pyproject.toml -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-richconsole/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-richconsole/test-requirements.txt -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-richconsole/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exporter/opentelemetry-exporter-richconsole/tests/test_rich_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/exporter/opentelemetry-exporter-richconsole/tests/test_rich_exporter.py -------------------------------------------------------------------------------- /gen-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/gen-requirements.txt -------------------------------------------------------------------------------- /instrumentation-genai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/README.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | .test 3 | dist 4 | 5 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-google-genai/CHANGELOG.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-google-genai/LICENSE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-google-genai/README.rst -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/TODOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-google-genai/TODOS.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/tests/generate_content/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-google-genai/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-langchain/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-langchain/CHANGELOG.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-langchain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-langchain/LICENSE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-langchain/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-langchain/NOTICE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-langchain/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-langchain/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-langchain/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-langchain/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-agents-v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-openai-agents-v2/LICENSE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-agents-v2/tests/stubs/agents/__init__.py: -------------------------------------------------------------------------------- 1 | # Stub package for tests 2 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-v2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-openai-v2/CHANGELOG.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-openai-v2/LICENSE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-v2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-openai-v2/README.rst -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-v2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-openai-v2/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-v2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-openai-v2/tests/README.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-openai-v2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-vertexai/CHANGELOG.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-vertexai/LICENSE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-vertexai/README.rst -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-vertexai/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/src/opentelemetry/instrumentation/vertexai/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-vertexai/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-vertexai/tests/conftest.py -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-weaviate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-weaviate/CHANGELOG.md -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-weaviate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-weaviate/LICENSE -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-weaviate/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-weaviate/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-genai/opentelemetry-instrumentation-weaviate/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-weaviate/src/opentelemetry/instrumentation/weaviate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-genai/opentelemetry-instrumentation-weaviate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agentscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-agentscope/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agentscope/src/opentelemetry/instrumentation/agentscope/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0" 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agentscope/tests/shared/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """共享测试工具和数据""" 3 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-agno/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-agno/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/src/opentelemetry/instrumentation/agno/package.py: -------------------------------------------------------------------------------- 1 | _instruments = ("agno >= 1.5.0",) 2 | _supports_metrics = False 3 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/src/opentelemetry/instrumentation/agno/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1b0.dev" 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-agno/tests/conftest.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-agno/tests/test_agno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-agno/tests/test_agno.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-dify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-dify/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-dify/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-dify/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-dify/src/opentelemetry/instrumentation/dify/handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-dify/src/opentelemetry/instrumentation/dify/package.py: -------------------------------------------------------------------------------- 1 | _instruments = () 2 | _supports_metrics = False 3 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-dify/src/opentelemetry/instrumentation/dify/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-dify/src/opentelemetry/instrumentation/dify/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.0" 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-langchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-langchain/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-langchain/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-langchain/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/package.py: -------------------------------------------------------------------------------- 1 | _instruments = ("langchain_core >= 0.1.0",) 2 | _supports_metrics = True 3 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0" 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/examples/__init__.py: -------------------------------------------------------------------------------- 1 | # MCP Example Package 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/src/opentelemetry/instrumentation/mcp/package.py: -------------------------------------------------------------------------------- 1 | _instruments = ("mcp>=1.3.0",) 2 | _supports_metrics = True 3 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/src/opentelemetry/instrumentation/mcp/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/fixtures.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/mcp_server.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_http.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_sse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_sse.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_stdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_stdio.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mcp/tests/test_utils.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mem0/README.md -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mem0/pyproject.toml -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/src/opentelemetry/instrumentation/mem0/internal/__init__.py: -------------------------------------------------------------------------------- 1 | # Internal utilities for mem0 instrumentation 2 | 3 | 4 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/src/opentelemetry/instrumentation/mem0/package.py: -------------------------------------------------------------------------------- 1 | _instruments = ("mem0ai >= 1.0.0",) 2 | _supports_metrics = False 3 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/src/opentelemetry/instrumentation/mem0/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests for opentelemetry-instrumentation-mem0 2 | 3 | 4 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mem0/tests/conftest.py -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/tests/pytest-min.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = -q 3 | 4 | -------------------------------------------------------------------------------- /instrumentation-loongsuite/loongsuite-instrumentation-mem0/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation-loongsuite/loongsuite-instrumentation-mem0/tests/test_util.py -------------------------------------------------------------------------------- /instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/README.md -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-2.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-3.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aio-pika/tests/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aio-pika/tests/consts.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiohttp-client/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-client/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiohttp-client/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiohttp-client/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-client/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-server/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiohttp-server/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiohttp-server/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiohttp-server/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiokafka/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiokafka/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiokafka/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/src/opentelemetry/instrumentation/aiokafka/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiokafka/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiokafka/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiokafka/tests/test_utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiopg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiopg/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiopg/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiopg/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiopg/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiopg/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiopg/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aiopg/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aiopg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asgi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asgi/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asgi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asgi/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asgi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asgi/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asgi/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asgi/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asgi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asgi/tests/test_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asgi/tests/test_getter.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncclick/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncclick/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncclick/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncclick/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncclick/src/opentelemetry/instrumentation/asyncclick/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncclick/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncclick/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncio/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncio/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncio/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncio/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncio/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncio/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncio/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncio/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncio/tests/__init__.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncpg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncpg/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncpg/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncpg/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncpg/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncpg/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncpg/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-asyncpg/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-asyncpg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aws-lambda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aws-lambda/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aws-lambda/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aws-lambda/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aws-lambda/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aws-lambda/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aws-lambda/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-aws-lambda/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aws-lambda/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-aws-lambda/tests/mocks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto/tests/conftest.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto3sqs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto3sqs/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto3sqs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto3sqs/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto3sqs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto3sqs/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto3sqs/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-boto3sqs/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-boto3sqs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/tests/README.md -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/tests/bedrock_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/tests/bedrock_utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-botocore/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-botocore/tests/conftest.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-cassandra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-cassandra/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-cassandra/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-cassandra/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-cassandra/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-cassandra/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-cassandra/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-cassandra/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-cassandra/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/tests/test_duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/tests/test_duplicate.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/tests/test_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/tests/test_getter.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/tests/test_metrics.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/tests/test_tasks.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-celery/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-celery/tests/test_utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-click/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-click/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-click/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-click/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-click/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-click/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-click/tests/test_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-click/tests/test_click.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-confluent-kafka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-confluent-kafka/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-confluent-kafka/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-confluent-kafka/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-confluent-kafka/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-confluent-kafka/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-confluent-kafka/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-confluent-kafka/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-confluent-kafka/tests/utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-dbapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-dbapi/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-dbapi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-dbapi/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-dbapi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-dbapi/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-dbapi/src/opentelemetry/instrumentation/dbapi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-dbapi/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-dbapi/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-dbapi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/src/opentelemetry/instrumentation/django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/test-requirements-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/test-requirements-2.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/test-requirements-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/test-requirements-3.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/tests/test_middleware.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-django/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-django/tests/views.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-elasticsearch/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-elasticsearch/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-elasticsearch/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-elasticsearch/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-elasticsearch/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-elasticsearch/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/test-requirements-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-2.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/test-requirements-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-3.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/test-requirements-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-4.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/tests/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/tests/app.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-falcon/tests/test_falcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-falcon/tests/test_falcon.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-fastapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-fastapi/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-fastapi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-fastapi/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-fastapi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-fastapi/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-fastapi/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-fastapi/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-fastapi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/test-requirements-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/test-requirements-2.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/tests/base_test.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/tests/test_automatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/tests/test_automatic.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/tests/test_copy_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/tests/test_copy_context.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/tests/test_programmatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/tests/test_programmatic.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-flask/tests/test_sqlcommenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-flask/tests/test_sqlcommenter.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/tests/__init__.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/tests/_aio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/tests/_aio_client.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/tests/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/tests/_client.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/tests/_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/tests/_server.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-grpc/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-grpc/tests/test_filters.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-httpx/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-httpx/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-httpx/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/src/opentelemetry/instrumentation/httpx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-httpx/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-httpx/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-httpx/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-jinja2/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-jinja2/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-jinja2/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/src/opentelemetry/instrumentation/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-jinja2/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/tests/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-jinja2/tests/templates/base.html -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-jinja2/tests/test_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-jinja2/tests/test_jinja2.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-kafka-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-kafka-python/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-kafka-python/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-kafka-python/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-kafka-python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-kafka-python/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-kafka-python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-kafka-python/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-kafka-python/tests/test_utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-logging/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-logging/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-logging/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-logging/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-logging/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-logging/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-logging/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-logging/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-logging/tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-logging/tests/test_logging.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysql/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysql/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysql/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysql/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysql/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysql/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysql/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysql/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysqlclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysqlclient/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysqlclient/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysqlclient/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysqlclient/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-mysqlclient/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-mysqlclient/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/tests/test_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/tests/test_getter.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pika/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pika/tests/test_utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/src/opentelemetry/instrumentation/psycopg/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg2/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg2/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg2/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg2/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-psycopg2/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-psycopg2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymemcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymemcache/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymemcache/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymemcache/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymemcache/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymemcache/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymemcache/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymemcache/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymemcache/tests/utils.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymongo/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymongo/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymongo/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/src/opentelemetry/instrumentation/pymongo/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymongo/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymongo/tests/test_pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymongo/tests/test_pymongo.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymssql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymssql/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymssql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymssql/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymssql/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymssql/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymssql/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymssql/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymssql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymysql/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymysql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymysql/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymysql/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymysql/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymysql/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pymysql/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pymysql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pyramid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pyramid/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pyramid/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pyramid/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pyramid/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pyramid/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pyramid/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pyramid/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pyramid/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-pyramid/tests/test_automatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-pyramid/tests/test_automatic.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-redis/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-redis/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-redis/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/src/opentelemetry/instrumentation/redis/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-redis/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-redis/tests/__init__.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-redis/tests/test_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-redis/tests/test_redis.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-remoulade/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-remoulade/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-remoulade/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-remoulade/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-remoulade/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-remoulade/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-remoulade/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-remoulade/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-remoulade/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-remoulade/tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-remoulade/tests/test_messages.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-requests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-requests/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-requests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-requests/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-requests/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-requests/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-requests/src/opentelemetry/instrumentation/requests/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-requests/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-requests/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-requests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlalchemy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlalchemy/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlalchemy/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlalchemy/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlalchemy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlalchemy/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlalchemy/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlalchemy/tests/__init__.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlite3/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlite3/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlite3/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/src/opentelemetry/instrumentation/sqlite3/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlite3/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/tests/test_sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlite3/tests/test_sqlite3.py -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-sqlite3/tests/testdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-sqlite3/tests/testdb -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-starlette/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-starlette/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-starlette/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/src/opentelemetry/instrumentation/starlette/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/test-requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-starlette/test-requirements.in -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-starlette/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-starlette/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-system-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-system-metrics/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-system-metrics/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-system-metrics/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-system-metrics/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-system-metrics/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-system-metrics/src/opentelemetry/instrumentation/system_metrics/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-system-metrics/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-threading/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-threading/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-threading/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-threading/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-threading/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-threading/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-threading/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-threading/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-threading/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tornado/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tornado/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tornado/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tornado/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tornado/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tornado/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tornado/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tornado/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tornado/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tortoiseorm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tortoiseorm/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tortoiseorm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tortoiseorm/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tortoiseorm/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-tortoiseorm/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-tortoiseorm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib/src/opentelemetry/instrumentation/urllib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib3/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib3/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib3/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib3/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib3/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib3/test-requirements-0.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib3/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-urllib3/test-requirements-1.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-urllib3/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-wsgi/LICENSE -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-wsgi/README.rst -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-wsgi/pyproject.toml -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/src/opentelemetry/instrumentation/wsgi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-wsgi/test-requirements.txt -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instrumentation/opentelemetry-instrumentation-wsgi/tests/test_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/instrumentation/opentelemetry-instrumentation-wsgi/tests/test_getter.py -------------------------------------------------------------------------------- /opentelemetry-contrib-instrumentations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-contrib-instrumentations/LICENSE -------------------------------------------------------------------------------- /opentelemetry-contrib-instrumentations/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-contrib-instrumentations/README.rst -------------------------------------------------------------------------------- /opentelemetry-contrib-instrumentations/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-contrib-instrumentations/pyproject.toml -------------------------------------------------------------------------------- /opentelemetry-distro/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-distro/README.rst -------------------------------------------------------------------------------- /opentelemetry-distro/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-distro/pyproject.toml -------------------------------------------------------------------------------- /opentelemetry-distro/src/opentelemetry/distro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-distro/src/opentelemetry/distro/__init__.py -------------------------------------------------------------------------------- /opentelemetry-distro/src/opentelemetry/distro/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opentelemetry-distro/src/opentelemetry/distro/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-distro/src/opentelemetry/distro/version.py -------------------------------------------------------------------------------- /opentelemetry-distro/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-distro/test-requirements.txt -------------------------------------------------------------------------------- /opentelemetry-distro/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opentelemetry-distro/tests/test_distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-distro/tests/test_distro.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/LICENSE -------------------------------------------------------------------------------- /opentelemetry-instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/README.md -------------------------------------------------------------------------------- /opentelemetry-instrumentation/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/README.rst -------------------------------------------------------------------------------- /opentelemetry-instrumentation/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/pyproject.toml -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/_semconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/src/opentelemetry/instrumentation/_semconv.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/src/opentelemetry/instrumentation/bootstrap.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/src/opentelemetry/instrumentation/distro.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/propagators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/src/opentelemetry/instrumentation/propagators.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/src/opentelemetry/instrumentation/utils.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/src/opentelemetry/instrumentation/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/src/opentelemetry/instrumentation/version.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/test-requirements.txt -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/auto_instrumentation/test_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/auto_instrumentation/test_initialize.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/auto_instrumentation/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/auto_instrumentation/test_load.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/auto_instrumentation/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/auto_instrumentation/test_run.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/auto_instrumentation/test_sitecustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/auto_instrumentation/test_sitecustomize.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_bootstrap.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_dependencies.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_distro.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_instrumentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_instrumentor.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_propagators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_propagators.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_semconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_semconv.py -------------------------------------------------------------------------------- /opentelemetry-instrumentation/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/opentelemetry-instrumentation/tests/test_utils.py -------------------------------------------------------------------------------- /processor/opentelemetry-processor-baggage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/processor/opentelemetry-processor-baggage/LICENSE -------------------------------------------------------------------------------- /processor/opentelemetry-processor-baggage/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/processor/opentelemetry-processor-baggage/README.rst -------------------------------------------------------------------------------- /processor/opentelemetry-processor-baggage/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/processor/opentelemetry-processor-baggage/pyproject.toml -------------------------------------------------------------------------------- /processor/opentelemetry-processor-baggage/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/processor/opentelemetry-processor-baggage/test-requirements.txt -------------------------------------------------------------------------------- /processor/opentelemetry-processor-baggage/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/processor/opentelemetry-processor-baggage/tests/__init__.py -------------------------------------------------------------------------------- /processor/opentelemetry-processor-baggage/tests/test_baggage_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/processor/opentelemetry-processor-baggage/tests/test_baggage_processor.py -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/CHANGELOG.md -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/LICENSE -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/MANIFEST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/MANIFEST.rst -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/README.rst -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/benchmark-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest-benchmark==4.0.0 2 | -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/pyproject.toml -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/test-requirements-0.txt -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/test-requirements-1.txt -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-aws-xray/tests/test_aws_xray_propagator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-aws-xray/tests/test_aws_xray_propagator.py -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-ot-trace/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-ot-trace/README.rst -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-ot-trace/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-ot-trace/pyproject.toml -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-ot-trace/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-ot-trace/test-requirements.txt -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-ot-trace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /propagator/opentelemetry-propagator-ot-trace/tests/test_ot_trace_propagator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/propagator/opentelemetry-propagator-ot-trace/tests/test_ot_trace_propagator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/pytest.ini -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/CHANGELOG.md -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/LICENSE -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/MANIFEST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/MANIFEST.rst -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/README.rst -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/pyproject.toml -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/test-requirements-0.txt -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/test-requirements-1.txt -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/tests/__init__.py -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/tests/test_app_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/tests/test_app_service.py -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/tests/test_functions.py -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-azure/tests/test_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-azure/tests/test_vm.py -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-container/LICENSE -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/MANIFEST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-container/MANIFEST.rst -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-container/README.rst -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-container/pyproject.toml -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-container/test-requirements.txt -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-container/tests/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-container/tests/test_container.py -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-containerid/LICENSE -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/MANIFEST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-containerid/MANIFEST.rst -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-containerid/README.rst -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-containerid/pyproject.toml -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-containerid/test-requirements.txt -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/opentelemetry-resource-detector-containerid/tests/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/resource/opentelemetry-resource-detector-containerid/tests/test_container.py -------------------------------------------------------------------------------- /rtd-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/rtd-requirements.txt -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_a_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/build_a_package.sh -------------------------------------------------------------------------------- /scripts/check_for_valid_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/check_for_valid_readme.py -------------------------------------------------------------------------------- /scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/coverage.sh -------------------------------------------------------------------------------- /scripts/eachdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/eachdist.py -------------------------------------------------------------------------------- /scripts/generate_instrumentation_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/generate_instrumentation_bootstrap.py -------------------------------------------------------------------------------- /scripts/generate_instrumentation_metapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/generate_instrumentation_metapackage.py -------------------------------------------------------------------------------- /scripts/generate_instrumentation_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/generate_instrumentation_readme.py -------------------------------------------------------------------------------- /scripts/generate_release_notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/generate_release_notes.sh -------------------------------------------------------------------------------- /scripts/license_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/license_header.txt -------------------------------------------------------------------------------- /scripts/merge_changelog_to_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/merge_changelog_to_main.sh -------------------------------------------------------------------------------- /scripts/otel_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/otel_packaging.py -------------------------------------------------------------------------------- /scripts/prepare_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/prepare_release.sh -------------------------------------------------------------------------------- /scripts/update_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/scripts/update_sha.py -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/CHANGELOG.md -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/LICENSE -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/MANIFEST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/MANIFEST.rst -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/README.rst -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/benchmark-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest-benchmark==4.0.0 2 | -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/pyproject.toml -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/test-requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/test-requirements-0.txt -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/test-requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/test-requirements-1.txt -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test__lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test__lambda.py -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_beanstalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_beanstalk.py -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_ec2.py -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_ecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_ecs.py -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_eks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/sdk-extension/opentelemetry-sdk-extension-aws/tests/resource/test_eks.py -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/trace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk-extension/opentelemetry-sdk-extension-aws/tests/trace/sampler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/asyncpg/test_asyncpg_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/asyncpg/test_asyncpg_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/celery/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/celery/conftest.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/celery/test_celery_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/celery/test_celery_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/check_availability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/check_availability.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/flask/test_flask_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/flask/test_flask_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/mysql/test_mysql_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/mysql/test_mysql_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/postgres/test_aiopg_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/postgres/test_aiopg_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/postgres/test_psycopg_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/postgres/test_psycopg_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/pymongo/test_pymongo_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/pymongo/test_pymongo_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/pymysql/test_pymysql_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/pymysql/test_pymysql_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/redis/test_redis_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/redis/test_redis_functional.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/__init__.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/mixins.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_instrument.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_mssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_mssql.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_mysql.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_postgres.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/sqlalchemy_tests/test_sqlite.py -------------------------------------------------------------------------------- /tests/opentelemetry-docker-tests/tests/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tests/opentelemetry-docker-tests/tests/test-requirements.txt -------------------------------------------------------------------------------- /tox-loongsuite.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tox-loongsuite.ini -------------------------------------------------------------------------------- /tox-uv.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tox-uv.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/tox.ini -------------------------------------------------------------------------------- /typings/fsspec/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/typings/fsspec/__init__.pyi -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/CHANGELOG-loongsuite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/CHANGELOG-loongsuite.md -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/CHANGELOG.md -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/LICENSE -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/README-loongsuite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/README-loongsuite.rst -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/README.rst -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/pyproject.toml -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/__init__.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/handler.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/instruments.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/metrics.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/span_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/span_utils.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/types.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/utils.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/src/opentelemetry/util/genai/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/src/opentelemetry/util/genai/version.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest==7.4.4 2 | fsspec==2025.9.0 3 | -e opentelemetry-instrumentation 4 | -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_completion_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_completion_hook.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_extended_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_extended_handler.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_extended_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_extended_memory.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_handler_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_handler_metrics.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_upload.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_upload_entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_upload_entrypoint.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_utils.py -------------------------------------------------------------------------------- /util/opentelemetry-util-genai/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-genai/tests/test_version.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/README.rst -------------------------------------------------------------------------------- /util/opentelemetry-util-http/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/pyproject.toml -------------------------------------------------------------------------------- /util/opentelemetry-util-http/src/opentelemetry/util/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/src/opentelemetry/util/http/__init__.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/src/opentelemetry/util/http/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/src/opentelemetry/util/http/constants.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/src/opentelemetry/util/http/httplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/src/opentelemetry/util/http/httplib.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/src/opentelemetry/util/http/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/opentelemetry-util-http/src/opentelemetry/util/http/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/src/opentelemetry/util/http/version.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/test-requirements.txt -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_capture_custom_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_capture_custom_headers.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_detect_synthetic_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_detect_synthetic_user_agent.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_http_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_http_base.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_http_excluded_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_http_excluded_urls.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_redact_query_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_redact_query_parameters.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_redact_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_redact_url.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_remove_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_remove_credentials.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_sanitize_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_sanitize_method.py -------------------------------------------------------------------------------- /util/opentelemetry-util-http/tests/test_try_set_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/util/opentelemetry-util-http/tests/test_try_set_ip.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/loongsuite-python-agent/HEAD/uv.lock --------------------------------------------------------------------------------