├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── .trivyignore ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── enhancement.md │ └── troubleshooting.md ├── LICENSE_HEADER ├── actionlint.yml ├── codecov.yml ├── containers │ ├── Dockerfile │ └── Makefile ├── dependabot.yml ├── mergify.yml ├── pull_request_template.md ├── scripts │ ├── get-envs.py │ ├── install_azure_functions_worker.sh │ └── tox-summary.py ├── stale.yml └── workflows │ ├── addlicense.yml │ ├── benchmarks.yml │ ├── build-ci-image.yml │ ├── deploy.yml │ ├── mega-linter.yml │ ├── tests.yml │ └── trivy.yml ├── .gitignore ├── .mega-linter.yml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── THIRD_PARTY_NOTICES.md ├── asv.conf.json ├── newrelic ├── __init__.py ├── admin │ ├── __init__.py │ ├── __main__.py │ ├── debug_console.py │ ├── generate_config.py │ ├── license_key.py │ ├── local_config.py │ ├── network_config.py │ ├── record_deploy.py │ ├── run_program.py │ ├── run_python.py │ ├── server_config.py │ └── validate_config.py ├── agent.py ├── api │ ├── __init__.py │ ├── application.py │ ├── asgi_application.py │ ├── background_task.py │ ├── cat_header_mixin.py │ ├── database_trace.py │ ├── datastore_trace.py │ ├── error_trace.py │ ├── exceptions.py │ ├── external_trace.py │ ├── function_profile.py │ ├── function_trace.py │ ├── generator_trace.py │ ├── graphql_trace.py │ ├── html_insertion.py │ ├── import_hook.py │ ├── llm_custom_attributes.py │ ├── log.py │ ├── memcache_trace.py │ ├── message_trace.py │ ├── message_transaction.py │ ├── ml_model.py │ ├── object_wrapper.py │ ├── profile_trace.py │ ├── settings.py │ ├── solr_trace.py │ ├── supportability.py │ ├── time_trace.py │ ├── transaction.py │ ├── transaction_name.py │ ├── web_transaction.py │ └── wsgi_application.py ├── bootstrap │ ├── __init__.py │ └── sitecustomize.py ├── common │ ├── __init__.py │ ├── agent_http.py │ ├── async_proxy.py │ ├── async_wrapper.py │ ├── cacert.pem │ ├── certs.py │ ├── coroutine.py │ ├── encoding_utils.py │ ├── log_file.py │ ├── metric_utils.py │ ├── object_names.py │ ├── object_wrapper.py │ ├── package_version_utils.py │ ├── signature.py │ ├── stopwatch.py │ ├── streaming_utils.py │ ├── system_info.py │ └── utilization.py ├── config.py ├── console.py ├── core │ ├── __init__.py │ ├── _thread_utilization.c │ ├── adaptive_sampler.py │ ├── agent.py │ ├── agent_control_health.py │ ├── agent_protocol.py │ ├── agent_streaming.py │ ├── application.py │ ├── attribute.py │ ├── attribute_filter.py │ ├── code_level_metrics.py │ ├── config.py │ ├── context.py │ ├── custom_event.py │ ├── data_collector.py │ ├── database_node.py │ ├── database_utils.py │ ├── datastore_node.py │ ├── environment.py │ ├── error_collector.py │ ├── error_node.py │ ├── external_node.py │ ├── function_node.py │ ├── graphql_node.py │ ├── graphql_utils.py │ ├── infinite_tracing.proto │ ├── infinite_tracing_pb2.py │ ├── infinite_tracing_v3_pb2.py │ ├── infinite_tracing_v4_pb2.py │ ├── infinite_tracing_v5_pb2.py │ ├── infinite_tracing_v6_pb2.py │ ├── internal_metrics.py │ ├── log_event_node.py │ ├── loop_node.py │ ├── memcache_node.py │ ├── message_node.py │ ├── metric.py │ ├── node_mixin.py │ ├── otlp_utils.py │ ├── profile_sessions.py │ ├── root_node.py │ ├── rules_engine.py │ ├── solr_node.py │ ├── stack_trace.py │ ├── stats_engine.py │ ├── string_table.py │ ├── thread_utilization.py │ ├── trace_cache.py │ ├── trace_node.py │ └── transaction_node.py ├── extras │ ├── __init__.py │ └── framework_django │ │ ├── __init__.py │ │ └── templatetags │ │ ├── __init__.py │ │ └── newrelic_tags.py ├── hooks │ ├── __init__.py │ ├── adapter_asgiref.py │ ├── adapter_cheroot.py │ ├── adapter_cherrypy.py │ ├── adapter_daphne.py │ ├── adapter_flup.py │ ├── adapter_gevent.py │ ├── adapter_gunicorn.py │ ├── adapter_hypercorn.py │ ├── adapter_mcp.py │ ├── adapter_meinheld.py │ ├── adapter_paste.py │ ├── adapter_uvicorn.py │ ├── adapter_waitress.py │ ├── adapter_wsgiref.py │ ├── application_celery.py │ ├── application_gearman.py │ ├── component_cornice.py │ ├── component_djangorestframework.py │ ├── component_flask_rest.py │ ├── component_graphenedjango.py │ ├── component_graphqlserver.py │ ├── component_piston.py │ ├── component_sentry.py │ ├── component_tastypie.py │ ├── coroutines_asyncio.py │ ├── coroutines_gevent.py │ ├── database_aiomysql.py │ ├── database_asyncpg.py │ ├── database_cx_oracle.py │ ├── database_dbapi2.py │ ├── database_dbapi2_async.py │ ├── database_ibm_db_dbi.py │ ├── database_mysql.py │ ├── database_mysqldb.py │ ├── database_oracledb.py │ ├── database_postgresql.py │ ├── database_psycopg.py │ ├── database_psycopg2.py │ ├── database_psycopg2cffi.py │ ├── database_psycopg2ct.py │ ├── database_pymssql.py │ ├── database_pymysql.py │ ├── database_pyodbc.py │ ├── database_sqlite.py │ ├── datastore_aiomcache.py │ ├── datastore_aioredis.py │ ├── datastore_aredis.py │ ├── datastore_bmemcached.py │ ├── datastore_cassandradriver.py │ ├── datastore_elasticsearch.py │ ├── datastore_firestore.py │ ├── datastore_memcache.py │ ├── datastore_motor.py │ ├── datastore_pyelasticsearch.py │ ├── datastore_pylibmc.py │ ├── datastore_pymemcache.py │ ├── datastore_pymongo.py │ ├── datastore_pysolr.py │ ├── datastore_redis.py │ ├── datastore_solrpy.py │ ├── datastore_valkey.py │ ├── external_aiobotocore.py │ ├── external_botocore.py │ ├── external_dropbox.py │ ├── external_facepy.py │ ├── external_feedparser.py │ ├── external_httplib.py │ ├── external_httplib2.py │ ├── external_httpx.py │ ├── external_pyzeebe.py │ ├── external_requests.py │ ├── external_s3transfer.py │ ├── external_thrift.py │ ├── external_urllib.py │ ├── external_urllib3.py │ ├── external_xmlrpclib.py │ ├── framework_aiohttp.py │ ├── framework_ariadne.py │ ├── framework_azurefunctions.py │ ├── framework_bottle.py │ ├── framework_cherrypy.py │ ├── framework_django.py │ ├── framework_falcon.py │ ├── framework_fastapi.py │ ├── framework_flask.py │ ├── framework_graphene.py │ ├── framework_graphql.py │ ├── framework_graphql_py3.py │ ├── framework_grpc.py │ ├── framework_pyramid.py │ ├── framework_sanic.py │ ├── framework_starlette.py │ ├── framework_strawberry.py │ ├── framework_tornado.py │ ├── framework_webpy.py │ ├── logger_logging.py │ ├── logger_loguru.py │ ├── logger_structlog.py │ ├── memcache_memcache.py │ ├── messagebroker_confluentkafka.py │ ├── messagebroker_kafkapython.py │ ├── messagebroker_kombu.py │ ├── messagebroker_pika.py │ ├── middleware_flask_compress.py │ ├── mlmodel_autogen.py │ ├── mlmodel_gemini.py │ ├── mlmodel_langchain.py │ ├── mlmodel_openai.py │ ├── mlmodel_sklearn.py │ ├── template_genshi.py │ ├── template_jinja2.py │ └── template_mako.py ├── network │ ├── __init__.py │ ├── addresses.py │ └── exceptions.py ├── newrelic.ini ├── packages │ ├── __init__.py │ ├── asgiref_compatibility.py │ ├── isort │ │ ├── LICENSE │ │ ├── __init__.py │ │ └── stdlibs │ │ │ ├── __init__.py │ │ │ ├── all.py │ │ │ ├── py2.py │ │ │ ├── py27.py │ │ │ ├── py3.py │ │ │ ├── py310.py │ │ │ ├── py311.py │ │ │ ├── py36.py │ │ │ ├── py37.py │ │ │ ├── py38.py │ │ │ └── py39.py │ ├── opentelemetry_proto │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── common.proto │ │ ├── common_pb2.py │ │ ├── generate_pb2.sh │ │ ├── logs.proto │ │ ├── logs_pb2.py │ │ ├── metrics.proto │ │ ├── metrics_pb2.py │ │ ├── resource.proto │ │ └── resource_pb2.py │ ├── requirements.txt │ ├── urllib3 │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── makefile.py │ │ │ │ └── weakref_finalize.py │ │ │ └── six.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssl_match_hostname.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ └── wrapt │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __wrapt__.py │ │ ├── _wrappers.c │ │ ├── arguments.py │ │ ├── decorators.py │ │ ├── importer.py │ │ ├── patches.py │ │ ├── weakrefs.py │ │ └── wrappers.py └── samplers │ ├── __init__.py │ ├── cpu_usage.py │ ├── data_sampler.py │ ├── decorators.py │ ├── gc_data.py │ └── memory_usage.py ├── pyproject.toml ├── scripts ├── azure-prebuild.sh └── newrelic-admin ├── setup.py ├── tests ├── adapter_asgiref │ ├── conftest.py │ └── test_context_propagation.py ├── adapter_cheroot │ ├── conftest.py │ └── test_wsgi.py ├── adapter_daphne │ ├── conftest.py │ └── test_daphne.py ├── adapter_gevent │ ├── _application.py │ ├── conftest.py │ ├── test_patching.py │ └── test_pywsgi.py ├── adapter_gunicorn │ ├── app.py │ ├── asgi_app.py │ ├── async_app.py │ ├── config.ini │ ├── conftest.py │ ├── test_aiohttp_app_factory.py │ ├── test_asgi_app.py │ ├── test_gaiohttp.py │ └── worker.py ├── adapter_hypercorn │ ├── conftest.py │ └── test_hypercorn.py ├── adapter_mcp │ ├── conftest.py │ └── test_mcp.py ├── adapter_uvicorn │ ├── conftest.py │ └── test_uvicorn.py ├── adapter_waitress │ ├── _application.py │ ├── conftest.py │ └── test_wsgi.py ├── agent_benchmarks │ ├── __init__.py │ ├── _agent_initialization.py │ └── bench_agent_apis.py ├── agent_features │ ├── _test_code_level_metrics.py │ ├── conftest.py │ ├── test_agent_control_health_check.py │ ├── test_apdex_metrics.py │ ├── test_asgi_browser.py │ ├── test_asgi_distributed_tracing.py │ ├── test_asgi_transaction.py │ ├── test_asgi_w3c_trace_context.py │ ├── test_async_context_propagation.py │ ├── test_async_generator_trace_wrapper.py │ ├── test_async_generator_transaction_proxy.py │ ├── test_async_timing.py │ ├── test_async_wrapper_detection.py │ ├── test_attribute.py │ ├── test_attributes_in_action.py │ ├── test_background_task.py │ ├── test_browser.py │ ├── test_browser_middleware.py │ ├── test_cat.py │ ├── test_code_level_metrics.py │ ├── test_collector_payloads.py │ ├── test_configuration.py │ ├── test_coroutine_trace.py │ ├── test_coroutine_transaction.py │ ├── test_custom_events.py │ ├── test_custom_metrics.py │ ├── test_datastore_trace.py │ ├── test_dead_transactions.py │ ├── test_dimensional_metrics.py │ ├── test_distributed_tracing.py │ ├── test_error_events.py │ ├── test_error_group_callback.py │ ├── test_event_loop_wait_time.py │ ├── test_exception_messages.py │ ├── test_function_trace.py │ ├── test_high_security_mode.py │ ├── test_ignore_expected_errors.py │ ├── test_llm_custom_attributes.py │ ├── test_llm_token_count_callback.py │ ├── test_log_events.py │ ├── test_logs_in_context.py │ ├── test_metric_normalization.py │ ├── test_ml_events.py │ ├── test_notice_error.py │ ├── test_priority_sampling.py │ ├── test_profile_trace.py │ ├── test_record_llm_feedback_event.py │ ├── test_serverless_mode.py │ ├── test_span_events.py │ ├── test_stack_trace.py │ ├── test_supportability_metrics.py │ ├── test_synthetics.py │ ├── test_time_trace.py │ ├── test_transaction_event_data_and_some_browser_stuff_too.py │ ├── test_transaction_name.py │ ├── test_transaction_trace_segments.py │ ├── test_w3c_trace_context.py │ ├── test_web_transaction.py │ └── test_wsgi_attributes.py ├── agent_streaming │ ├── _test_handler.py │ ├── conftest.py │ ├── test_infinite_tracing.py │ ├── test_span_events.py │ ├── test_stream_buffer.py │ └── test_streaming_rpc.py ├── agent_unittests │ ├── _test_import_hook.py │ ├── aws.json │ ├── cert.pem │ ├── conftest.py │ ├── pytest.ini │ ├── test_agent.py │ ├── test_agent_connect.py │ ├── test_agent_protocol.py │ ├── test_aws_utilization_caching.py │ ├── test_check_environment.py │ ├── test_connect_response_fields.py │ ├── test_distributed_tracing_settings.py │ ├── test_encoding_utils.py │ ├── test_environment.py │ ├── test_full_uri_payloads.py │ ├── test_harvest_loop.py │ ├── test_http_client.py │ ├── test_import_hook.py │ ├── test_infinite_trace_settings.py │ ├── test_package_version_utils.py │ ├── test_region_aware_settings.py │ ├── test_sampler_metrics.py │ ├── test_serverless_mode_settings.py │ ├── test_signature.py │ ├── test_trace_cache.py │ ├── test_utilization_settings.py │ └── test_wrappers.py ├── application_celery │ ├── _target_application.py │ ├── conftest.py │ ├── test_application.py │ ├── test_distributed_tracing.py │ ├── test_max_tasks_per_child.py │ ├── test_task_methods.py │ └── test_wrappers.py ├── application_gearman │ ├── conftest.py │ └── test_gearman.py ├── component_djangorestframework │ ├── conftest.py │ ├── settings.py │ ├── test_application.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── component_flask_rest │ ├── _test_application.py │ ├── conftest.py │ └── test_application.py ├── component_graphenedjango │ ├── _target_application.py │ ├── _target_schema_sync.py │ ├── conftest.py │ ├── dummy_app │ │ ├── __init__.py │ │ ├── apps.py │ │ └── models.py │ ├── settings.py │ ├── test_application.py │ ├── urls.py │ └── wsgi.py ├── component_graphqlserver │ ├── __init__.py │ ├── _target_schema_async.py │ ├── _test_graphql.py │ ├── conftest.py │ └── test_graphql.py ├── component_tastypie │ ├── api.py │ ├── conftest.py │ ├── settings.py │ ├── test_application.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── coroutines_asyncio │ ├── conftest.py │ └── test_context_propagation.py ├── cross_agent │ ├── conftest.py │ ├── fixtures │ │ ├── README.md │ │ ├── attribute_configuration.json │ │ ├── cat_map.json │ │ ├── collector_hostname.json │ │ ├── datastores │ │ │ ├── README.md │ │ │ └── datastore_instances.json │ │ ├── distributed_tracing │ │ │ ├── README.md │ │ │ ├── distributed_tracing.json │ │ │ └── trace_context.json │ │ ├── docker_container_id │ │ │ ├── README.md │ │ │ ├── cases.json │ │ │ ├── docker-0.9.1.txt │ │ │ ├── docker-1.0.0.txt │ │ │ ├── docker-1.1.2-lxc-driver.txt │ │ │ ├── docker-1.1.2-native-driver-fs.txt │ │ │ ├── docker-1.1.2-native-driver-systemd.txt │ │ │ ├── docker-1.3.txt │ │ │ ├── docker-custom-prefix.txt │ │ │ ├── docker-too-long.txt │ │ │ ├── empty.txt │ │ │ ├── heroku.txt │ │ │ ├── invalid-characters.txt │ │ │ ├── invalid-length.txt │ │ │ ├── ubuntu-14.04-lxc-container.txt │ │ │ ├── ubuntu-14.04-no-container.txt │ │ │ └── ubuntu-14.10-no-container.txt │ │ ├── docker_container_id_v2 │ │ │ ├── README.md │ │ │ ├── cases.json │ │ │ ├── docker-20.10.16.txt │ │ │ ├── docker-24.0.2.txt │ │ │ ├── docker-too-long.txt │ │ │ ├── empty.txt │ │ │ ├── invalid-characters.txt │ │ │ └── invalid-length.txt │ │ ├── ecs_container_id │ │ │ └── ecs_mock_server.py │ │ ├── labels.json │ │ ├── lambda_event_source.json │ │ ├── lambda_event_source │ │ │ ├── alexa_end_session.json │ │ │ ├── alexa_intent.json │ │ │ ├── alexa_intent_answer.json │ │ │ ├── alexa_start_session.json │ │ │ ├── api_gateway_auth.json │ │ │ ├── api_gateway_proxy.json │ │ │ ├── batch_get.json │ │ │ ├── batch_submit.json │ │ │ ├── cloudformation_create.json │ │ │ ├── cloudfront_ab.json │ │ │ ├── cloudfront_access_request_header.json │ │ │ ├── cloudfront_modify.json │ │ │ ├── cloudfront_multi_remote.json │ │ │ ├── cloudfront_redirect.json │ │ │ ├── cloudfront_response.json │ │ │ ├── cloudfront_simple_remote.json │ │ │ ├── cloudwatch_logs.json │ │ │ ├── codecommit.json │ │ │ ├── codepipeline.json │ │ │ ├── cognito_sync.json │ │ │ ├── config_change_oversized.json │ │ │ ├── config_change_triggered.json │ │ │ ├── config_periodic.json │ │ │ ├── dynamodb_update.json │ │ │ ├── firehose_stream_source.json │ │ │ ├── firehose_syslog.json │ │ │ ├── kinesis.json │ │ │ ├── kinesis_analytics.json │ │ │ ├── kinesis_firehose.json │ │ │ ├── kinesis_firehose_apache.json │ │ │ ├── kinesis_firehose_invoke.json │ │ │ ├── lex_appointment.json │ │ │ ├── lex_book_car.json │ │ │ ├── rekognition_s3.json │ │ │ ├── s3_delete.json │ │ │ ├── s3_put.json │ │ │ ├── scheduled_event.json │ │ │ ├── ses.json │ │ │ ├── smarthome_discovery.json │ │ │ ├── smarthome_turn_off.json │ │ │ ├── sns.json │ │ │ └── sqs.json │ │ ├── postgres_explain_obfuscation │ │ │ ├── README.md │ │ │ ├── basic_where.colon_obfuscated.txt │ │ │ ├── basic_where.explain.txt │ │ │ ├── basic_where.obfuscated.txt │ │ │ ├── basic_where.query.txt │ │ │ ├── current_date.colon_obfuscated.txt │ │ │ ├── current_date.explain.txt │ │ │ ├── current_date.obfuscated.txt │ │ │ ├── current_date.query.txt │ │ │ ├── date.colon_obfuscated.txt │ │ │ ├── date.explain.txt │ │ │ ├── date.obfuscated.txt │ │ │ ├── date.query.txt │ │ │ ├── embedded_newline.colon_obfuscated.txt │ │ │ ├── embedded_newline.explain.txt │ │ │ ├── embedded_newline.obfuscated.txt │ │ │ ├── embedded_newline.query.txt │ │ │ ├── embedded_quote.colon_obfuscated.txt │ │ │ ├── embedded_quote.explain.txt │ │ │ ├── embedded_quote.obfuscated.txt │ │ │ ├── embedded_quote.query.txt │ │ │ ├── floating_point.colon_obfuscated.txt │ │ │ ├── floating_point.explain.txt │ │ │ ├── floating_point.obfuscated.txt │ │ │ ├── floating_point.query.txt │ │ │ ├── function_with_strings.colon_obfuscated.txt │ │ │ ├── function_with_strings.explain.txt │ │ │ ├── function_with_strings.obfuscated.txt │ │ │ ├── function_with_strings.query.txt │ │ │ ├── quote_in_table_name.colon_obfuscated.txt │ │ │ ├── quote_in_table_name.explain.txt │ │ │ ├── quote_in_table_name.obfuscated.txt │ │ │ ├── quote_in_table_name.query.txt │ │ │ ├── subplan.colon_obfuscated.txt │ │ │ ├── subplan.explain.txt │ │ │ ├── subplan.obfuscated.txt │ │ │ ├── subplan.query.txt │ │ │ ├── where_with_integer.colon_obfuscated.txt │ │ │ ├── where_with_integer.explain.txt │ │ │ ├── where_with_integer.obfuscated.txt │ │ │ ├── where_with_integer.query.txt │ │ │ ├── where_with_regex_chars.colon_obfuscated.txt │ │ │ ├── where_with_regex_chars.explain.txt │ │ │ ├── where_with_regex_chars.obfuscated.txt │ │ │ ├── where_with_regex_chars.query.txt │ │ │ ├── where_with_substring.colon_obfuscated.txt │ │ │ ├── where_with_substring.explain.txt │ │ │ ├── where_with_substring.obfuscated.txt │ │ │ ├── where_with_substring.query.txt │ │ │ ├── with_escape_case1.colon_obfuscated.txt │ │ │ ├── with_escape_case1.explain.txt │ │ │ ├── with_escape_case1.obfuscated.txt │ │ │ ├── with_escape_case1.query.txt │ │ │ ├── with_escape_case2.colon_obfuscated.txt │ │ │ ├── with_escape_case2.explain.txt │ │ │ ├── with_escape_case2.obfuscated.txt │ │ │ ├── with_escape_case2.query.txt │ │ │ ├── with_escape_case3.colon_obfuscated.txt │ │ │ ├── with_escape_case3.explain.txt │ │ │ ├── with_escape_case3.obfuscated.txt │ │ │ ├── with_escape_case3.query.txt │ │ │ ├── with_escape_case4.colon_obfuscated.txt │ │ │ ├── with_escape_case4.explain.txt │ │ │ ├── with_escape_case4.obfuscated.txt │ │ │ ├── with_escape_case4.query.txt │ │ │ ├── with_escape_case5.colon_obfuscated.txt │ │ │ ├── with_escape_case5.explain.txt │ │ │ ├── with_escape_case5.obfuscated.txt │ │ │ ├── with_escape_case5.query.txt │ │ │ ├── with_escape_case6.colon_obfuscated.txt │ │ │ ├── with_escape_case6.explain.txt │ │ │ ├── with_escape_case6.obfuscated.txt │ │ │ ├── with_escape_case6.query.txt │ │ │ ├── with_escape_case7.colon_obfuscated.txt │ │ │ ├── with_escape_case7.explain.txt │ │ │ ├── with_escape_case7.obfuscated.txt │ │ │ ├── with_escape_case7.query.txt │ │ │ ├── with_escape_case8.colon_obfuscated.txt │ │ │ ├── with_escape_case8.explain.txt │ │ │ ├── with_escape_case8.obfuscated.txt │ │ │ ├── with_escape_case8.query.txt │ │ │ ├── with_escape_case9.colon_obfuscated.txt │ │ │ ├── with_escape_case9.explain.txt │ │ │ ├── with_escape_case9.obfuscated.txt │ │ │ └── with_escape_case9.query.txt │ │ ├── proc_cpuinfo │ │ │ ├── 1pack_1core_1logical.txt │ │ │ ├── 1pack_1core_2logical.txt │ │ │ ├── 1pack_2core_2logical.txt │ │ │ ├── 1pack_4core_4logical.txt │ │ │ ├── 2pack_12core_24logical.txt │ │ │ ├── 2pack_20core_40logical.txt │ │ │ ├── 2pack_2core_2logical.txt │ │ │ ├── 2pack_2core_4logical.txt │ │ │ ├── 2pack_4core_4logical.txt │ │ │ ├── 4pack_4core_4logical.txt │ │ │ ├── 8pack_8core_8logical.txt │ │ │ ├── README.md │ │ │ ├── Xpack_Xcore_2logical.txt │ │ │ └── malformed_file.txt │ │ ├── proc_meminfo │ │ │ ├── README.md │ │ │ ├── malformed_file.txt │ │ │ └── meminfo_4096MB.txt │ │ ├── rules.json │ │ ├── rum_cookie.json │ │ ├── rum_loader_insertion_location │ │ │ ├── basic.html │ │ │ ├── body_with_attributes.html │ │ │ ├── charset_tag.html │ │ │ ├── charset_tag_after_x_ua_tag.html │ │ │ ├── charset_tag_before_x_ua_tag.html │ │ │ ├── charset_tag_with_spaces.html │ │ │ ├── comments1.html │ │ │ ├── comments2.html │ │ │ ├── content_type_charset_tag.html │ │ │ ├── content_type_charset_tag_after_x_ua_tag.html │ │ │ ├── content_type_charset_tag_before_x_ua_tag.html │ │ │ ├── empty_head │ │ │ ├── gt_in_quotes1.html │ │ │ ├── gt_in_quotes2.html │ │ │ ├── gt_in_quotes_mismatch.html │ │ │ ├── gt_in_single_quotes1.html │ │ │ ├── gt_in_single_quotes_mismatch.html │ │ │ ├── head_with_attributes.html │ │ │ ├── incomplete_non_meta_tags.html │ │ │ ├── no_end_header.html │ │ │ ├── no_header.html │ │ │ ├── no_html_and_no_header.html │ │ │ ├── no_start_header.html │ │ │ ├── script1.html │ │ │ ├── script2.html │ │ │ ├── x_ua_meta_tag.html │ │ │ ├── x_ua_meta_tag_multiline.html │ │ │ ├── x_ua_meta_tag_multiple_tags.html │ │ │ ├── x_ua_meta_tag_spaces_around_equals.html │ │ │ ├── x_ua_meta_tag_with_others.html │ │ │ └── x_ua_meta_tag_with_spaces.html │ │ ├── sql_obfuscation │ │ │ ├── README.md │ │ │ ├── back_quoted_identifiers.mysql.obfuscated │ │ │ ├── back_quoted_identifiers.mysql.sql │ │ │ ├── comment_delimiters_in_strings.obfuscated │ │ │ ├── comment_delimiters_in_strings.sql │ │ │ ├── double_quoted_identifiers.postgres.obfuscated │ │ │ ├── double_quoted_identifiers.postgres.sql │ │ │ ├── end_of_line_comment_in_string.obfuscated │ │ │ ├── end_of_line_comment_in_string.sql │ │ │ ├── end_of_query_comment_cstyle.obfuscated │ │ │ ├── end_of_query_comment_cstyle.sql │ │ │ ├── end_of_query_comment_doubledash.obfuscated │ │ │ ├── end_of_query_comment_doubledash.sql │ │ │ ├── end_of_query_comment_hash.obfuscated │ │ │ ├── end_of_query_comment_hash.sql │ │ │ ├── escape_string_constants.postgres.obfuscated │ │ │ ├── escape_string_constants.postgres.sql │ │ │ ├── malformed │ │ │ │ ├── unterminated_double_quoted_string.mysql.sql │ │ │ │ └── unterminated_single_quoted_string.sql │ │ │ ├── multiple_literal_types.mysql.obfuscated │ │ │ ├── multiple_literal_types.mysql.sql │ │ │ ├── numbers_in_identifiers.obfuscated │ │ │ ├── numbers_in_identifiers.sql │ │ │ ├── numeric_literals.obfuscated │ │ │ ├── numeric_literals.sql │ │ │ ├── pathological │ │ │ │ ├── README.md │ │ │ │ ├── end_of_line_comments_with_quotes.obfuscated │ │ │ │ ├── end_of_line_comments_with_quotes.sql │ │ │ │ ├── mixed_comments_and_quotes.obfuscated │ │ │ │ ├── mixed_comments_and_quotes.sql │ │ │ │ ├── mixed_quotes_comments_and_newlines.obfuscated │ │ │ │ ├── mixed_quotes_comments_and_newlines.sql │ │ │ │ ├── mixed_quotes_end_of_line_comments.obfuscated │ │ │ │ ├── mixed_quotes_end_of_line_comments.sql │ │ │ │ ├── quote_delimiters_in_comments.obfuscated │ │ │ │ └── quote_delimiters_in_comments.sql │ │ │ ├── sql_obfuscation.json │ │ │ ├── string_double_quoted.mysql.obfuscated │ │ │ ├── string_double_quoted.mysql.sql │ │ │ ├── string_single_quoted.obfuscated │ │ │ ├── string_single_quoted.sql │ │ │ ├── string_with_backslash_and_twin_single_quotes.obfuscated │ │ │ ├── string_with_backslash_and_twin_single_quotes.sql │ │ │ ├── string_with_embedded_double_quote.obfuscated │ │ │ ├── string_with_embedded_double_quote.sql │ │ │ ├── string_with_embedded_newline.obfuscated │ │ │ ├── string_with_embedded_newline.sql │ │ │ ├── string_with_embedded_single_quote.mysql.obfuscated │ │ │ ├── string_with_embedded_single_quote.mysql.sql │ │ │ ├── string_with_escaped_quotes.mysql.obfuscated │ │ │ ├── string_with_escaped_quotes.mysql.sql │ │ │ ├── string_with_trailing_backslash.obfuscated │ │ │ ├── string_with_trailing_backslash.sql │ │ │ ├── string_with_trailing_escaped_backslash.mysql.obfuscated │ │ │ ├── string_with_trailing_escaped_backslash.mysql.sql │ │ │ ├── string_with_trailing_escaped_backslash_single_quoted.obfuscated │ │ │ ├── string_with_trailing_escaped_backslash_single_quoted.sql │ │ │ ├── string_with_trailing_escaped_quote.obfuscated │ │ │ ├── string_with_trailing_escaped_quote.sql │ │ │ ├── string_with_twin_single_quotes.obfuscated │ │ │ └── string_with_twin_single_quotes.sql │ │ ├── sql_parsing.json │ │ ├── transaction_segment_terms.json │ │ ├── url_clean.json │ │ ├── url_domain_extraction.json │ │ ├── utilization │ │ │ ├── README.md │ │ │ ├── boot_id.json │ │ │ └── utilization_json.json │ │ └── utilization_vendor_specific │ │ │ ├── README.md │ │ │ ├── aws.json │ │ │ ├── azure.json │ │ │ ├── gcp.json │ │ │ └── pcf.json │ ├── test_agent_attributes.py │ ├── test_aws_utilization_data.py │ ├── test_azure_utilization_data.py │ ├── test_boot_id_utilization_data.py │ ├── test_cat_map.py │ ├── test_collector_hostname.py │ ├── test_datastore_instance.py │ ├── test_distributed_tracing.py │ ├── test_docker_container_id.py │ ├── test_docker_container_id_v2.py │ ├── test_ecs_data.py │ ├── test_gcp_utilization_data.py │ ├── test_labels_and_rollups.py │ ├── test_pcf_utilization_data.py │ ├── test_rules.py │ ├── test_sql_obfuscation.py │ ├── test_system_info.py │ ├── test_transaction_segment_terms.py │ ├── test_utilization_configs.py │ └── test_w3c_trace_context.py ├── datastore_aiomcache │ ├── conftest.py │ └── test_aiomcache.py ├── datastore_aiomysql │ ├── conftest.py │ ├── test_database.py │ └── test_sqlalchemy.py ├── datastore_aioredis │ ├── conftest.py │ ├── test_custom_conn_pool.py │ ├── test_execute_command.py │ ├── test_get_and_set.py │ ├── test_instance_info.py │ ├── test_multiple_dbs.py │ ├── test_span_event.py │ ├── test_trace_node.py │ ├── test_transactions.py │ └── test_uninstrumented_methods.py ├── datastore_aredis │ ├── conftest.py │ ├── test_custom_conn_pool.py │ ├── test_execute_command.py │ ├── test_get_and_set.py │ ├── test_instance_info.py │ ├── test_multiple_dbs.py │ ├── test_span_event.py │ ├── test_trace_node.py │ └── test_uninstrumented_methods.py ├── datastore_asyncpg │ ├── conftest.py │ ├── test_multiple_dbs.py │ └── test_query.py ├── datastore_bmemcached │ ├── conftest.py │ └── test_memcache.py ├── datastore_cassandradriver │ ├── conftest.py │ ├── test_cassandra.py │ └── test_cqlengine.py ├── datastore_elasticsearch │ ├── conftest.py │ ├── test_async_connection.py │ ├── test_async_database_duration.py │ ├── test_async_elasticsearch.py │ ├── test_async_instrumented_methods.py │ ├── test_async_mget.py │ ├── test_async_multiple_dbs.py │ ├── test_async_trace_node.py │ ├── test_async_transport.py │ ├── test_connection.py │ ├── test_database_duration.py │ ├── test_elasticsearch.py │ ├── test_instrumented_methods.py │ ├── test_mget.py │ ├── test_multiple_dbs.py │ ├── test_trace_node.py │ └── test_transport.py ├── datastore_firestore │ ├── conftest.py │ ├── test_async_batching.py │ ├── test_async_client.py │ ├── test_async_collections.py │ ├── test_async_documents.py │ ├── test_async_query.py │ ├── test_async_transaction.py │ ├── test_batching.py │ ├── test_client.py │ ├── test_collections.py │ ├── test_documents.py │ ├── test_query.py │ └── test_transaction.py ├── datastore_memcache │ ├── conftest.py │ ├── test_all_methods_wrapped.py │ ├── test_memcache.py │ ├── test_multiple_dbs.py │ └── test_span_event.py ├── datastore_motor │ ├── conftest.py │ ├── test_collection.py │ └── test_uninstrumented_methods.py ├── datastore_mysql │ ├── conftest.py │ └── test_database.py ├── datastore_mysqldb │ ├── conftest.py │ ├── test_alias.py │ ├── test_cursor.py │ ├── test_instance_info.py │ ├── test_multiple_dbs.py │ ├── test_slow_sql.py │ └── test_trace_node.py ├── datastore_oracledb │ ├── conftest.py │ ├── test_async_connection.py │ ├── test_connection.py │ └── test_instance_info.py ├── datastore_postgresql │ ├── conftest.py │ └── test_database.py ├── datastore_psycopg │ ├── conftest.py │ ├── test_as_string.py │ ├── test_connection.py │ ├── test_cursor.py │ ├── test_database_instance_info.py │ ├── test_explain_plans.py │ ├── test_forward_compat.py │ ├── test_multiple_dbs.py │ ├── test_obfuscation.py │ ├── test_register.py │ ├── test_rollback.py │ ├── test_slow_sql.py │ ├── test_span_event.py │ └── test_trace_node.py ├── datastore_psycopg2 │ ├── conftest.py │ ├── test_as_string.py │ ├── test_async.py │ ├── test_cursor.py │ ├── test_database_instance_info.py │ ├── test_explain_plans.py │ ├── test_forward_compat.py │ ├── test_multiple_dbs.py │ ├── test_obfuscation.py │ ├── test_register.py │ ├── test_rollback.py │ ├── test_slow_sql.py │ ├── test_span_event.py │ ├── test_trace_node.py │ └── utils.py ├── datastore_psycopg2cffi │ ├── conftest.py │ ├── test_database.py │ └── test_explain_plans.py ├── datastore_pylibmc │ ├── conftest.py │ └── test_memcache.py ├── datastore_pymemcache │ ├── conftest.py │ └── test_memcache.py ├── datastore_pymongo │ ├── conftest.py │ ├── test_async_collection.py │ ├── test_collection.py │ └── test_uninstrumented_methods.py ├── datastore_pymssql │ ├── conftest.py │ └── test_database.py ├── datastore_pymysql │ ├── conftest.py │ ├── test_database.py │ └── test_instance_info.py ├── datastore_pyodbc │ ├── conftest.py │ └── test_pyodbc.py ├── datastore_pysolr │ ├── conftest.py │ └── test_solr.py ├── datastore_redis │ ├── conftest.py │ ├── test_asyncio.py │ ├── test_custom_conn_pool.py │ ├── test_execute_command.py │ ├── test_generators.py │ ├── test_get_and_set.py │ ├── test_instance_info.py │ ├── test_multiple_dbs.py │ ├── test_span_event.py │ ├── test_trace_node.py │ └── test_uninstrumented_methods.py ├── datastore_rediscluster │ ├── conftest.py │ └── test_uninstrumented_rediscluster_methods.py ├── datastore_solrpy │ ├── conftest.py │ └── test_solr.py ├── datastore_sqlite │ ├── conftest.py │ ├── test_database.py │ └── test_obfuscation.py ├── datastore_valkey │ ├── conftest.py │ ├── test_asyncio.py │ ├── test_custom_conn_pool.py │ ├── test_execute_command.py │ ├── test_generators.py │ ├── test_get_and_set.py │ ├── test_instance_info.py │ ├── test_multiple_dbs.py │ ├── test_span_event.py │ ├── test_trace_node.py │ └── test_uninstrumented_methods.py ├── external_aiobotocore │ ├── conftest.py │ ├── test_aiobotocore_dynamodb.py │ ├── test_aiobotocore_s3.py │ ├── test_aiobotocore_sns.py │ ├── test_aiobotocore_sqs.py │ ├── test_bedrock_chat_completion_converse.py │ ├── test_bedrock_chat_completion_invoke_model.py │ └── test_bedrock_embeddings.py ├── external_botocore │ ├── _mock_bedrock_encoding_utils.py │ ├── _mock_external_bedrock_server_converse.py │ ├── _mock_external_bedrock_server_invoke_model.py │ ├── _test_bedrock_chat_completion_converse.py │ ├── _test_bedrock_chat_completion_invoke_model.py │ ├── _test_bedrock_embeddings.py │ ├── _test_file.txt │ ├── conftest.py │ ├── test_bedrock_chat_completion_converse.py │ ├── test_bedrock_chat_completion_invoke_model.py │ ├── test_bedrock_chat_completion_via_langchain.py │ ├── test_bedrock_embeddings.py │ ├── test_boto3_firehose.py │ ├── test_boto3_iam.py │ ├── test_boto3_kinesis.py │ ├── test_boto3_lambda.py │ ├── test_boto3_s3.py │ ├── test_boto3_sns.py │ ├── test_botocore_dynamodb.py │ ├── test_botocore_ec2.py │ ├── test_botocore_s3.py │ ├── test_botocore_sqs.py │ └── test_s3transfer.py ├── external_feedparser │ ├── conftest.py │ ├── packages.xml │ └── test_feedparser.py ├── external_http │ ├── conftest.py │ └── test_http.py ├── external_httplib │ ├── conftest.py │ ├── test_httplib.py │ ├── test_urllib.py │ └── test_urllib2.py ├── external_httplib2 │ ├── conftest.py │ └── test_httplib2.py ├── external_httpx │ ├── conftest.py │ └── test_client.py ├── external_pyzeebe │ ├── _mocks.py │ ├── conftest.py │ ├── test.bpmn │ ├── test_client.py │ └── test_job_executor.py ├── external_requests │ ├── conftest.py │ ├── test_requests.py │ └── test_span_event.py ├── external_urllib3 │ ├── conftest.py │ └── test_urllib3.py ├── framework_aiohttp │ ├── _target_application.py │ ├── conftest.py │ ├── test_client.py │ ├── test_client_async_await.py │ ├── test_client_cat.py │ ├── test_externals.py │ ├── test_middleware.py │ ├── test_server.py │ ├── test_server_cat.py │ └── test_ws.py ├── framework_ariadne │ ├── __init__.py │ ├── _target_application.py │ ├── _target_schema_async.py │ ├── _target_schema_sync.py │ ├── conftest.py │ ├── schema.graphql │ └── test_application.py ├── framework_azurefunctions │ ├── __init__.py │ ├── conftest.py │ ├── sample_application │ │ ├── __init__.py │ │ ├── function_app.py │ │ ├── messages.py │ │ └── worker.py │ └── test_function_invocation.py ├── framework_bottle │ ├── _target_application.py │ ├── conftest.py │ └── test_application.py ├── framework_cherrypy │ ├── conftest.py │ ├── test_application.py │ ├── test_dispatch.py │ ├── test_resource.py │ └── test_routes.py ├── framework_django │ ├── _target_application.py │ ├── conftest.py │ ├── dummy_app │ │ ├── __init__.py │ │ └── templatetags │ │ │ ├── __init__.py │ │ │ └── custom_tags.py │ ├── middleware.py │ ├── settings.py │ ├── templates │ │ ├── main.html │ │ ├── render_exception.html │ │ └── results.html │ ├── test_application.py │ ├── test_asgi_application.py │ ├── test_config_file.py │ ├── test_middleware_setting_toggle.py │ ├── test_wildcard_filters.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── framework_falcon │ ├── _target_application.py │ ├── conftest.py │ └── test_application.py ├── framework_fastapi │ ├── _target_application.py │ ├── conftest.py │ └── test_application.py ├── framework_flask │ ├── _test_application.py │ ├── _test_application_async.py │ ├── _test_blueprints.py │ ├── _test_compress.py │ ├── _test_middleware.py │ ├── _test_not_found.py │ ├── _test_user_exceptions.py │ ├── _test_views.py │ ├── _test_views_async.py │ ├── conftest.py │ ├── test_application.py │ ├── test_blueprints.py │ ├── test_compress.py │ ├── test_middleware.py │ ├── test_not_found.py │ ├── test_user_exceptions.py │ └── test_views.py ├── framework_graphene │ ├── __init__.py │ ├── _target_application.py │ ├── _target_schema_async.py │ ├── _target_schema_sync.py │ ├── conftest.py │ └── test_application.py ├── framework_graphql │ ├── __init__.py │ ├── _target_application.py │ ├── _target_schema_async.py │ ├── _target_schema_sync.py │ ├── conftest.py │ ├── test_application.py │ └── test_application_async.py ├── framework_grpc │ ├── _test_common.py │ ├── conftest.py │ ├── sample_application │ │ ├── .gitignore │ │ ├── README.md │ │ ├── __init__.py │ │ └── sample_application.proto │ ├── test_clients.py │ ├── test_distributed_tracing.py │ ├── test_get_url.py │ └── test_server.py ├── framework_pyramid │ ├── _test_append_slash_app.py │ ├── _test_application.py │ ├── conftest.py │ ├── test_append_slash_app.py │ ├── test_application.py │ └── test_cornice.py ├── framework_sanic │ ├── _target_application.py │ ├── conftest.py │ ├── test_application.py │ └── test_cross_application.py ├── framework_starlette │ ├── _test_application.py │ ├── _test_bg_tasks.py │ ├── _test_graphql.py │ ├── conftest.py │ ├── test_application.py │ └── test_bg_tasks.py ├── framework_strawberry │ ├── __init__.py │ ├── _target_application.py │ ├── _target_schema_async.py │ ├── _target_schema_sync.py │ ├── conftest.py │ └── test_application.py ├── framework_tornado │ ├── _target_application.py │ ├── conftest.py │ ├── test_custom_handler.py │ ├── test_externals.py │ ├── test_inbound_cat.py │ └── test_server.py ├── logger_logging │ ├── conftest.py │ ├── test_attributes.py │ ├── test_local_decorating.py │ ├── test_log_forwarding.py │ ├── test_logging_handler.py │ ├── test_metrics.py │ └── test_settings.py ├── logger_loguru │ ├── conftest.py │ ├── test_attributes.py │ ├── test_local_decorating.py │ ├── test_log_forwarding.py │ ├── test_metrics.py │ └── test_settings.py ├── logger_structlog │ ├── conftest.py │ ├── test_attributes.py │ ├── test_local_decorating.py │ ├── test_log_forwarding.py │ ├── test_metrics.py │ └── test_processor_formatter.py ├── messagebroker_confluentkafka │ ├── conftest.py │ ├── test_consumer.py │ ├── test_producer.py │ └── test_serialization.py ├── messagebroker_kafkapython │ ├── conftest.py │ ├── test_consumer.py │ ├── test_heartbeat.py │ ├── test_producer.py │ └── test_serialization.py ├── messagebroker_kombu │ ├── conftest.py │ ├── test_consumer.py │ └── test_producer.py ├── messagebroker_pika │ ├── compat.py │ ├── conftest.py │ ├── test_cat.py │ ├── test_distributed_tracing.py │ ├── test_memory_leak.py │ ├── test_pika_async_connection_consume.py │ ├── test_pika_blocking_connection_consume.py │ ├── test_pika_blocking_connection_consume_generator.py │ ├── test_pika_instance_info.py │ ├── test_pika_produce.py │ └── test_pika_supportability.py ├── mlmodel_autogen │ ├── conftest.py │ ├── test_assistant_agent.py │ ├── test_mcp_tool_adapter.py │ └── test_teams.py ├── mlmodel_gemini │ ├── _mock_external_gemini_server.py │ ├── conftest.py │ ├── test_embeddings.py │ ├── test_embeddings_error.py │ ├── test_text_generation.py │ └── test_text_generation_error.py ├── mlmodel_langchain │ ├── _mock_external_openai_server.py │ ├── conftest.py │ ├── hello.pdf │ ├── new_vectorstore_adder.py │ ├── test_agent.py │ ├── test_chain.py │ ├── test_tool.py │ └── test_vectorstore.py ├── mlmodel_openai │ ├── _mock_external_openai_server.py │ ├── conftest.py │ ├── test_chat_completion.py │ ├── test_chat_completion_error.py │ ├── test_chat_completion_error_v1.py │ ├── test_chat_completion_stream.py │ ├── test_chat_completion_stream_error.py │ ├── test_chat_completion_stream_error_v1.py │ ├── test_chat_completion_stream_v1.py │ ├── test_chat_completion_v1.py │ ├── test_embeddings.py │ ├── test_embeddings_error.py │ ├── test_embeddings_error_v1.py │ ├── test_embeddings_stream_v1.py │ └── test_embeddings_v1.py ├── mlmodel_sklearn │ ├── conftest.py │ ├── test_calibration_models.py │ ├── test_cluster_models.py │ ├── test_compose_models.py │ ├── test_covariance_models.py │ ├── test_cross_decomposition_models.py │ ├── test_discriminant_analysis_models.py │ ├── test_dummy_models.py │ ├── test_ensemble_models.py │ ├── test_feature_selection_models.py │ ├── test_gaussian_process_models.py │ ├── test_inference_events.py │ ├── test_kernel_ridge_models.py │ ├── test_linear_models.py │ ├── test_metric_scorers.py │ ├── test_mixture_models.py │ ├── test_ml_model.py │ ├── test_model_selection_models.py │ ├── test_multiclass_models.py │ ├── test_multioutput_models.py │ ├── test_naive_bayes_models.py │ ├── test_neighbors_models.py │ ├── test_neural_network_models.py │ ├── test_pipeline_models.py │ ├── test_prediction_stats.py │ ├── test_semi_supervised_models.py │ ├── test_svm_models.py │ └── test_tree_models.py ├── template_genshi │ ├── conftest.py │ └── test_genshi.py ├── template_jinja2 │ ├── conftest.py │ └── test_jinja2.py ├── template_mako │ ├── conftest.py │ └── test_mako.py └── testing_support │ ├── __init__.py │ ├── asgi_testing.py │ ├── certs │ ├── __init__.py │ └── cert.pem │ ├── db_settings.py │ ├── external_fixtures.py │ ├── fixture │ ├── __init__.py │ └── event_loop.py │ ├── fixtures.py │ ├── http_23_testing.py │ ├── http_client_recorder.py │ ├── ml_testing_utils.py │ ├── mock_external_grpc_server.py │ ├── mock_external_http_server.py │ ├── mock_http_client.py │ ├── sample_applications.py │ ├── sample_asgi_applications.py │ ├── util.py │ └── validators │ ├── __init__.py │ ├── validate_apdex_metrics.py │ ├── validate_application_error_event_count.py │ ├── validate_application_error_trace_count.py │ ├── validate_application_errors.py │ ├── validate_browser_attributes.py │ ├── validate_code_level_metrics.py │ ├── validate_cross_process_headers.py │ ├── validate_custom_event.py │ ├── validate_custom_event_collector_json.py │ ├── validate_custom_events.py │ ├── validate_custom_metrics_outside_transaction.py │ ├── validate_custom_parameters.py │ ├── validate_database_duration.py │ ├── validate_database_node.py │ ├── validate_database_trace_inputs.py │ ├── validate_datastore_trace_inputs.py │ ├── validate_dimensional_metric_payload.py │ ├── validate_dimensional_metrics_outside_transaction.py │ ├── validate_distributed_trace_accepted.py │ ├── validate_distributed_tracing_header.py │ ├── validate_error_event_attributes.py │ ├── validate_error_event_attributes_outside_transaction.py │ ├── validate_error_event_collector_json.py │ ├── validate_error_trace_attributes.py │ ├── validate_error_trace_attributes_outside_transaction.py │ ├── validate_error_trace_collector_json.py │ ├── validate_external_node_params.py │ ├── validate_function_called.py │ ├── validate_function_not_called.py │ ├── validate_internal_metrics.py │ ├── validate_log_event_collector_json.py │ ├── validate_log_event_count.py │ ├── validate_log_event_count_outside_transaction.py │ ├── validate_log_events.py │ ├── validate_log_events_outside_transaction.py │ ├── validate_messagebroker_headers.py │ ├── validate_metric_payload.py │ ├── validate_ml_event_count.py │ ├── validate_ml_event_count_outside_transaction.py │ ├── validate_ml_event_payload.py │ ├── validate_ml_events.py │ ├── validate_ml_events_outside_transaction.py │ ├── validate_non_transaction_error_event.py │ ├── validate_outbound_headers.py │ ├── validate_serverless_data.py │ ├── validate_serverless_metadata.py │ ├── validate_serverless_payload.py │ ├── validate_slow_sql_collector_json.py │ ├── validate_span_events.py │ ├── validate_sql_obfuscation.py │ ├── validate_synthetics_event.py │ ├── validate_synthetics_transaction_trace.py │ ├── validate_time_metrics_outside_transaction.py │ ├── validate_transaction_count.py │ ├── validate_transaction_error_event_count.py │ ├── validate_transaction_error_trace_attributes.py │ ├── validate_transaction_errors.py │ ├── validate_transaction_event_attributes.py │ ├── validate_transaction_event_collector_json.py │ ├── validate_transaction_metrics.py │ ├── validate_transaction_slow_sql_count.py │ ├── validate_transaction_trace_attributes.py │ ├── validate_tt_collector_json.py │ ├── validate_tt_parameters.py │ └── validate_tt_segment_params.py └── tox.ini /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/.trivyignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @newrelic/python 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/ISSUE_TEMPLATE/troubleshooting.md -------------------------------------------------------------------------------- /.github/LICENSE_HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/LICENSE_HEADER -------------------------------------------------------------------------------- /.github/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/actionlint.yml -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/containers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/containers/Dockerfile -------------------------------------------------------------------------------- /.github/containers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/containers/Makefile -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/get-envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/scripts/get-envs.py -------------------------------------------------------------------------------- /.github/scripts/tox-summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/scripts/tox-summary.py -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/addlicense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/addlicense.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/build-ci-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/build-ci-image.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/THIRD_PARTY_NOTICES.md -------------------------------------------------------------------------------- /asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/asv.conf.json -------------------------------------------------------------------------------- /newrelic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/__init__.py -------------------------------------------------------------------------------- /newrelic/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/__init__.py -------------------------------------------------------------------------------- /newrelic/admin/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/__main__.py -------------------------------------------------------------------------------- /newrelic/admin/debug_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/debug_console.py -------------------------------------------------------------------------------- /newrelic/admin/generate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/generate_config.py -------------------------------------------------------------------------------- /newrelic/admin/license_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/license_key.py -------------------------------------------------------------------------------- /newrelic/admin/local_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/local_config.py -------------------------------------------------------------------------------- /newrelic/admin/network_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/network_config.py -------------------------------------------------------------------------------- /newrelic/admin/record_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/record_deploy.py -------------------------------------------------------------------------------- /newrelic/admin/run_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/run_program.py -------------------------------------------------------------------------------- /newrelic/admin/run_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/run_python.py -------------------------------------------------------------------------------- /newrelic/admin/server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/server_config.py -------------------------------------------------------------------------------- /newrelic/admin/validate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/admin/validate_config.py -------------------------------------------------------------------------------- /newrelic/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/agent.py -------------------------------------------------------------------------------- /newrelic/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/__init__.py -------------------------------------------------------------------------------- /newrelic/api/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/application.py -------------------------------------------------------------------------------- /newrelic/api/asgi_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/asgi_application.py -------------------------------------------------------------------------------- /newrelic/api/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/background_task.py -------------------------------------------------------------------------------- /newrelic/api/cat_header_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/cat_header_mixin.py -------------------------------------------------------------------------------- /newrelic/api/database_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/database_trace.py -------------------------------------------------------------------------------- /newrelic/api/datastore_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/datastore_trace.py -------------------------------------------------------------------------------- /newrelic/api/error_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/error_trace.py -------------------------------------------------------------------------------- /newrelic/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/exceptions.py -------------------------------------------------------------------------------- /newrelic/api/external_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/external_trace.py -------------------------------------------------------------------------------- /newrelic/api/function_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/function_profile.py -------------------------------------------------------------------------------- /newrelic/api/function_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/function_trace.py -------------------------------------------------------------------------------- /newrelic/api/generator_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/generator_trace.py -------------------------------------------------------------------------------- /newrelic/api/graphql_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/graphql_trace.py -------------------------------------------------------------------------------- /newrelic/api/html_insertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/html_insertion.py -------------------------------------------------------------------------------- /newrelic/api/import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/import_hook.py -------------------------------------------------------------------------------- /newrelic/api/llm_custom_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/llm_custom_attributes.py -------------------------------------------------------------------------------- /newrelic/api/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/log.py -------------------------------------------------------------------------------- /newrelic/api/memcache_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/memcache_trace.py -------------------------------------------------------------------------------- /newrelic/api/message_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/message_trace.py -------------------------------------------------------------------------------- /newrelic/api/message_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/message_transaction.py -------------------------------------------------------------------------------- /newrelic/api/ml_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/ml_model.py -------------------------------------------------------------------------------- /newrelic/api/object_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/object_wrapper.py -------------------------------------------------------------------------------- /newrelic/api/profile_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/profile_trace.py -------------------------------------------------------------------------------- /newrelic/api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/settings.py -------------------------------------------------------------------------------- /newrelic/api/solr_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/solr_trace.py -------------------------------------------------------------------------------- /newrelic/api/supportability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/supportability.py -------------------------------------------------------------------------------- /newrelic/api/time_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/time_trace.py -------------------------------------------------------------------------------- /newrelic/api/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/transaction.py -------------------------------------------------------------------------------- /newrelic/api/transaction_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/transaction_name.py -------------------------------------------------------------------------------- /newrelic/api/web_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/web_transaction.py -------------------------------------------------------------------------------- /newrelic/api/wsgi_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/api/wsgi_application.py -------------------------------------------------------------------------------- /newrelic/bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/bootstrap/__init__.py -------------------------------------------------------------------------------- /newrelic/bootstrap/sitecustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/bootstrap/sitecustomize.py -------------------------------------------------------------------------------- /newrelic/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/__init__.py -------------------------------------------------------------------------------- /newrelic/common/agent_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/agent_http.py -------------------------------------------------------------------------------- /newrelic/common/async_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/async_proxy.py -------------------------------------------------------------------------------- /newrelic/common/async_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/async_wrapper.py -------------------------------------------------------------------------------- /newrelic/common/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/cacert.pem -------------------------------------------------------------------------------- /newrelic/common/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/certs.py -------------------------------------------------------------------------------- /newrelic/common/coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/coroutine.py -------------------------------------------------------------------------------- /newrelic/common/encoding_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/encoding_utils.py -------------------------------------------------------------------------------- /newrelic/common/log_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/log_file.py -------------------------------------------------------------------------------- /newrelic/common/metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/metric_utils.py -------------------------------------------------------------------------------- /newrelic/common/object_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/object_names.py -------------------------------------------------------------------------------- /newrelic/common/object_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/object_wrapper.py -------------------------------------------------------------------------------- /newrelic/common/package_version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/package_version_utils.py -------------------------------------------------------------------------------- /newrelic/common/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/signature.py -------------------------------------------------------------------------------- /newrelic/common/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/stopwatch.py -------------------------------------------------------------------------------- /newrelic/common/streaming_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/streaming_utils.py -------------------------------------------------------------------------------- /newrelic/common/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/system_info.py -------------------------------------------------------------------------------- /newrelic/common/utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/common/utilization.py -------------------------------------------------------------------------------- /newrelic/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/config.py -------------------------------------------------------------------------------- /newrelic/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/console.py -------------------------------------------------------------------------------- /newrelic/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/__init__.py -------------------------------------------------------------------------------- /newrelic/core/_thread_utilization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/_thread_utilization.c -------------------------------------------------------------------------------- /newrelic/core/adaptive_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/adaptive_sampler.py -------------------------------------------------------------------------------- /newrelic/core/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/agent.py -------------------------------------------------------------------------------- /newrelic/core/agent_control_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/agent_control_health.py -------------------------------------------------------------------------------- /newrelic/core/agent_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/agent_protocol.py -------------------------------------------------------------------------------- /newrelic/core/agent_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/agent_streaming.py -------------------------------------------------------------------------------- /newrelic/core/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/application.py -------------------------------------------------------------------------------- /newrelic/core/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/attribute.py -------------------------------------------------------------------------------- /newrelic/core/attribute_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/attribute_filter.py -------------------------------------------------------------------------------- /newrelic/core/code_level_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/code_level_metrics.py -------------------------------------------------------------------------------- /newrelic/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/config.py -------------------------------------------------------------------------------- /newrelic/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/context.py -------------------------------------------------------------------------------- /newrelic/core/custom_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/custom_event.py -------------------------------------------------------------------------------- /newrelic/core/data_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/data_collector.py -------------------------------------------------------------------------------- /newrelic/core/database_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/database_node.py -------------------------------------------------------------------------------- /newrelic/core/database_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/database_utils.py -------------------------------------------------------------------------------- /newrelic/core/datastore_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/datastore_node.py -------------------------------------------------------------------------------- /newrelic/core/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/environment.py -------------------------------------------------------------------------------- /newrelic/core/error_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/error_collector.py -------------------------------------------------------------------------------- /newrelic/core/error_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/error_node.py -------------------------------------------------------------------------------- /newrelic/core/external_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/external_node.py -------------------------------------------------------------------------------- /newrelic/core/function_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/function_node.py -------------------------------------------------------------------------------- /newrelic/core/graphql_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/graphql_node.py -------------------------------------------------------------------------------- /newrelic/core/graphql_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/graphql_utils.py -------------------------------------------------------------------------------- /newrelic/core/infinite_tracing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/infinite_tracing.proto -------------------------------------------------------------------------------- /newrelic/core/infinite_tracing_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/infinite_tracing_pb2.py -------------------------------------------------------------------------------- /newrelic/core/infinite_tracing_v3_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/infinite_tracing_v3_pb2.py -------------------------------------------------------------------------------- /newrelic/core/infinite_tracing_v4_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/infinite_tracing_v4_pb2.py -------------------------------------------------------------------------------- /newrelic/core/infinite_tracing_v5_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/infinite_tracing_v5_pb2.py -------------------------------------------------------------------------------- /newrelic/core/infinite_tracing_v6_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/infinite_tracing_v6_pb2.py -------------------------------------------------------------------------------- /newrelic/core/internal_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/internal_metrics.py -------------------------------------------------------------------------------- /newrelic/core/log_event_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/log_event_node.py -------------------------------------------------------------------------------- /newrelic/core/loop_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/loop_node.py -------------------------------------------------------------------------------- /newrelic/core/memcache_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/memcache_node.py -------------------------------------------------------------------------------- /newrelic/core/message_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/message_node.py -------------------------------------------------------------------------------- /newrelic/core/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/metric.py -------------------------------------------------------------------------------- /newrelic/core/node_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/node_mixin.py -------------------------------------------------------------------------------- /newrelic/core/otlp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/otlp_utils.py -------------------------------------------------------------------------------- /newrelic/core/profile_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/profile_sessions.py -------------------------------------------------------------------------------- /newrelic/core/root_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/root_node.py -------------------------------------------------------------------------------- /newrelic/core/rules_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/rules_engine.py -------------------------------------------------------------------------------- /newrelic/core/solr_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/solr_node.py -------------------------------------------------------------------------------- /newrelic/core/stack_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/stack_trace.py -------------------------------------------------------------------------------- /newrelic/core/stats_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/stats_engine.py -------------------------------------------------------------------------------- /newrelic/core/string_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/string_table.py -------------------------------------------------------------------------------- /newrelic/core/thread_utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/thread_utilization.py -------------------------------------------------------------------------------- /newrelic/core/trace_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/trace_cache.py -------------------------------------------------------------------------------- /newrelic/core/trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/trace_node.py -------------------------------------------------------------------------------- /newrelic/core/transaction_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/core/transaction_node.py -------------------------------------------------------------------------------- /newrelic/extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/extras/__init__.py -------------------------------------------------------------------------------- /newrelic/extras/framework_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/extras/framework_django/__init__.py -------------------------------------------------------------------------------- /newrelic/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/__init__.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_asgiref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_asgiref.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_cheroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_cheroot.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_cherrypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_cherrypy.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_daphne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_daphne.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_flup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_flup.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_gevent.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_gunicorn.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_hypercorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_hypercorn.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_mcp.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_meinheld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_meinheld.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_paste.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_uvicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_uvicorn.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_waitress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_waitress.py -------------------------------------------------------------------------------- /newrelic/hooks/adapter_wsgiref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/adapter_wsgiref.py -------------------------------------------------------------------------------- /newrelic/hooks/application_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/application_celery.py -------------------------------------------------------------------------------- /newrelic/hooks/application_gearman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/application_gearman.py -------------------------------------------------------------------------------- /newrelic/hooks/component_cornice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_cornice.py -------------------------------------------------------------------------------- /newrelic/hooks/component_flask_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_flask_rest.py -------------------------------------------------------------------------------- /newrelic/hooks/component_graphenedjango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_graphenedjango.py -------------------------------------------------------------------------------- /newrelic/hooks/component_graphqlserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_graphqlserver.py -------------------------------------------------------------------------------- /newrelic/hooks/component_piston.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_piston.py -------------------------------------------------------------------------------- /newrelic/hooks/component_sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_sentry.py -------------------------------------------------------------------------------- /newrelic/hooks/component_tastypie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/component_tastypie.py -------------------------------------------------------------------------------- /newrelic/hooks/coroutines_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/coroutines_asyncio.py -------------------------------------------------------------------------------- /newrelic/hooks/coroutines_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/coroutines_gevent.py -------------------------------------------------------------------------------- /newrelic/hooks/database_aiomysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_aiomysql.py -------------------------------------------------------------------------------- /newrelic/hooks/database_asyncpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_asyncpg.py -------------------------------------------------------------------------------- /newrelic/hooks/database_cx_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_cx_oracle.py -------------------------------------------------------------------------------- /newrelic/hooks/database_dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_dbapi2.py -------------------------------------------------------------------------------- /newrelic/hooks/database_dbapi2_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_dbapi2_async.py -------------------------------------------------------------------------------- /newrelic/hooks/database_ibm_db_dbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_ibm_db_dbi.py -------------------------------------------------------------------------------- /newrelic/hooks/database_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_mysql.py -------------------------------------------------------------------------------- /newrelic/hooks/database_mysqldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_mysqldb.py -------------------------------------------------------------------------------- /newrelic/hooks/database_oracledb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_oracledb.py -------------------------------------------------------------------------------- /newrelic/hooks/database_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_postgresql.py -------------------------------------------------------------------------------- /newrelic/hooks/database_psycopg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_psycopg.py -------------------------------------------------------------------------------- /newrelic/hooks/database_psycopg2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_psycopg2.py -------------------------------------------------------------------------------- /newrelic/hooks/database_psycopg2cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_psycopg2cffi.py -------------------------------------------------------------------------------- /newrelic/hooks/database_psycopg2ct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_psycopg2ct.py -------------------------------------------------------------------------------- /newrelic/hooks/database_pymssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_pymssql.py -------------------------------------------------------------------------------- /newrelic/hooks/database_pymysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_pymysql.py -------------------------------------------------------------------------------- /newrelic/hooks/database_pyodbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_pyodbc.py -------------------------------------------------------------------------------- /newrelic/hooks/database_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/database_sqlite.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_aiomcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_aiomcache.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_aioredis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_aioredis.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_aredis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_aredis.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_bmemcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_bmemcached.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_cassandradriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_cassandradriver.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_elasticsearch.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_firestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_firestore.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_memcache.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_motor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_motor.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_pyelasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_pyelasticsearch.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_pylibmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_pylibmc.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_pymemcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_pymemcache.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_pymongo.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_pysolr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_pysolr.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_redis.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_solrpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_solrpy.py -------------------------------------------------------------------------------- /newrelic/hooks/datastore_valkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/datastore_valkey.py -------------------------------------------------------------------------------- /newrelic/hooks/external_aiobotocore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_aiobotocore.py -------------------------------------------------------------------------------- /newrelic/hooks/external_botocore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_botocore.py -------------------------------------------------------------------------------- /newrelic/hooks/external_dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_dropbox.py -------------------------------------------------------------------------------- /newrelic/hooks/external_facepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_facepy.py -------------------------------------------------------------------------------- /newrelic/hooks/external_feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_feedparser.py -------------------------------------------------------------------------------- /newrelic/hooks/external_httplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_httplib.py -------------------------------------------------------------------------------- /newrelic/hooks/external_httplib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_httplib2.py -------------------------------------------------------------------------------- /newrelic/hooks/external_httpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_httpx.py -------------------------------------------------------------------------------- /newrelic/hooks/external_pyzeebe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_pyzeebe.py -------------------------------------------------------------------------------- /newrelic/hooks/external_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_requests.py -------------------------------------------------------------------------------- /newrelic/hooks/external_s3transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_s3transfer.py -------------------------------------------------------------------------------- /newrelic/hooks/external_thrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_thrift.py -------------------------------------------------------------------------------- /newrelic/hooks/external_urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_urllib.py -------------------------------------------------------------------------------- /newrelic/hooks/external_urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_urllib3.py -------------------------------------------------------------------------------- /newrelic/hooks/external_xmlrpclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/external_xmlrpclib.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_aiohttp.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_ariadne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_ariadne.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_azurefunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_azurefunctions.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_bottle.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_cherrypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_cherrypy.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_django.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_falcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_falcon.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_fastapi.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_flask.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_graphene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_graphene.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_graphql.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_graphql_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_graphql_py3.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_grpc.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_pyramid.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_sanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_sanic.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_starlette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_starlette.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_strawberry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_strawberry.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_tornado.py -------------------------------------------------------------------------------- /newrelic/hooks/framework_webpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/framework_webpy.py -------------------------------------------------------------------------------- /newrelic/hooks/logger_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/logger_logging.py -------------------------------------------------------------------------------- /newrelic/hooks/logger_loguru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/logger_loguru.py -------------------------------------------------------------------------------- /newrelic/hooks/logger_structlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/logger_structlog.py -------------------------------------------------------------------------------- /newrelic/hooks/memcache_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/memcache_memcache.py -------------------------------------------------------------------------------- /newrelic/hooks/messagebroker_confluentkafka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/messagebroker_confluentkafka.py -------------------------------------------------------------------------------- /newrelic/hooks/messagebroker_kafkapython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/messagebroker_kafkapython.py -------------------------------------------------------------------------------- /newrelic/hooks/messagebroker_kombu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/messagebroker_kombu.py -------------------------------------------------------------------------------- /newrelic/hooks/messagebroker_pika.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/messagebroker_pika.py -------------------------------------------------------------------------------- /newrelic/hooks/middleware_flask_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/middleware_flask_compress.py -------------------------------------------------------------------------------- /newrelic/hooks/mlmodel_autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/mlmodel_autogen.py -------------------------------------------------------------------------------- /newrelic/hooks/mlmodel_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/mlmodel_gemini.py -------------------------------------------------------------------------------- /newrelic/hooks/mlmodel_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/mlmodel_langchain.py -------------------------------------------------------------------------------- /newrelic/hooks/mlmodel_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/mlmodel_openai.py -------------------------------------------------------------------------------- /newrelic/hooks/mlmodel_sklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/mlmodel_sklearn.py -------------------------------------------------------------------------------- /newrelic/hooks/template_genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/template_genshi.py -------------------------------------------------------------------------------- /newrelic/hooks/template_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/template_jinja2.py -------------------------------------------------------------------------------- /newrelic/hooks/template_mako.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/hooks/template_mako.py -------------------------------------------------------------------------------- /newrelic/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/network/__init__.py -------------------------------------------------------------------------------- /newrelic/network/addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/network/addresses.py -------------------------------------------------------------------------------- /newrelic/network/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/network/exceptions.py -------------------------------------------------------------------------------- /newrelic/newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/newrelic.ini -------------------------------------------------------------------------------- /newrelic/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/asgiref_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/asgiref_compatibility.py -------------------------------------------------------------------------------- /newrelic/packages/isort/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/LICENSE -------------------------------------------------------------------------------- /newrelic/packages/isort/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/__init__.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/all.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py2.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py27.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py3.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py310.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py311.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py36.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py37.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py38.py -------------------------------------------------------------------------------- /newrelic/packages/isort/stdlibs/py39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/isort/stdlibs/py39.py -------------------------------------------------------------------------------- /newrelic/packages/opentelemetry_proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/requirements.txt -------------------------------------------------------------------------------- /newrelic/packages/urllib3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/LICENSE.txt -------------------------------------------------------------------------------- /newrelic/packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/__init__.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/_collections.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.19" 3 | -------------------------------------------------------------------------------- /newrelic/packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/connection.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/fields.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/filepost.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrelic/packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/request.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/response.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/request.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/response.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/url.py -------------------------------------------------------------------------------- /newrelic/packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/LICENSE -------------------------------------------------------------------------------- /newrelic/packages/wrapt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/__init__.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/__wrapt__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/__wrapt__.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/_wrappers.c -------------------------------------------------------------------------------- /newrelic/packages/wrapt/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/arguments.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/decorators.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/importer.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/patches.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/weakrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/weakrefs.py -------------------------------------------------------------------------------- /newrelic/packages/wrapt/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/packages/wrapt/wrappers.py -------------------------------------------------------------------------------- /newrelic/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/samplers/__init__.py -------------------------------------------------------------------------------- /newrelic/samplers/cpu_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/samplers/cpu_usage.py -------------------------------------------------------------------------------- /newrelic/samplers/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/samplers/data_sampler.py -------------------------------------------------------------------------------- /newrelic/samplers/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/samplers/decorators.py -------------------------------------------------------------------------------- /newrelic/samplers/gc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/samplers/gc_data.py -------------------------------------------------------------------------------- /newrelic/samplers/memory_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/newrelic/samplers/memory_usage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/azure-prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/scripts/azure-prebuild.sh -------------------------------------------------------------------------------- /scripts/newrelic-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/scripts/newrelic-admin -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/setup.py -------------------------------------------------------------------------------- /tests/adapter_asgiref/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_asgiref/conftest.py -------------------------------------------------------------------------------- /tests/adapter_cheroot/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_cheroot/conftest.py -------------------------------------------------------------------------------- /tests/adapter_cheroot/test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_cheroot/test_wsgi.py -------------------------------------------------------------------------------- /tests/adapter_daphne/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_daphne/conftest.py -------------------------------------------------------------------------------- /tests/adapter_daphne/test_daphne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_daphne/test_daphne.py -------------------------------------------------------------------------------- /tests/adapter_gevent/_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gevent/_application.py -------------------------------------------------------------------------------- /tests/adapter_gevent/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gevent/conftest.py -------------------------------------------------------------------------------- /tests/adapter_gevent/test_patching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gevent/test_patching.py -------------------------------------------------------------------------------- /tests/adapter_gevent/test_pywsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gevent/test_pywsgi.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/app.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/asgi_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/asgi_app.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/async_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/async_app.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/config.ini -------------------------------------------------------------------------------- /tests/adapter_gunicorn/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/conftest.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/test_asgi_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/test_asgi_app.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/test_gaiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/test_gaiohttp.py -------------------------------------------------------------------------------- /tests/adapter_gunicorn/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_gunicorn/worker.py -------------------------------------------------------------------------------- /tests/adapter_hypercorn/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_hypercorn/conftest.py -------------------------------------------------------------------------------- /tests/adapter_hypercorn/test_hypercorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_hypercorn/test_hypercorn.py -------------------------------------------------------------------------------- /tests/adapter_mcp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_mcp/conftest.py -------------------------------------------------------------------------------- /tests/adapter_mcp/test_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_mcp/test_mcp.py -------------------------------------------------------------------------------- /tests/adapter_uvicorn/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_uvicorn/conftest.py -------------------------------------------------------------------------------- /tests/adapter_uvicorn/test_uvicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_uvicorn/test_uvicorn.py -------------------------------------------------------------------------------- /tests/adapter_waitress/_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_waitress/_application.py -------------------------------------------------------------------------------- /tests/adapter_waitress/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_waitress/conftest.py -------------------------------------------------------------------------------- /tests/adapter_waitress/test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/adapter_waitress/test_wsgi.py -------------------------------------------------------------------------------- /tests/agent_benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_benchmarks/__init__.py -------------------------------------------------------------------------------- /tests/agent_benchmarks/bench_agent_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_benchmarks/bench_agent_apis.py -------------------------------------------------------------------------------- /tests/agent_features/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/conftest.py -------------------------------------------------------------------------------- /tests/agent_features/test_apdex_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_apdex_metrics.py -------------------------------------------------------------------------------- /tests/agent_features/test_asgi_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_asgi_browser.py -------------------------------------------------------------------------------- /tests/agent_features/test_asgi_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_asgi_transaction.py -------------------------------------------------------------------------------- /tests/agent_features/test_async_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_async_timing.py -------------------------------------------------------------------------------- /tests/agent_features/test_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_attribute.py -------------------------------------------------------------------------------- /tests/agent_features/test_background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_background_task.py -------------------------------------------------------------------------------- /tests/agent_features/test_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_browser.py -------------------------------------------------------------------------------- /tests/agent_features/test_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_cat.py -------------------------------------------------------------------------------- /tests/agent_features/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_configuration.py -------------------------------------------------------------------------------- /tests/agent_features/test_coroutine_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_coroutine_trace.py -------------------------------------------------------------------------------- /tests/agent_features/test_custom_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_custom_events.py -------------------------------------------------------------------------------- /tests/agent_features/test_custom_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_custom_metrics.py -------------------------------------------------------------------------------- /tests/agent_features/test_datastore_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_datastore_trace.py -------------------------------------------------------------------------------- /tests/agent_features/test_dead_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_dead_transactions.py -------------------------------------------------------------------------------- /tests/agent_features/test_error_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_error_events.py -------------------------------------------------------------------------------- /tests/agent_features/test_function_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_function_trace.py -------------------------------------------------------------------------------- /tests/agent_features/test_log_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_log_events.py -------------------------------------------------------------------------------- /tests/agent_features/test_logs_in_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_logs_in_context.py -------------------------------------------------------------------------------- /tests/agent_features/test_ml_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_ml_events.py -------------------------------------------------------------------------------- /tests/agent_features/test_notice_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_notice_error.py -------------------------------------------------------------------------------- /tests/agent_features/test_priority_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_priority_sampling.py -------------------------------------------------------------------------------- /tests/agent_features/test_profile_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_profile_trace.py -------------------------------------------------------------------------------- /tests/agent_features/test_serverless_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_serverless_mode.py -------------------------------------------------------------------------------- /tests/agent_features/test_span_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_span_events.py -------------------------------------------------------------------------------- /tests/agent_features/test_stack_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_stack_trace.py -------------------------------------------------------------------------------- /tests/agent_features/test_synthetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_synthetics.py -------------------------------------------------------------------------------- /tests/agent_features/test_time_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_time_trace.py -------------------------------------------------------------------------------- /tests/agent_features/test_transaction_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_transaction_name.py -------------------------------------------------------------------------------- /tests/agent_features/test_w3c_trace_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_w3c_trace_context.py -------------------------------------------------------------------------------- /tests/agent_features/test_web_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_web_transaction.py -------------------------------------------------------------------------------- /tests/agent_features/test_wsgi_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_features/test_wsgi_attributes.py -------------------------------------------------------------------------------- /tests/agent_streaming/_test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_streaming/_test_handler.py -------------------------------------------------------------------------------- /tests/agent_streaming/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_streaming/conftest.py -------------------------------------------------------------------------------- /tests/agent_streaming/test_infinite_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_streaming/test_infinite_tracing.py -------------------------------------------------------------------------------- /tests/agent_streaming/test_span_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_streaming/test_span_events.py -------------------------------------------------------------------------------- /tests/agent_streaming/test_stream_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_streaming/test_stream_buffer.py -------------------------------------------------------------------------------- /tests/agent_streaming/test_streaming_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_streaming/test_streaming_rpc.py -------------------------------------------------------------------------------- /tests/agent_unittests/_test_import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/_test_import_hook.py -------------------------------------------------------------------------------- /tests/agent_unittests/aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/aws.json -------------------------------------------------------------------------------- /tests/agent_unittests/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/cert.pem -------------------------------------------------------------------------------- /tests/agent_unittests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/conftest.py -------------------------------------------------------------------------------- /tests/agent_unittests/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | -------------------------------------------------------------------------------- /tests/agent_unittests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_agent.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_agent_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_agent_connect.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_agent_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_agent_protocol.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_encoding_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_encoding_utils.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_environment.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_harvest_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_harvest_loop.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_http_client.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_import_hook.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_sampler_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_sampler_metrics.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_signature.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_trace_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_trace_cache.py -------------------------------------------------------------------------------- /tests/agent_unittests/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/agent_unittests/test_wrappers.py -------------------------------------------------------------------------------- /tests/application_celery/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/application_celery/conftest.py -------------------------------------------------------------------------------- /tests/application_celery/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/application_celery/test_application.py -------------------------------------------------------------------------------- /tests/application_celery/test_task_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/application_celery/test_task_methods.py -------------------------------------------------------------------------------- /tests/application_celery/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/application_celery/test_wrappers.py -------------------------------------------------------------------------------- /tests/application_gearman/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/application_gearman/conftest.py -------------------------------------------------------------------------------- /tests/application_gearman/test_gearman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/application_gearman/test_gearman.py -------------------------------------------------------------------------------- /tests/component_djangorestframework/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_djangorestframework/urls.py -------------------------------------------------------------------------------- /tests/component_djangorestframework/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_djangorestframework/views.py -------------------------------------------------------------------------------- /tests/component_djangorestframework/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_djangorestframework/wsgi.py -------------------------------------------------------------------------------- /tests/component_flask_rest/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_flask_rest/conftest.py -------------------------------------------------------------------------------- /tests/component_flask_rest/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_flask_rest/test_application.py -------------------------------------------------------------------------------- /tests/component_graphenedjango/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphenedjango/conftest.py -------------------------------------------------------------------------------- /tests/component_graphenedjango/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphenedjango/settings.py -------------------------------------------------------------------------------- /tests/component_graphenedjango/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphenedjango/urls.py -------------------------------------------------------------------------------- /tests/component_graphenedjango/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphenedjango/wsgi.py -------------------------------------------------------------------------------- /tests/component_graphqlserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphqlserver/__init__.py -------------------------------------------------------------------------------- /tests/component_graphqlserver/_test_graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphqlserver/_test_graphql.py -------------------------------------------------------------------------------- /tests/component_graphqlserver/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphqlserver/conftest.py -------------------------------------------------------------------------------- /tests/component_graphqlserver/test_graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_graphqlserver/test_graphql.py -------------------------------------------------------------------------------- /tests/component_tastypie/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/api.py -------------------------------------------------------------------------------- /tests/component_tastypie/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/conftest.py -------------------------------------------------------------------------------- /tests/component_tastypie/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/settings.py -------------------------------------------------------------------------------- /tests/component_tastypie/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/test_application.py -------------------------------------------------------------------------------- /tests/component_tastypie/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/urls.py -------------------------------------------------------------------------------- /tests/component_tastypie/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/views.py -------------------------------------------------------------------------------- /tests/component_tastypie/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/component_tastypie/wsgi.py -------------------------------------------------------------------------------- /tests/coroutines_asyncio/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/coroutines_asyncio/conftest.py -------------------------------------------------------------------------------- /tests/cross_agent/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/conftest.py -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/README.md -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/cat_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/cat_map.json -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/docker_container_id/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/docker_container_id_v2/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/labels.json -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/lambda_event_source/batch_get.json: -------------------------------------------------------------------------------- 1 | { 2 | "jobId": "38fd08ce-5f5e-434c-8997-6bba5e3f5a74" 3 | } -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/postgres_explain_obfuscation/embedded_newline.query.txt: -------------------------------------------------------------------------------- 1 | select * from blogs where title = E'\x08\x0c\n\r\t' 2 | -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/rules.json -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/rum_cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/rum_cookie.json -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/comment_delimiters_in_strings.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM t WHERE foo=? AND baz=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/end_of_line_comment_in_string.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM t WHERE foo=? AND 2 | baz=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/end_of_query_comment_cstyle.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM foo WHERE bar=? ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/end_of_query_comment_doubledash.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM foobar WHERE password=? 2 | ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/end_of_query_comment_hash.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT foo, bar FROM baz WHERE password=? ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/pathological/end_of_line_comments_with_quotes.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM t WHERE ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/pathological/mixed_comments_and_quotes.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM t WHERE ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/pathological/mixed_quotes_comments_and_newlines.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM t WHERE ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/pathological/mixed_quotes_end_of_line_comments.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM t WHERE ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/pathological/quote_delimiters_in_comments.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM foo WHERE col=? AND ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_double_quoted.mysql.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE name=? AND value=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_single_quoted.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE name=? AND value = ? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_with_backslash_and_twin_single_quotes.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE col=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_with_trailing_backslash.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE name=? AND color=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_with_trailing_escaped_backslash.mysql.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE foo=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_with_trailing_escaped_backslash_single_quoted.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE foo=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_obfuscation/string_with_trailing_escaped_quote.obfuscated: -------------------------------------------------------------------------------- 1 | SELECT * FROM table WHERE name=? AND color=? -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/sql_parsing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/sql_parsing.json -------------------------------------------------------------------------------- /tests/cross_agent/fixtures/url_clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/fixtures/url_clean.json -------------------------------------------------------------------------------- /tests/cross_agent/test_agent_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_agent_attributes.py -------------------------------------------------------------------------------- /tests/cross_agent/test_aws_utilization_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_aws_utilization_data.py -------------------------------------------------------------------------------- /tests/cross_agent/test_cat_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_cat_map.py -------------------------------------------------------------------------------- /tests/cross_agent/test_collector_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_collector_hostname.py -------------------------------------------------------------------------------- /tests/cross_agent/test_datastore_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_datastore_instance.py -------------------------------------------------------------------------------- /tests/cross_agent/test_distributed_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_distributed_tracing.py -------------------------------------------------------------------------------- /tests/cross_agent/test_docker_container_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_docker_container_id.py -------------------------------------------------------------------------------- /tests/cross_agent/test_ecs_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_ecs_data.py -------------------------------------------------------------------------------- /tests/cross_agent/test_gcp_utilization_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_gcp_utilization_data.py -------------------------------------------------------------------------------- /tests/cross_agent/test_labels_and_rollups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_labels_and_rollups.py -------------------------------------------------------------------------------- /tests/cross_agent/test_pcf_utilization_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_pcf_utilization_data.py -------------------------------------------------------------------------------- /tests/cross_agent/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_rules.py -------------------------------------------------------------------------------- /tests/cross_agent/test_sql_obfuscation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_sql_obfuscation.py -------------------------------------------------------------------------------- /tests/cross_agent/test_system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_system_info.py -------------------------------------------------------------------------------- /tests/cross_agent/test_utilization_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_utilization_configs.py -------------------------------------------------------------------------------- /tests/cross_agent/test_w3c_trace_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/cross_agent/test_w3c_trace_context.py -------------------------------------------------------------------------------- /tests/datastore_aiomcache/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aiomcache/conftest.py -------------------------------------------------------------------------------- /tests/datastore_aiomcache/test_aiomcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aiomcache/test_aiomcache.py -------------------------------------------------------------------------------- /tests/datastore_aiomysql/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aiomysql/conftest.py -------------------------------------------------------------------------------- /tests/datastore_aiomysql/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aiomysql/test_database.py -------------------------------------------------------------------------------- /tests/datastore_aiomysql/test_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aiomysql/test_sqlalchemy.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/conftest.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/test_get_and_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/test_get_and_set.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/test_trace_node.py -------------------------------------------------------------------------------- /tests/datastore_aioredis/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aioredis/test_transactions.py -------------------------------------------------------------------------------- /tests/datastore_aredis/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/conftest.py -------------------------------------------------------------------------------- /tests/datastore_aredis/test_execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/test_execute_command.py -------------------------------------------------------------------------------- /tests/datastore_aredis/test_get_and_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/test_get_and_set.py -------------------------------------------------------------------------------- /tests/datastore_aredis/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_aredis/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_aredis/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_aredis/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_aredis/test_trace_node.py -------------------------------------------------------------------------------- /tests/datastore_asyncpg/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_asyncpg/conftest.py -------------------------------------------------------------------------------- /tests/datastore_asyncpg/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_asyncpg/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_asyncpg/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_asyncpg/test_query.py -------------------------------------------------------------------------------- /tests/datastore_bmemcached/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_bmemcached/conftest.py -------------------------------------------------------------------------------- /tests/datastore_bmemcached/test_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_bmemcached/test_memcache.py -------------------------------------------------------------------------------- /tests/datastore_cassandradriver/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_cassandradriver/conftest.py -------------------------------------------------------------------------------- /tests/datastore_elasticsearch/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_elasticsearch/conftest.py -------------------------------------------------------------------------------- /tests/datastore_elasticsearch/test_mget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_elasticsearch/test_mget.py -------------------------------------------------------------------------------- /tests/datastore_firestore/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/conftest.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_async_client.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_async_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_async_query.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_batching.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_client.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_collections.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_documents.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_query.py -------------------------------------------------------------------------------- /tests/datastore_firestore/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_firestore/test_transaction.py -------------------------------------------------------------------------------- /tests/datastore_memcache/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_memcache/conftest.py -------------------------------------------------------------------------------- /tests/datastore_memcache/test_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_memcache/test_memcache.py -------------------------------------------------------------------------------- /tests/datastore_memcache/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_memcache/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_memcache/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_memcache/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_motor/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_motor/conftest.py -------------------------------------------------------------------------------- /tests/datastore_motor/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_motor/test_collection.py -------------------------------------------------------------------------------- /tests/datastore_mysql/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysql/conftest.py -------------------------------------------------------------------------------- /tests/datastore_mysql/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysql/test_database.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/conftest.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/test_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/test_alias.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/test_cursor.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/test_slow_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/test_slow_sql.py -------------------------------------------------------------------------------- /tests/datastore_mysqldb/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_mysqldb/test_trace_node.py -------------------------------------------------------------------------------- /tests/datastore_oracledb/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_oracledb/conftest.py -------------------------------------------------------------------------------- /tests/datastore_oracledb/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_oracledb/test_connection.py -------------------------------------------------------------------------------- /tests/datastore_oracledb/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_oracledb/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_postgresql/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_postgresql/conftest.py -------------------------------------------------------------------------------- /tests/datastore_postgresql/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_postgresql/test_database.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/conftest.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_as_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_as_string.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_connection.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_cursor.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_explain_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_explain_plans.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_forward_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_forward_compat.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_obfuscation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_obfuscation.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_register.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_rollback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_rollback.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_slow_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_slow_sql.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_psycopg/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg/test_trace_node.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/conftest.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_as_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_as_string.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_async.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_cursor.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_explain_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_explain_plans.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_obfuscation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_obfuscation.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_register.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_rollback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_rollback.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_slow_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_slow_sql.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/test_trace_node.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2/utils.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2cffi/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2cffi/conftest.py -------------------------------------------------------------------------------- /tests/datastore_psycopg2cffi/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_psycopg2cffi/test_database.py -------------------------------------------------------------------------------- /tests/datastore_pylibmc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pylibmc/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pylibmc/test_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pylibmc/test_memcache.py -------------------------------------------------------------------------------- /tests/datastore_pymemcache/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymemcache/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pymemcache/test_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymemcache/test_memcache.py -------------------------------------------------------------------------------- /tests/datastore_pymongo/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymongo/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pymongo/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymongo/test_collection.py -------------------------------------------------------------------------------- /tests/datastore_pymssql/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymssql/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pymssql/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymssql/test_database.py -------------------------------------------------------------------------------- /tests/datastore_pymysql/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymysql/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pymysql/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymysql/test_database.py -------------------------------------------------------------------------------- /tests/datastore_pymysql/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pymysql/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_pyodbc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pyodbc/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pyodbc/test_pyodbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pyodbc/test_pyodbc.py -------------------------------------------------------------------------------- /tests/datastore_pysolr/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pysolr/conftest.py -------------------------------------------------------------------------------- /tests/datastore_pysolr/test_solr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_pysolr/test_solr.py -------------------------------------------------------------------------------- /tests/datastore_redis/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/conftest.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_asyncio.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_custom_conn_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_custom_conn_pool.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_execute_command.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_generators.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_get_and_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_get_and_set.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_redis/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_redis/test_trace_node.py -------------------------------------------------------------------------------- /tests/datastore_rediscluster/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_rediscluster/conftest.py -------------------------------------------------------------------------------- /tests/datastore_solrpy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_solrpy/conftest.py -------------------------------------------------------------------------------- /tests/datastore_solrpy/test_solr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_solrpy/test_solr.py -------------------------------------------------------------------------------- /tests/datastore_sqlite/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_sqlite/conftest.py -------------------------------------------------------------------------------- /tests/datastore_sqlite/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_sqlite/test_database.py -------------------------------------------------------------------------------- /tests/datastore_sqlite/test_obfuscation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_sqlite/test_obfuscation.py -------------------------------------------------------------------------------- /tests/datastore_valkey/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/conftest.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_asyncio.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_execute_command.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_generators.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_get_and_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_get_and_set.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_instance_info.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_multiple_dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_multiple_dbs.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_span_event.py -------------------------------------------------------------------------------- /tests/datastore_valkey/test_trace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/datastore_valkey/test_trace_node.py -------------------------------------------------------------------------------- /tests/external_aiobotocore/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_aiobotocore/conftest.py -------------------------------------------------------------------------------- /tests/external_botocore/_test_file.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /tests/external_botocore/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/conftest.py -------------------------------------------------------------------------------- /tests/external_botocore/test_boto3_firehose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_boto3_firehose.py -------------------------------------------------------------------------------- /tests/external_botocore/test_boto3_iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_boto3_iam.py -------------------------------------------------------------------------------- /tests/external_botocore/test_boto3_kinesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_boto3_kinesis.py -------------------------------------------------------------------------------- /tests/external_botocore/test_boto3_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_boto3_lambda.py -------------------------------------------------------------------------------- /tests/external_botocore/test_boto3_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_boto3_s3.py -------------------------------------------------------------------------------- /tests/external_botocore/test_boto3_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_boto3_sns.py -------------------------------------------------------------------------------- /tests/external_botocore/test_botocore_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_botocore_ec2.py -------------------------------------------------------------------------------- /tests/external_botocore/test_botocore_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_botocore_s3.py -------------------------------------------------------------------------------- /tests/external_botocore/test_botocore_sqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_botocore_sqs.py -------------------------------------------------------------------------------- /tests/external_botocore/test_s3transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_botocore/test_s3transfer.py -------------------------------------------------------------------------------- /tests/external_feedparser/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_feedparser/conftest.py -------------------------------------------------------------------------------- /tests/external_feedparser/packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_feedparser/packages.xml -------------------------------------------------------------------------------- /tests/external_feedparser/test_feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_feedparser/test_feedparser.py -------------------------------------------------------------------------------- /tests/external_http/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_http/conftest.py -------------------------------------------------------------------------------- /tests/external_http/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_http/test_http.py -------------------------------------------------------------------------------- /tests/external_httplib/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httplib/conftest.py -------------------------------------------------------------------------------- /tests/external_httplib/test_httplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httplib/test_httplib.py -------------------------------------------------------------------------------- /tests/external_httplib/test_urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httplib/test_urllib.py -------------------------------------------------------------------------------- /tests/external_httplib/test_urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httplib/test_urllib2.py -------------------------------------------------------------------------------- /tests/external_httplib2/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httplib2/conftest.py -------------------------------------------------------------------------------- /tests/external_httplib2/test_httplib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httplib2/test_httplib2.py -------------------------------------------------------------------------------- /tests/external_httpx/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httpx/conftest.py -------------------------------------------------------------------------------- /tests/external_httpx/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_httpx/test_client.py -------------------------------------------------------------------------------- /tests/external_pyzeebe/_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_pyzeebe/_mocks.py -------------------------------------------------------------------------------- /tests/external_pyzeebe/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_pyzeebe/conftest.py -------------------------------------------------------------------------------- /tests/external_pyzeebe/test.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_pyzeebe/test.bpmn -------------------------------------------------------------------------------- /tests/external_pyzeebe/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_pyzeebe/test_client.py -------------------------------------------------------------------------------- /tests/external_pyzeebe/test_job_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_pyzeebe/test_job_executor.py -------------------------------------------------------------------------------- /tests/external_requests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_requests/conftest.py -------------------------------------------------------------------------------- /tests/external_requests/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_requests/test_requests.py -------------------------------------------------------------------------------- /tests/external_requests/test_span_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_requests/test_span_event.py -------------------------------------------------------------------------------- /tests/external_urllib3/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_urllib3/conftest.py -------------------------------------------------------------------------------- /tests/external_urllib3/test_urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/external_urllib3/test_urllib3.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/_target_application.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/conftest.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_client.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_client_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_client_cat.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_externals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_externals.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_middleware.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_server.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_server_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_server_cat.py -------------------------------------------------------------------------------- /tests/framework_aiohttp/test_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_aiohttp/test_ws.py -------------------------------------------------------------------------------- /tests/framework_ariadne/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_ariadne/__init__.py -------------------------------------------------------------------------------- /tests/framework_ariadne/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_ariadne/_target_application.py -------------------------------------------------------------------------------- /tests/framework_ariadne/_target_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_ariadne/_target_schema_sync.py -------------------------------------------------------------------------------- /tests/framework_ariadne/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_ariadne/conftest.py -------------------------------------------------------------------------------- /tests/framework_ariadne/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_ariadne/schema.graphql -------------------------------------------------------------------------------- /tests/framework_ariadne/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_ariadne/test_application.py -------------------------------------------------------------------------------- /tests/framework_azurefunctions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_azurefunctions/__init__.py -------------------------------------------------------------------------------- /tests/framework_azurefunctions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_azurefunctions/conftest.py -------------------------------------------------------------------------------- /tests/framework_bottle/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_bottle/_target_application.py -------------------------------------------------------------------------------- /tests/framework_bottle/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_bottle/conftest.py -------------------------------------------------------------------------------- /tests/framework_bottle/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_bottle/test_application.py -------------------------------------------------------------------------------- /tests/framework_cherrypy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_cherrypy/conftest.py -------------------------------------------------------------------------------- /tests/framework_cherrypy/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_cherrypy/test_application.py -------------------------------------------------------------------------------- /tests/framework_cherrypy/test_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_cherrypy/test_dispatch.py -------------------------------------------------------------------------------- /tests/framework_cherrypy/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_cherrypy/test_resource.py -------------------------------------------------------------------------------- /tests/framework_cherrypy/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_cherrypy/test_routes.py -------------------------------------------------------------------------------- /tests/framework_django/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/_target_application.py -------------------------------------------------------------------------------- /tests/framework_django/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/conftest.py -------------------------------------------------------------------------------- /tests/framework_django/dummy_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/dummy_app/__init__.py -------------------------------------------------------------------------------- /tests/framework_django/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/middleware.py -------------------------------------------------------------------------------- /tests/framework_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/settings.py -------------------------------------------------------------------------------- /tests/framework_django/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/templates/main.html -------------------------------------------------------------------------------- /tests/framework_django/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/templates/results.html -------------------------------------------------------------------------------- /tests/framework_django/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/test_application.py -------------------------------------------------------------------------------- /tests/framework_django/test_config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/test_config_file.py -------------------------------------------------------------------------------- /tests/framework_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/urls.py -------------------------------------------------------------------------------- /tests/framework_django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/views.py -------------------------------------------------------------------------------- /tests/framework_django/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_django/wsgi.py -------------------------------------------------------------------------------- /tests/framework_falcon/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_falcon/_target_application.py -------------------------------------------------------------------------------- /tests/framework_falcon/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_falcon/conftest.py -------------------------------------------------------------------------------- /tests/framework_falcon/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_falcon/test_application.py -------------------------------------------------------------------------------- /tests/framework_fastapi/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_fastapi/_target_application.py -------------------------------------------------------------------------------- /tests/framework_fastapi/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_fastapi/conftest.py -------------------------------------------------------------------------------- /tests/framework_fastapi/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_fastapi/test_application.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_application.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_blueprints.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_compress.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_middleware.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_not_found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_not_found.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_user_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_user_exceptions.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_views.py -------------------------------------------------------------------------------- /tests/framework_flask/_test_views_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/_test_views_async.py -------------------------------------------------------------------------------- /tests/framework_flask/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/conftest.py -------------------------------------------------------------------------------- /tests/framework_flask/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_application.py -------------------------------------------------------------------------------- /tests/framework_flask/test_blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_blueprints.py -------------------------------------------------------------------------------- /tests/framework_flask/test_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_compress.py -------------------------------------------------------------------------------- /tests/framework_flask/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_middleware.py -------------------------------------------------------------------------------- /tests/framework_flask/test_not_found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_not_found.py -------------------------------------------------------------------------------- /tests/framework_flask/test_user_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_user_exceptions.py -------------------------------------------------------------------------------- /tests/framework_flask/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_flask/test_views.py -------------------------------------------------------------------------------- /tests/framework_graphene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphene/__init__.py -------------------------------------------------------------------------------- /tests/framework_graphene/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphene/conftest.py -------------------------------------------------------------------------------- /tests/framework_graphene/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphene/test_application.py -------------------------------------------------------------------------------- /tests/framework_graphql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphql/__init__.py -------------------------------------------------------------------------------- /tests/framework_graphql/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphql/_target_application.py -------------------------------------------------------------------------------- /tests/framework_graphql/_target_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphql/_target_schema_sync.py -------------------------------------------------------------------------------- /tests/framework_graphql/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphql/conftest.py -------------------------------------------------------------------------------- /tests/framework_graphql/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_graphql/test_application.py -------------------------------------------------------------------------------- /tests/framework_grpc/_test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_grpc/_test_common.py -------------------------------------------------------------------------------- /tests/framework_grpc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_grpc/conftest.py -------------------------------------------------------------------------------- /tests/framework_grpc/test_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_grpc/test_clients.py -------------------------------------------------------------------------------- /tests/framework_grpc/test_get_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_grpc/test_get_url.py -------------------------------------------------------------------------------- /tests/framework_grpc/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_grpc/test_server.py -------------------------------------------------------------------------------- /tests/framework_pyramid/_test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_pyramid/_test_application.py -------------------------------------------------------------------------------- /tests/framework_pyramid/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_pyramid/conftest.py -------------------------------------------------------------------------------- /tests/framework_pyramid/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_pyramid/test_application.py -------------------------------------------------------------------------------- /tests/framework_pyramid/test_cornice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_pyramid/test_cornice.py -------------------------------------------------------------------------------- /tests/framework_sanic/_target_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_sanic/_target_application.py -------------------------------------------------------------------------------- /tests/framework_sanic/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_sanic/conftest.py -------------------------------------------------------------------------------- /tests/framework_sanic/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_sanic/test_application.py -------------------------------------------------------------------------------- /tests/framework_starlette/_test_bg_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_starlette/_test_bg_tasks.py -------------------------------------------------------------------------------- /tests/framework_starlette/_test_graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_starlette/_test_graphql.py -------------------------------------------------------------------------------- /tests/framework_starlette/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_starlette/conftest.py -------------------------------------------------------------------------------- /tests/framework_starlette/test_bg_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_starlette/test_bg_tasks.py -------------------------------------------------------------------------------- /tests/framework_strawberry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_strawberry/__init__.py -------------------------------------------------------------------------------- /tests/framework_strawberry/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_strawberry/conftest.py -------------------------------------------------------------------------------- /tests/framework_tornado/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_tornado/conftest.py -------------------------------------------------------------------------------- /tests/framework_tornado/test_externals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_tornado/test_externals.py -------------------------------------------------------------------------------- /tests/framework_tornado/test_inbound_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_tornado/test_inbound_cat.py -------------------------------------------------------------------------------- /tests/framework_tornado/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/framework_tornado/test_server.py -------------------------------------------------------------------------------- /tests/logger_logging/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_logging/conftest.py -------------------------------------------------------------------------------- /tests/logger_logging/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_logging/test_attributes.py -------------------------------------------------------------------------------- /tests/logger_logging/test_log_forwarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_logging/test_log_forwarding.py -------------------------------------------------------------------------------- /tests/logger_logging/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_logging/test_metrics.py -------------------------------------------------------------------------------- /tests/logger_logging/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_logging/test_settings.py -------------------------------------------------------------------------------- /tests/logger_loguru/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_loguru/conftest.py -------------------------------------------------------------------------------- /tests/logger_loguru/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_loguru/test_attributes.py -------------------------------------------------------------------------------- /tests/logger_loguru/test_log_forwarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_loguru/test_log_forwarding.py -------------------------------------------------------------------------------- /tests/logger_loguru/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_loguru/test_metrics.py -------------------------------------------------------------------------------- /tests/logger_loguru/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_loguru/test_settings.py -------------------------------------------------------------------------------- /tests/logger_structlog/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_structlog/conftest.py -------------------------------------------------------------------------------- /tests/logger_structlog/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_structlog/test_attributes.py -------------------------------------------------------------------------------- /tests/logger_structlog/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/logger_structlog/test_metrics.py -------------------------------------------------------------------------------- /tests/messagebroker_kafkapython/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_kafkapython/conftest.py -------------------------------------------------------------------------------- /tests/messagebroker_kombu/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_kombu/conftest.py -------------------------------------------------------------------------------- /tests/messagebroker_kombu/test_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_kombu/test_consumer.py -------------------------------------------------------------------------------- /tests/messagebroker_kombu/test_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_kombu/test_producer.py -------------------------------------------------------------------------------- /tests/messagebroker_pika/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_pika/compat.py -------------------------------------------------------------------------------- /tests/messagebroker_pika/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_pika/conftest.py -------------------------------------------------------------------------------- /tests/messagebroker_pika/test_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/messagebroker_pika/test_cat.py -------------------------------------------------------------------------------- /tests/mlmodel_autogen/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_autogen/conftest.py -------------------------------------------------------------------------------- /tests/mlmodel_autogen/test_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_autogen/test_teams.py -------------------------------------------------------------------------------- /tests/mlmodel_gemini/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_gemini/conftest.py -------------------------------------------------------------------------------- /tests/mlmodel_gemini/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_gemini/test_embeddings.py -------------------------------------------------------------------------------- /tests/mlmodel_langchain/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_langchain/conftest.py -------------------------------------------------------------------------------- /tests/mlmodel_langchain/hello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_langchain/hello.pdf -------------------------------------------------------------------------------- /tests/mlmodel_langchain/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_langchain/test_agent.py -------------------------------------------------------------------------------- /tests/mlmodel_langchain/test_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_langchain/test_chain.py -------------------------------------------------------------------------------- /tests/mlmodel_langchain/test_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_langchain/test_tool.py -------------------------------------------------------------------------------- /tests/mlmodel_langchain/test_vectorstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_langchain/test_vectorstore.py -------------------------------------------------------------------------------- /tests/mlmodel_openai/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_openai/conftest.py -------------------------------------------------------------------------------- /tests/mlmodel_openai/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_openai/test_embeddings.py -------------------------------------------------------------------------------- /tests/mlmodel_openai/test_embeddings_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_openai/test_embeddings_v1.py -------------------------------------------------------------------------------- /tests/mlmodel_sklearn/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_sklearn/conftest.py -------------------------------------------------------------------------------- /tests/mlmodel_sklearn/test_dummy_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_sklearn/test_dummy_models.py -------------------------------------------------------------------------------- /tests/mlmodel_sklearn/test_linear_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_sklearn/test_linear_models.py -------------------------------------------------------------------------------- /tests/mlmodel_sklearn/test_ml_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_sklearn/test_ml_model.py -------------------------------------------------------------------------------- /tests/mlmodel_sklearn/test_svm_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_sklearn/test_svm_models.py -------------------------------------------------------------------------------- /tests/mlmodel_sklearn/test_tree_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/mlmodel_sklearn/test_tree_models.py -------------------------------------------------------------------------------- /tests/template_genshi/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/template_genshi/conftest.py -------------------------------------------------------------------------------- /tests/template_genshi/test_genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/template_genshi/test_genshi.py -------------------------------------------------------------------------------- /tests/template_jinja2/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/template_jinja2/conftest.py -------------------------------------------------------------------------------- /tests/template_jinja2/test_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/template_jinja2/test_jinja2.py -------------------------------------------------------------------------------- /tests/template_mako/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/template_mako/conftest.py -------------------------------------------------------------------------------- /tests/template_mako/test_mako.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/template_mako/test_mako.py -------------------------------------------------------------------------------- /tests/testing_support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/__init__.py -------------------------------------------------------------------------------- /tests/testing_support/asgi_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/asgi_testing.py -------------------------------------------------------------------------------- /tests/testing_support/certs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/certs/__init__.py -------------------------------------------------------------------------------- /tests/testing_support/certs/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/certs/cert.pem -------------------------------------------------------------------------------- /tests/testing_support/db_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/db_settings.py -------------------------------------------------------------------------------- /tests/testing_support/external_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/external_fixtures.py -------------------------------------------------------------------------------- /tests/testing_support/fixture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/fixture/__init__.py -------------------------------------------------------------------------------- /tests/testing_support/fixture/event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/fixture/event_loop.py -------------------------------------------------------------------------------- /tests/testing_support/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/fixtures.py -------------------------------------------------------------------------------- /tests/testing_support/http_23_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/http_23_testing.py -------------------------------------------------------------------------------- /tests/testing_support/ml_testing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/ml_testing_utils.py -------------------------------------------------------------------------------- /tests/testing_support/mock_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/mock_http_client.py -------------------------------------------------------------------------------- /tests/testing_support/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tests/testing_support/util.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-python-agent/HEAD/tox.ini --------------------------------------------------------------------------------