Class HystrixMetricHandler

  • All Implemented Interfaces:
    Handler<RoutingContext>

    public class HystrixMetricHandler
    extends Object
    implements Handler<RoutingContext>
    A Vert.x web handler to expose the circuit breaker to the Hystrix dasbboard. The handler listens to the circuit breaker notifications sent on the event bus.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • HystrixMetricHandler

        public HystrixMetricHandler​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • create

        public static HystrixMetricHandler create​(Vertx vertx)
        Creates the handler, using the default notification address and listening to local messages only.
        Parameters:
        vertx - the Vert.x instance
        Returns:
        the handler
      • create

        public static HystrixMetricHandler create​(Vertx vertx,
                                                  String address)
        Creates the handler, listening only to local messages.
        Parameters:
        vertx - the Vert.x instance
        address - the address to listen on the event bus
        Returns:
        the handler
      • create

        public static HystrixMetricHandler create​(Vertx vertx,
                                                  String address,
                                                  boolean localOnly)
        Creates the handler.
        Parameters:
        vertx - the Vert.x instance
        address - the address to listen on the event bus
        localOnly - whether the consumer should only receive messages sent from this Vert.x instance
        Returns:
        the handler