[11/11/2022]: Bombardia Web Stress Testing Tools
https://github.com/codesenberg/bombardier
DotNet Tools
1. https://dotnet.grep.app/
use this website to see what is going on with the method or .Net Class in AspNet 6
Diagnose Performance Issues in the AspNet Application
Download the dotnet-counters tool that allows you to see what objects have been allocated on the GC-Gen-2 https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters
- Useful command after you download and install dotnet-counters type
1. Open up a new shell and type: dotnet-counters monitor --diagnostic-port 5002
2. Make sure you add "DOTNET_DiagnosticPorts" : "5002" in your launchSettings.json
3. Then do dotnet watch run
4. Go back to the shell where you run the dotnet-counters monitor command and start monitoring your app.
Tools: https://docs.microsoft.com/en-us/sysinternals/