Is there a method in the Sigar API that returns the CPU ID of the host running the JVM?
Asked
Active
Viewed 3,660 times
2
-
1link might help : http://stackoverflow.com/questions/19323364/using-sigar-api-to-get-jvm-cpu-usage – Kamlesh Arya Dec 27 '13 at 04:49
-
2Hi @KamleshArya the link deals with process IDs and what I need to know is Processor ID. – Vignesh Jayavel Dec 27 '13 at 04:53
1 Answers
1
From what I can tell, the closest you will get is the CpuInfo.getVendorId()
method. That would give you the ID for the CPU type ... not a unique ID for the actual chip.

Stephen C
- 698,415
- 94
- 811
- 1,216