Examples of DbusHttpTotalStatsEvent


Examples of com.linkedin.databus2.core.container.monitoring.events.DbusHttpTotalStatsEvent

  }

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

Examples of com.linkedin.databus2.core.container.monitoring.events.DbusHttpTotalStatsEvent

    if (! (eventData instanceof DbusHttpTotalStatsEvent))
    {
      LOG.warn("Attempt to merge unknown event class" + eventData.getClass().getName());
      return;
    }
    DbusHttpTotalStatsEvent e = (DbusHttpTotalStatsEvent)eventData;

    /** Allow use negative relay IDs for aggregation across multiple relays */
    if (_event.ownerId > 0 && e.ownerId != _event.ownerId)
    {
      LOG.warn("Attempt to data for a different relay " + e.ownerId);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.