View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.module.management.mbean;
8   
9   /**
10   * <code>ServiceStatsMBean</code> TODO
11   */
12  public interface ServiceStatsMBean extends FlowConstructStatsMBean
13  {
14  
15      long getAverageExecutionTime();
16  
17      long getAverageQueueSize();
18  
19      long getMaxQueueSize();
20  
21      long getMaxExecutionTime();
22  
23      long getMinExecutionTime();
24  
25      long getTotalExecutionTime();
26  
27      long getQueuedEvents();
28  
29      long getReplyToEventsSent();
30  
31      long getSyncEventsSent();
32  
33      long getAsyncEventsSent();
34  
35      long getTotalEventsSent();
36  
37      long getExecutedEvents();
38  
39  }