View Javadoc

1   /*
2    * $Id: ServiceStatsMBean.java 19191 2010-08-25 21:05:23Z tcarlson $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.module.management.mbean;
12  
13  /**
14   * <code>ServiceStatsMBean</code> TODO
15   */
16  public interface ServiceStatsMBean
17  {
18  
19      void clearStatistics();
20  
21      long getAverageExecutionTime();
22  
23      long getAverageQueueSize();
24  
25      long getMaxQueueSize();
26  
27      long getMaxExecutionTime();
28  
29      long getFatalErrors();
30  
31      long getMinExecutionTime();
32  
33      long getTotalExecutionTime();
34  
35      long getQueuedEvents();
36  
37      long getAsyncEventsReceived();
38  
39      long getSyncEventsReceived();
40  
41      long getReplyToEventsSent();
42  
43      long getSyncEventsSent();
44  
45      long getAsyncEventsSent();
46  
47      long getTotalEventsSent();
48  
49      long getTotalEventsReceived();
50  
51      long getExecutedEvents();
52  
53      long getExecutionErrors();
54  }