Package com.bea.wli.monitoring
Class ServiceResourceStatistic
java.lang.Object
com.bea.wli.monitoring.ServiceResourceStatistic
- All Implemented Interfaces:
Serializable
This class contains statistical information for all resources of business
or proxy service.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionServiceResourceStatistic
(Ref serviceRef, Exception exception) ConstructorServiceResourceStatistic
(Ref serviceRef, Map<ResourceType, ResourceStatistic[]> resourceStatisticMap, String[] missingServers, long collectionTimestamp) Constructor -
Method Summary
Modifier and TypeMethodDescriptionGets statistics for all resources.long
Gets the time the statistics were collected from the cluster.String[]
Returns array of missing servers.Gets statistics for all resources of specified type.Gets reference of service of which statistical information is available in this object.
-
Constructor Details
-
ServiceResourceStatistic
public ServiceResourceStatistic(Ref serviceRef, Map<ResourceType, ResourceStatistic[]> resourceStatisticMap, String[] missingServers, long collectionTimestamp) throws IllegalArgumentExceptionConstructor- Parameters:
serviceRef
-resourceStatisticMap
-missingServers
-collectionTimestamp
-- Throws:
IllegalArgumentException
-
ServiceResourceStatistic
public ServiceResourceStatistic(Ref serviceRef, Exception exception) throws IllegalArgumentException Constructor- Parameters:
serviceRef
-exception
-- Throws:
IllegalArgumentException
-
-
Method Details
-
getServiceRef
Gets reference of service of which statistical information is available in this object.- Returns:
- Service reference.
-
getCollectionTimestamp
Gets the time the statistics were collected from the cluster. Time (actual time from Admin Server) when this statistic was collected. This method should be called after making sure that statistics are retrieved successfully. In case of statistics retrieval failure, collection time data will have no meaning and in such case this method will throw IllegalStateException.- Returns:
- Collection timestamp in mSec.
- Throws:
IllegalStateException
- If not collection timestamp is not set.
-
getAllResourceStatistics
public ResourceStatistic[] getAllResourceStatistics() throws InvalidServiceRefException, MonitoringNotEnabledException, MonitoringExceptionGets statistics for all resources.- Returns:
- Statistics for all resources of requested types. If statistics for one or more type of resources (that were specified in the operation which returned this object) are not present in the returned statistics, it means this service does not have any resources of those types.
- Throws:
InvalidServiceRefException
- If service reference is invalid or service is deleted.MonitoringNotEnabledException
- If statistics not found.MonitoringException
- If operation fails.
-
getResourceStatisticsByType
public ResourceStatistic[] getResourceStatisticsByType(ResourceType type) throws InvalidServiceRefException, MonitoringNotEnabledException, MonitoringException Gets statistics for all resources of specified type.- Parameters:
type
- Resource type.- Returns:
- Statistics for all resources of specified type. Null will be returned in following two situations: 1. This service doen not have any resource of the specified type. 2. Statistics for specified type were not requested in the operation that returned this object.
- Throws:
InvalidServiceRefException
- If service reference is invalid or service is deleted.MonitoringNotEnabledException
- If statistics not found.MonitoringException
- If operation fails.
-
getMissingServers
Returns array of missing servers. This method should be called after making sure that statistics are retrieved successfully. In case of statistics retrieval failure, missing server data will have no meaning and in such case this method will throw IllegalStateException.- Returns:
- Array of missing servers. Returns empty array if no server is missing and statistics retrieval was successful.
- Throws:
IllegalStateException
- If not collection timestamp is not set.
-