Class AutomationQueueInsightResource
java.lang.Object
com.codebarrel.jira.plugin.automation.rest.AutomationQueueInsightResource
@Path("insight/automation-queue")
@Consumes("application/json")
@Produces("application/json")
public class AutomationQueueInsightResource
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.ResponsegetAutomationQueueInsightByEventType(int limit) Get the automation queue insight with events grouped by event type.jakarta.ws.rs.core.ResponsegetAutomationQueueInsightByRule(int limit) Get the automation queue insight with events grouped by rule.
-
Constructor Details
-
AutomationQueueInsightResource
-
-
Method Details
-
getAutomationQueueInsightByEventType
@GET @Path("by-event-type") public jakarta.ws.rs.core.Response getAutomationQueueInsightByEventType(@QueryParam("limit") @DefaultValue("20") int limit) Get the automation queue insight with events grouped by event type. The API is for troubleshooting purposes and is available only for Jira admins. -
getAutomationQueueInsightByRule
@GET @Path("by-rule") public jakarta.ws.rs.core.Response getAutomationQueueInsightByRule(@QueryParam("limit") @DefaultValue("20") int limit) Get the automation queue insight with events grouped by rule. The API is for troubleshooting purposes and is available only for Jira admins.
-