Response title
This is preview!




Hai
1.The HOST-RESOURCES-MIB is available in the following directory
<Product-Home>/mibs.
2. From your second query I get that, you are interested in knowing as whether or not to load the mibs while querying the OIDs. Please correct me if my understanding is wrong.
If the mib is loaded then the OID is shown in the resolved format (.iso.org.dod...).If not , the OID value will be in numerical format(.1.3.6.1....).
3. For Linux OS
You can find the CPU utilization of Linux system by querying the oid
.1.3.6.1.4.1.2021.11.9
(.iso.org.dod.internet.private.enterprises.ucdavis.systemStats.ssCpuUser.0) in UCD-SNMP-MIB
There is no direct OID for getting memory utilization .
Querying the OID .1.3.6.1.2.1.25.2.3.1.6 (hrStorageUsed) in HOST-RESOURCES- MIB which fetches the storage allocations for different type of memory. Querying OID .1.3.6.1.2.1.25.2.3.1.4 from the same mib which will give you the storage allocation units for the same.
Using the simple formula, you can findout the memory utilization, and this is based on the RAM memory storage only. The RAM memory index can be obtained by quering OID .1.3.6.1.2.1.25.2.3.1.2 (hrStorageType).
Memory Utilization = StorageUsed * StorageAllocatioUnits;
For Example,
hrStorageType.4 : .iso.org.in. . . .storageRam
hrStorageAllocationUnits.4 : 65536
hrStorageUsed.4 : 6481
MemoryUtilization = 65536*6481.
Hope this helps
Regards
R.Ravikumar
(hrstorageused.i / hrstoragesize.i) *100
sum up the hsSWrunperfmem for all processes divide it by hrMemorySize
is there any way through SNMP API or through any system command to find CPU utilization and Mem utilization of a Windows system. i've tried HOST-RESOURCE-MIB, but cudn't find any OID for the mentioned utilizations. Plz help.
is there any way through SNMP API or through any system command to find CPU utilization and Mem utilization of a Windows system. i've tried HOST-RESOURCE-MIB, but cudn't find any OID for the mentioned utilizations. Plz help.