Framework Mode - Identifying performance bottlenecks
Folder Structure
performance-testing-project/ ├── tests/ │ ├── load_tests/ │ │ └── user_load_test.py │ ├── stress_tests/ │ │ └── api_stress_test.py │ └── spike_tests/ │ └── spike_test.py ├── tools/ │ ├── data_generators/ │ │ └── user_data_generator.py │ ├── monitors/ │ │ └── resource_monitor.py │ └── analyzers/ │ └── bottleneck_detector.py ├── reports/ │ └── performance_report_2024_06_01.html ├── config/ │ ├── env_config.yaml │ └── test_settings.yaml ├── logs/ │ └── performance_test.log └── README.md