Hi Team,
We are using Sigar library in our monitoring product. Here is the usage of Sigar to fetch physicalCoreCount and virtualCpuCount on AIX 7.1 powerpc processor
SigarProxy sigarProxy = SigarProxyCache.newInstance();
CpuInfo[] cpuInfos = sigarProxy.getCpuInfoList();
We are treating the values that comes from cpuInfos as
physicalCoreCount= cpuInfos[0].getTotalSockets(),
virtualCpuCount= cpuInfos[0].getTotalCores(),
Can you please provide details about underlying OS commands/source which are executed to fetch physicalCoreCount and virtualCpuCount(Vcpu) details
Thanks
Rajesh
Hi Team,
We are using Sigar library in our monitoring product. Here is the usage of Sigar to fetch physicalCoreCount and virtualCpuCount on AIX 7.1 powerpc processor
SigarProxy sigarProxy = SigarProxyCache.newInstance();
CpuInfo[] cpuInfos = sigarProxy.getCpuInfoList();
We are treating the values that comes from cpuInfos as
physicalCoreCount= cpuInfos[0].getTotalSockets(),
virtualCpuCount= cpuInfos[0].getTotalCores(),
Can you please provide details about underlying OS commands/source which are executed to fetch physicalCoreCount and virtualCpuCount(Vcpu) details
Thanks
Rajesh