Package ratpack.dropwizard.metrics
Class MetricsWebsocketBroadcastHandler
- java.lang.Object
-
- ratpack.dropwizard.metrics.MetricsWebsocketBroadcastHandler
-
- All Implemented Interfaces:
Handler
public class MetricsWebsocketBroadcastHandler extends java.lang.Object implements Handler
A Handler that broadcasts metric reports via web sockets.This handler should be bound to an application path, and most likely only for the GET method…
import ratpack.dropwizard.metrics.MetricsWebsocketBroadcastHandler; import static org.junit.Assert.*; assertTrue(chain instanceof ratpack.handling.Chain); chain.get("admin/metrics", new MetricsWebsocketBroadcastHandler());
-
-
Constructor Summary
Constructors Constructor Description MetricsWebsocketBroadcastHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handle(Context context)
Handles the context.
-
-
-
Method Detail
-
handle
public void handle(Context context) throws java.lang.Exception
Description copied from interface:Handler
Handles the context.- Specified by:
handle
in interfaceHandler
- Parameters:
context
- The context to handle- Throws:
java.lang.Exception
- if anything goes wrong (exception will be implicitly passed to the context'sContext.error(Throwable)
method)
-
-