Package org.netxms.client.datacollection
Class WinPerfObject
- java.lang.Object
-
- org.netxms.client.datacollection.WinPerfObject
-
public class WinPerfObject extends Object
Windows Performance Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static List<WinPerfObject>createListFromMessage(org.netxms.base.NXCPMessage msg)Create WinPerf objects list from NXCP messageWinPerfCounter[]getCounters()Get counters supported by this objectString[]getInstances()Get instances of this objectStringgetName()Get object namebooleanhasCounters()Check if this object has countersbooleanhasInstances()Check if this object has instances
-
-
-
Method Detail
-
createListFromMessage
public static List<WinPerfObject> createListFromMessage(org.netxms.base.NXCPMessage msg)
Create WinPerf objects list from NXCP message- Parameters:
msg- NXCP message- Returns:
- list of WinPerf objects
-
getName
public String getName()
Get object name- Returns:
- object name
-
getCounters
public WinPerfCounter[] getCounters()
Get counters supported by this object- Returns:
- list of supported counetrs
-
getInstances
public String[] getInstances()
Get instances of this object- Returns:
- list of object instances
-
hasCounters
public boolean hasCounters()
Check if this object has counters- Returns:
- true if this object has counters
-
hasInstances
public boolean hasInstances()
Check if this object has instances- Returns:
- true if this object has instances
-
-