Java EE 5 SDK

com.sun.appserv.management.monitor.statistics
Interface WebServiceEndpointAggregateStats

All Superinterfaces:
Stats

public interface WebServiceEndpointAggregateStats
extends Stats

Web Service Endpoint's stats interface. It provides faults, response time, throughput and authentication failure/success information.

Since:
AppServer 9.0

Method Summary
 CountStatistic getAverageResponseTime()
          Returns the average time in milli seconds spent during the last successful/unsuccessful attempt to execute the operation, as a CountStatistic.
 CountStatistic getMaxResponseTime()
          Returns the maximum time spent in milli seconds for any successful/ unsuccessful attempt to execute the operation, as a CountStatistic.
 CountStatistic getMinResponseTime()
          Returns the minimum time spent in milli seconds for any successful/ unsuccessful attempt to execute the operation, as a CountStatistic.
 CountStatistic getResponseTime()
          Returns the time in milli seconds spent during the last successful/unsuccessful attempt to execute the operation, as a CountStatistic.
 NumberStatistic getThroughput()
          Returns the number successful messages/minute since the server is started as a NumberStatistic.
 CountStatistic getTotalAuthFailures()
          Returns the total number of authentication failures as a CountStatistic.
 CountStatistic getTotalAuthSuccesses()
          Returns the total number of authentication successes CountStatistic.
 CountStatistic getTotalFaults()
          Returns the total number of fault as a CountStatistic.
 CountStatistic getTotalNumSuccess()
          Returns the total number of successful runs, as a CountStatistic.
 
Methods inherited from interface javax.management.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getTotalFaults

CountStatistic getTotalFaults()
Returns the total number of fault as a CountStatistic. Generally if an Endpoint results in a fault, this count will increment by one.

Returns:
an instance of CountStatistic

getTotalNumSuccess

CountStatistic getTotalNumSuccess()
Returns the total number of successful runs, as a CountStatistic. Generally if an operation returns with out a fault it is consider a success. normally, this count will increment by one.

Returns:
an instance of CountStatistic

getAverageResponseTime

CountStatistic getAverageResponseTime()
Returns the average time in milli seconds spent during the last successful/unsuccessful attempt to execute the operation, as a CountStatistic. The time spent is generally an indication of the system load/processing time.

Returns:
an instance of CountStatistic

getResponseTime

CountStatistic getResponseTime()
Returns the time in milli seconds spent during the last successful/unsuccessful attempt to execute the operation, as a CountStatistic.

Returns:
an instance of CountStatistic

getMinResponseTime

CountStatistic getMinResponseTime()
Returns the minimum time spent in milli seconds for any successful/ unsuccessful attempt to execute the operation, as a CountStatistic.

Returns:
an instance of CountStatistic

getMaxResponseTime

CountStatistic getMaxResponseTime()
Returns the maximum time spent in milli seconds for any successful/ unsuccessful attempt to execute the operation, as a CountStatistic.

Returns:
an instance of CountStatistic

getThroughput

NumberStatistic getThroughput()
Returns the number successful messages/minute since the server is started as a NumberStatistic.

Returns:
an instance of NumberStatistic

getTotalAuthFailures

CountStatistic getTotalAuthFailures()
Returns the total number of authentication failures as a CountStatistic.

Returns:
an instance of CountStatistic

getTotalAuthSuccesses

CountStatistic getTotalAuthSuccesses()
Returns the total number of authentication successes CountStatistic.

Returns:
an instance of CountStatistic

Java EE 5 SDK

Submit a bug or feature

Copyright 2006 Sun Microsystems, Inc. All rights reserved.