public class ProfilerTimerFilter extends IoFilterAdapter
IoFilterAdapter class to execute. The basic
premise of the logic in this class is to get the current time
at the beginning of the method, call method on nextFilter, and
then get the current time again. An example of how to use
the filter is:
ProfilerTimerFilter profiler = new ProfilerTimerFilter(
TimeUnit.MILLISECOND, IoEventType.MESSAGE_RECEIVED);
chain.addFirst("Profiler", profiler);
The profiled IoEventType are :
IoFilter.NextFilter| Constructor and Description |
|---|
ProfilerTimerFilter()
Creates a new instance of ProfilerFilter.
|
ProfilerTimerFilter(TimeUnit timeUnit)
Creates a new instance of ProfilerFilter.
|
ProfilerTimerFilter(TimeUnit timeUnit,
IoEventType... eventTypes)
Creates a new instance of ProfilerFilter.
|
| Modifier and Type | Method and Description |
|---|---|
double |
getAverageTime(IoEventType type)
Get the average time for the specified method represented by the
IoEventType |
Set<IoEventType> |
getEventsToProfile()
Return the set of
IoEventType which are profiled. |
long |
getMaximumTime(IoEventType type)
The maximum time the method represented by
IoEventType has executed |
long |
getMinimumTime(IoEventType type)
The minimum time the method represented by
IoEventType has executed |
long |
getTotalCalls(IoEventType type)
Gets the total number of times the method has been called that is represented by the
IoEventType |
long |
getTotalTime(IoEventType type)
The total time this method has been executing
|
void |
messageReceived(IoFilter.NextFilter nextFilter,
IoSession session,
Object message)
Profile a MessageReceived event.
|
void |
messageSent(IoFilter.NextFilter nextFilter,
IoSession session,
WriteRequest writeRequest)
Profile a MessageSent event.
|
void |
profile(IoEventType type)
Set the
IoEventType to be profiled |
void |
sessionClosed(IoFilter.NextFilter nextFilter,
IoSession session)
Profile a SessionClosed event.
|
void |
sessionCreated(IoFilter.NextFilter nextFilter,
IoSession session)
Profile a SessionCreated event.
|
void |
sessionIdle(IoFilter.NextFilter nextFilter,
IoSession session,
IdleStatus status)
Profile a SessionIdle event.
|
void |
sessionOpened(IoFilter.NextFilter nextFilter,
IoSession session)
Profile a SessionOpened event.
|
void |
setEventsToProfile(IoEventType... eventTypes)
Set the profilers for a list of
IoEventType |
void |
setTimeUnit(TimeUnit timeUnit)
Sets the
TimeUnit being used. |
void |
stopProfile(IoEventType type)
Stop profiling an
IoEventType |
destroy, exceptionCaught, filterClose, filterWrite, init, onPostAdd, onPostRemove, onPreAdd, onPreRemove, toStringpublic ProfilerTimerFilter()
public ProfilerTimerFilter(TimeUnit timeUnit)
timeUnit - the time increment to setpublic ProfilerTimerFilter(TimeUnit timeUnit, IoEventType... eventTypes)
new ProfilerTimerFilter(
TimeUnit.MILLISECONDS,
IoEventType.MESSAGE_RECEIVED, IoEventType.MESSAGE_SENT);
Note : you can add as many IoEventType as you want. The method accepts
a variable number of arguments.timeUnit - Used to determine the level of precision you need in your timing.eventTypes - A list of IoEventType representation of the methods to profilepublic void setTimeUnit(TimeUnit timeUnit)
TimeUnit being used.timeUnit - the new TimeUnit to be used.public void profile(IoEventType type)
IoEventType to be profiledtype - The IoEventType to profilepublic void stopProfile(IoEventType type)
IoEventTypetype - The IoEventType to stop profilingpublic Set<IoEventType> getEventsToProfile()
IoEventType which are profiled.IoEventTypepublic void setEventsToProfile(IoEventType... eventTypes)
IoEventTypeeventTypes - the list of IoEventType to profilepublic void messageReceived(IoFilter.NextFilter nextFilter, IoSession session, Object message) throws Exception
messageReceived in interface IoFiltermessageReceived in class IoFilterAdapternextFilter - The filter to call nextsession - The associated sessionmessage - the received messageExceptionpublic void messageSent(IoFilter.NextFilter nextFilter, IoSession session, WriteRequest writeRequest) throws Exception
messageSent in interface IoFiltermessageSent in class IoFilterAdapternextFilter - The filter to call nextsession - The associated sessionwriteRequest - the sent messageExceptionpublic void sessionCreated(IoFilter.NextFilter nextFilter, IoSession session) throws Exception
sessionCreated in interface IoFiltersessionCreated in class IoFilterAdapternextFilter - The filter to call nextsession - The associated sessionExceptionpublic void sessionOpened(IoFilter.NextFilter nextFilter, IoSession session) throws Exception
sessionOpened in interface IoFiltersessionOpened in class IoFilterAdapternextFilter - The filter to call nextsession - The associated sessionExceptionpublic void sessionIdle(IoFilter.NextFilter nextFilter, IoSession session, IdleStatus status) throws Exception
sessionIdle in interface IoFiltersessionIdle in class IoFilterAdapternextFilter - The filter to call nextsession - The associated sessionstatus - The session's statusExceptionpublic void sessionClosed(IoFilter.NextFilter nextFilter, IoSession session) throws Exception
sessionClosed in interface IoFiltersessionClosed in class IoFilterAdapternextFilter - The filter to call nextsession - The associated sessionExceptionpublic double getAverageTime(IoEventType type)
IoEventTypetype - The IoEventType that the user wants to get the average method call timeIoEventTypepublic long getTotalCalls(IoEventType type)
IoEventTypetype - The IoEventType that the user wants to get the total number of method callsIoEventTypepublic long getTotalTime(IoEventType type)
type - The IoEventType that the user wants to get the total time this method has
been executingIoEventTypepublic long getMinimumTime(IoEventType type)
IoEventType has executedtype - The IoEventType that the user wants to get the minimum time this method has
executedIoEventTypepublic long getMaximumTime(IoEventType type)
IoEventType has executedtype - The IoEventType that the user wants to get the maximum time this method has
executedIoEventType