Package com.linkedin.databus.client.pub.monitoring.events

Examples of com.linkedin.databus.client.pub.monitoring.events.UnifiedClientStatsEvent


                                  regId, true, false, new ConsumerCallbackStatsEvent());
    _unifiedClientStats =
        new UnifiedClientStats(ownerId, regId + UNIFIED_CLIENT_STATS_SUFFIX_NAME,
                               regId, true, false,
                               _client.getClientStaticConfig().getPullerThreadDeadnessThresholdMs(),
                               new UnifiedClientStatsEvent());
  }
View Full Code Here


                                  regId, true, false, new ConsumerCallbackStatsEvent());
    UnifiedClientStats unifiedClientStats =
        new UnifiedClientStats(ownerId, regId + ".callback.unified",
                               regId, true, false,
                               pullerThreadDeadnessThresholdMs,
                               new UnifiedClientStatsEvent());
    _relayCallbackStatsMerger = new StatsCollectors<ConsumerCallbackStats>(relayConsumerStats);
    _bootstrapCallbackStatsMerger = new StatsCollectors<ConsumerCallbackStats>(bootstrapConsumerStats);
    _unifiedClientStatsMerger = new StatsCollectors<UnifiedClientStats>(unifiedClientStats);
    _relayEventStatsMerger = new StatsCollectors<DbusEventsStatisticsCollector>(
        new AggregatedDbusEventsStatisticsCollector(ownerId, regId + ".inbound", true, false, mbeanServer));
View Full Code Here

  }

  @Override
  protected UnifiedClientStatsEvent newDataEvent()
  {
    return new UnifiedClientStatsEvent();
  }
View Full Code Here

    {
      LOG.warn("Attempt to merge stats from unknown event class: " + eventData.getClass().getName());
      return;
    }
    UnifiedClientStats otherEvent = (UnifiedClientStats)eventData;
    UnifiedClientStatsEvent e = otherEvent._event;

    _event.aggregated = true;

    // standalone metrics; aggregation = simple sum:
    _event.curBootstrappingPartitions  += e.curBootstrappingPartitions;
View Full Code Here

TOP

Related Classes of com.linkedin.databus.client.pub.monitoring.events.UnifiedClientStatsEvent

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.