├── .github └── workflows │ ├── python-package.yml │ ├── python-publish-live.yml │ └── python-publish-test.yml ├── .gitignore ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── codeguru_profiler_agent ├── __init__.py ├── __main__.py ├── agent_metadata │ ├── __init__.py │ ├── agent_debug_info.py │ ├── agent_metadata.py │ ├── aws_ec2_instance.py │ ├── aws_fargate_task.py │ ├── aws_lambda.py │ └── fleet_info.py ├── aws_lambda │ ├── __init__.py │ ├── lambda_context.py │ ├── lambda_handler.py │ └── profiler_decorator.py ├── codeguru_client_builder.py ├── file_reporter │ ├── __init__.py │ └── file_reporter.py ├── local_aggregator.py ├── metrics │ ├── __init__.py │ ├── metric.py │ ├── timer.py │ └── with_timer.py ├── model │ ├── __init__.py │ ├── call_graph_node.py │ ├── frame.py │ ├── memory_counter.py │ ├── profile.py │ └── sample.py ├── profiler.py ├── profiler_builder.py ├── profiler_disabler.py ├── profiler_runner.py ├── reporter │ ├── __init__.py │ ├── agent_configuration.py │ └── reporter.py ├── sampler.py ├── sampling_utils.py ├── sdk_reporter │ ├── __init__.py │ ├── profile_encoder.py │ └── sdk_reporter.py └── utils │ ├── __init__.py │ ├── execution_state.py │ ├── log_exception.py │ ├── scheduler.py │ ├── synchronization.py │ └── time.py ├── codeguru_profiler_lambda_exec ├── release_layer.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── acceptance ├── test_cpu_limit.py ├── test_end_to_end_profile_and_save_to_file.py ├── test_end_to_end_profiling.py ├── test_kill_switch.py └── test_live_profiling.py ├── conftest.py ├── help_utils.py ├── integration ├── README.md └── test_live_backend_reporting.py ├── pytestutils.py └── unit ├── agent_metadata ├── test_agent_debug_info.py ├── test_agent_metadata.py ├── test_aws_ec2_instance.py ├── test_aws_fargate_task.py └── test_aws_lambda.py ├── aws_lambda ├── test_lambda_handler.py └── test_profiler_decorator.py ├── file_reporter └── test_file_reporter.py ├── metrics ├── test_metric.py ├── test_timer.py └── test_with_timer.py ├── model ├── test_call_graph_node.py ├── test_memory_counter.py └── test_profile.py ├── reporter ├── test_agent_configuration.py └── test_agent_configuration_merger.py ├── sdk_reporter ├── test_sdk_profile_encoder.py └── test_sdk_reporter.py ├── test_codeguru_client_builder.py ├── test_local_aggregator.py ├── test_main.py ├── test_profiler.py ├── test_profiler_builder.py ├── test_profiler_disabler.py ├── test_profiler_runner.py ├── test_sampler.py ├── test_sampling_utils.py └── utils ├── test_execution_state.py └── test_scheduler.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish-live.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/.github/workflows/python-publish-live.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/.github/workflows/python-publish-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | pytest-report.html 3 | *.egg-info 4 | dist/* 5 | -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/README.md -------------------------------------------------------------------------------- /codeguru_profiler_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/__init__.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/__main__.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/agent_debug_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/agent_metadata/agent_debug_info.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/agent_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/agent_metadata/agent_metadata.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/aws_ec2_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/agent_metadata/aws_ec2_instance.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/aws_fargate_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/agent_metadata/aws_fargate_task.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/aws_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/agent_metadata/aws_lambda.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/agent_metadata/fleet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/agent_metadata/fleet_info.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/aws_lambda/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/aws_lambda/lambda_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/aws_lambda/lambda_context.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/aws_lambda/lambda_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/aws_lambda/lambda_handler.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/aws_lambda/profiler_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/aws_lambda/profiler_decorator.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/codeguru_client_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/codeguru_client_builder.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/file_reporter/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/file_reporter/file_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/file_reporter/file_reporter.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/local_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/local_aggregator.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/metrics/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/metrics/metric.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/metrics/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/metrics/timer.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/metrics/with_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/metrics/with_timer.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/model/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/model/call_graph_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/model/call_graph_node.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/model/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/model/frame.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/model/memory_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/model/memory_counter.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/model/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/model/profile.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/model/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/model/sample.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/profiler.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/profiler_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/profiler_builder.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/profiler_disabler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/profiler_disabler.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/profiler_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/profiler_runner.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/reporter/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/reporter/agent_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/reporter/agent_configuration.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/reporter/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/reporter/reporter.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/sampler.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/sampling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/sampling_utils.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/sdk_reporter/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/sdk_reporter/profile_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/sdk_reporter/profile_encoder.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/sdk_reporter/sdk_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/sdk_reporter/sdk_reporter.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /codeguru_profiler_agent/utils/execution_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/utils/execution_state.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/utils/log_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/utils/log_exception.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/utils/scheduler.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/utils/synchronization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/utils/synchronization.py -------------------------------------------------------------------------------- /codeguru_profiler_agent/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_agent/utils/time.py -------------------------------------------------------------------------------- /codeguru_profiler_lambda_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/codeguru_profiler_lambda_exec -------------------------------------------------------------------------------- /release_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/release_layer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.14.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/acceptance/test_cpu_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/acceptance/test_cpu_limit.py -------------------------------------------------------------------------------- /test/acceptance/test_end_to_end_profile_and_save_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/acceptance/test_end_to_end_profile_and_save_to_file.py -------------------------------------------------------------------------------- /test/acceptance/test_end_to_end_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/acceptance/test_end_to_end_profiling.py -------------------------------------------------------------------------------- /test/acceptance/test_kill_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/acceptance/test_kill_switch.py -------------------------------------------------------------------------------- /test/acceptance/test_live_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/acceptance/test_live_profiling.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/help_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/help_utils.py -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/test_live_backend_reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/integration/test_live_backend_reporting.py -------------------------------------------------------------------------------- /test/pytestutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/pytestutils.py -------------------------------------------------------------------------------- /test/unit/agent_metadata/test_agent_debug_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/agent_metadata/test_agent_debug_info.py -------------------------------------------------------------------------------- /test/unit/agent_metadata/test_agent_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/agent_metadata/test_agent_metadata.py -------------------------------------------------------------------------------- /test/unit/agent_metadata/test_aws_ec2_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/agent_metadata/test_aws_ec2_instance.py -------------------------------------------------------------------------------- /test/unit/agent_metadata/test_aws_fargate_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/agent_metadata/test_aws_fargate_task.py -------------------------------------------------------------------------------- /test/unit/agent_metadata/test_aws_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/agent_metadata/test_aws_lambda.py -------------------------------------------------------------------------------- /test/unit/aws_lambda/test_lambda_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/aws_lambda/test_lambda_handler.py -------------------------------------------------------------------------------- /test/unit/aws_lambda/test_profiler_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/aws_lambda/test_profiler_decorator.py -------------------------------------------------------------------------------- /test/unit/file_reporter/test_file_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/file_reporter/test_file_reporter.py -------------------------------------------------------------------------------- /test/unit/metrics/test_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/metrics/test_metric.py -------------------------------------------------------------------------------- /test/unit/metrics/test_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/metrics/test_timer.py -------------------------------------------------------------------------------- /test/unit/metrics/test_with_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/metrics/test_with_timer.py -------------------------------------------------------------------------------- /test/unit/model/test_call_graph_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/model/test_call_graph_node.py -------------------------------------------------------------------------------- /test/unit/model/test_memory_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/model/test_memory_counter.py -------------------------------------------------------------------------------- /test/unit/model/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/model/test_profile.py -------------------------------------------------------------------------------- /test/unit/reporter/test_agent_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/reporter/test_agent_configuration.py -------------------------------------------------------------------------------- /test/unit/reporter/test_agent_configuration_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/reporter/test_agent_configuration_merger.py -------------------------------------------------------------------------------- /test/unit/sdk_reporter/test_sdk_profile_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/sdk_reporter/test_sdk_profile_encoder.py -------------------------------------------------------------------------------- /test/unit/sdk_reporter/test_sdk_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/sdk_reporter/test_sdk_reporter.py -------------------------------------------------------------------------------- /test/unit/test_codeguru_client_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_codeguru_client_builder.py -------------------------------------------------------------------------------- /test/unit/test_local_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_local_aggregator.py -------------------------------------------------------------------------------- /test/unit/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_main.py -------------------------------------------------------------------------------- /test/unit/test_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_profiler.py -------------------------------------------------------------------------------- /test/unit/test_profiler_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_profiler_builder.py -------------------------------------------------------------------------------- /test/unit/test_profiler_disabler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_profiler_disabler.py -------------------------------------------------------------------------------- /test/unit/test_profiler_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_profiler_runner.py -------------------------------------------------------------------------------- /test/unit/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_sampler.py -------------------------------------------------------------------------------- /test/unit/test_sampling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/test_sampling_utils.py -------------------------------------------------------------------------------- /test/unit/utils/test_execution_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/utils/test_execution_state.py -------------------------------------------------------------------------------- /test/unit/utils/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/amazon-codeguru-profiler-python-agent/HEAD/test/unit/utils/test_scheduler.py --------------------------------------------------------------------------------