RpcMgt.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.ipc.metrics;
  19. import javax.management.ObjectName;
  20. import org.apache.hadoop.ipc.Server;
  21. import org.apache.hadoop.metrics.util.MBeanUtil;
  22. /**
  23.  * This class implements the RpcMgt MBean
  24.  *
  25.  */
  26. class RpcMgt implements RpcMgtMBean {
  27.   private RpcMetrics myMetrics;
  28.   private Server myServer;
  29.   private ObjectName mbeanName;
  30.   
  31.   RpcMgt(final String serviceName, final String port,
  32.                 final RpcMetrics metrics, Server server) {
  33.     myMetrics = metrics;
  34.     myServer = server;
  35.     mbeanName = MBeanUtil.registerMBean(serviceName,
  36.                     "RpcStatisticsForPort" + port, this);
  37.   }
  38.   public void shutdown() {
  39.     if (mbeanName != null)
  40.       MBeanUtil.unregisterMBean(mbeanName);
  41.   }
  42.   
  43.   /**
  44.    * @inheritDoc
  45.    */
  46.   public long getRpcOpsAvgProcessingTime() {
  47.     return myMetrics.rpcProcessingTime.getPreviousIntervalAverageTime();
  48.   }
  49.   
  50.   /**
  51.    * @inheritDoc
  52.    */
  53.   public long getRpcOpsAvgProcessingTimeMax() {
  54.     return myMetrics.rpcProcessingTime.getMaxTime();
  55.   }
  56.   /**
  57.    * @inheritDoc
  58.    */
  59.   public long getRpcOpsAvgProcessingTimeMin() {
  60.     return myMetrics.rpcProcessingTime.getMinTime();
  61.   }
  62.   /**
  63.    * @inheritDoc
  64.    */
  65.   public long getRpcOpsAvgQueueTime() {
  66.     return myMetrics.rpcQueueTime.getPreviousIntervalAverageTime();
  67.   }
  68.   
  69.   /**
  70.    * @inheritDoc
  71.    */
  72.   public long getRpcOpsAvgQueueTimeMax() {
  73.     return myMetrics.rpcQueueTime.getMaxTime();
  74.   }
  75.   /**
  76.    * @inheritDoc
  77.    */
  78.   public long getRpcOpsAvgQueueTimeMin() {
  79.     return myMetrics.rpcQueueTime.getMinTime();
  80.   }
  81.   /**
  82.    * @inheritDoc
  83.    */
  84.   public int getRpcOpsNumber() {
  85.     return myMetrics.rpcProcessingTime.getPreviousIntervalNumOps() ;
  86.   }
  87.   /**
  88.    * @inheritDoc
  89.    */
  90.   public int getNumOpenConnections() {
  91.     return myServer.getNumOpenConnections();
  92.   }
  93.   
  94.   /**
  95.    * @inheritDoc
  96.    */
  97.   public int getCallQueueLen() {
  98.     return myServer.getCallQueueLen();
  99.   }
  100.   /**
  101.    * @inheritDoc
  102.    */
  103.   public void resetAllMinMax() {
  104.     myMetrics.rpcProcessingTime.resetMinMax();
  105.     myMetrics.rpcQueueTime.resetMinMax();
  106.   }
  107. }