FileDocCategorySizeDatePackage
WebServiceEndpointAggregateStats.javaAPI DocGlassfish v2 API4955Fri May 04 22:31:04 BST 2007com.sun.appserv.management.monitor.statistics

WebServiceEndpointAggregateStats

public interface WebServiceEndpointAggregateStats implements javax.management.j2ee.statistics.Stats
Web Service Endpoint's stats interface. It provides faults, response time, throughput and authentication failure/success information.
since
AppServer 9.0

Fields Summary
Constructors Summary
Methods Summary
public javax.management.j2ee.statistics.CountStatisticgetAverageResponseTime()
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.

return
an instance of {@link CountStatistic}

public javax.management.j2ee.statistics.CountStatisticgetMaxResponseTime()
Returns the maximum time spent in milli seconds for any successful/ unsuccessful attempt to execute the operation, as a CountStatistic.

return
an instance of {@link CountStatistic}

public javax.management.j2ee.statistics.CountStatisticgetMinResponseTime()
Returns the minimum time spent in milli seconds for any successful/ unsuccessful attempt to execute the operation, as a CountStatistic.

return
an instance of {@link CountStatistic}

public javax.management.j2ee.statistics.CountStatisticgetResponseTime()
Returns the time in milli seconds spent during the last successful/unsuccessful attempt to execute the operation, as a CountStatistic.

return
an instance of {@link CountStatistic}

public com.sun.appserv.management.j2ee.statistics.NumberStatisticgetThroughput()
Returns the number successful messages/minute since the server is started as a NumberStatistic.

return
an instance of {@link NumberStatistic}

public javax.management.j2ee.statistics.CountStatisticgetTotalAuthFailures()
Returns the total number of authentication failures as a CountStatistic.

return
an instance of {@link CountStatistic}

public javax.management.j2ee.statistics.CountStatisticgetTotalAuthSuccesses()
Returns the total number of authentication successes CountStatistic.

return
an instance of {@link CountStatistic}

public javax.management.j2ee.statistics.CountStatisticgetTotalFaults()
Returns the total number of fault as a CountStatistic. Generally if an Endpoint results in a fault, this count will increment by one.

return
an instance of {@link CountStatistic}

public javax.management.j2ee.statistics.CountStatisticgetTotalNumSuccess()
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.

return
an instance of {@link CountStatistic}