Class RuntimeInspector
- java.lang.Object
-
- org.apache.camel.k.runtime.support.RuntimeInspector
-
@Path("/runtime") @ApplicationScoped public class RuntimeInspector extends Object
-
-
Constructor Summary
Constructors Constructor Description RuntimeInspector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
bean(String name)
javax.json.JsonObject
inspect()
String
property(String name)
javax.json.JsonArray
routeOutputs(String name)
-
-
-
Method Detail
-
inspect
@GET @Path("/inspect") @Produces("application/json") public javax.json.JsonObject inspect()
-
property
@GET @Path("/property/{name}") @Produces("text/plain") public String property(@PathParam("name") String name)
-
bean
@GET @Path("/registry/beans/{name}") @Produces("application/json") public String bean(@PathParam("name") String name)
-
routeOutputs
@GET @Path("/route-outputs/{name}") @Produces("application/json") public javax.json.JsonArray routeOutputs(@PathParam("name") String name)
-
-