How can I obtain the RAM and CPU usage of a particular app on my on a Window OS while it is performing some actions

Viewed 28

I am running performance testing on some endpoints on my PC, I would like to see the RAM, hard disk, and CPU usage of the very application that is being used for the performance testing on my computer.

I need a programmable way of setting it up in order to monitor the process under evaluation. I like to start it before the process to be measured starts, and when the process is ended, I then open it up and collate the result. It could be in the form of a graph or just figures on the console. I would appreciate it if someone could help me with how to achieve this.

PS: I am using a Windows computer.

Thanks

1 Answers

you can just open your task manager which gives the processor usage percentage for every app, as well as the memory usage. It also displays the GPU usage for apps which use it.

Related