Abhishek Bhatia
Abhishek Bhatia

Reputation: 9796

Check CPU percentage of computing node used

How can I can the CPU percentage used of each node when say job J is submitted to queue Q?

I don't want it specific to a queue which qstat gives, but specific to a job.

Upvotes: 0

Views: 83

Answers (1)

Matt
Matt

Reputation: 545

Assuming that you are using Torque/Moab you should be able to use the checkjob(documentation linked) command to get more detailed information about the job you are interested in. Something like:

checkjob -v exact:J -n <Insert Node ID here>

Should work to get you more information about the job, the -v, -n and Node ID are optional.

Alternately if you know the node ID/name you can use the checknode command and associated options to get more information about the node the job is being run on. Hopefully that helps.

Upvotes: 2

Related Questions