Package com.linkedin.helix.monitoring.mbeans

Examples of com.linkedin.helix.monitoring.mbeans.HelixStageLatencyMonitor


        event.getAttribute("HelixStageLatencyMonitorMap");
    if (stgLatencyMonitorMap != null)
    {
      if (stgLatencyMonitorMap.containsKey(getStageName()))
      {
        HelixStageLatencyMonitor stgLatencyMonitor =
            stgLatencyMonitorMap.get(getStageName());
        stgLatencyMonitor.addStgLatency(latency);
      }
    }
  }
View Full Code Here


      if (!_stageLatencyMonitorMap.containsKey(stgName))
      {
        try
        {
          _stageLatencyMonitorMap.put(stage.getStageName(),
                                      new HelixStageLatencyMonitor(_manager.getClusterName(),
                                                                   stgName));
        }
        catch (Exception e)
        {
          LOG.error("Couldn't create StageLatencyMonitor mbean for stage: " + stgName, e);
View Full Code Here

TOP

Related Classes of com.linkedin.helix.monitoring.mbeans.HelixStageLatencyMonitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.