Search in sources :

Example 1 with GroupedCorrelationEvents

use of com.hortonworks.streamline.streams.common.event.correlation.GroupedCorrelationEvents in project streamline by hortonworks.

the class TopologyTestRunResource method getGroupedCorrelatedEventsOfTestRunTopologyHistory.

@GET
@Path("/topologies/{topologyId}/testhistories/{historyId}/events/correlated/{rootEventId}")
public Response getGroupedCorrelatedEventsOfTestRunTopologyHistory(@Context UriInfo urlInfo, @PathParam("topologyId") Long topologyId, @PathParam("historyId") Long historyId, @PathParam("rootEventId") String rootEventId, @Context SecurityContext securityContext) throws Exception {
    SecurityUtil.checkRoleOrPermissions(authorizer, securityContext, Roles.ROLE_TOPOLOGY_USER, Topology.NAMESPACE, topologyId, READ);
    File eventLogFile = getEventLogFile(topologyId, historyId);
    List<EventInformation> events = eventLogFileReader.loadEventLogFile(eventLogFile);
    GroupedCorrelationEvents groupedEvents = new CorrelatedEventsGrouper(events).groupByComponent(rootEventId);
    if (!groupedEvents.getAllEvents().containsKey(rootEventId)) {
        throw BadRequestException.message("Can't find provided root event " + rootEventId + " from events.");
    }
    return WSUtils.respondEntity(groupedEvents, OK);
}
Also used : CorrelatedEventsGrouper(com.hortonworks.streamline.streams.common.event.correlation.CorrelatedEventsGrouper) EventInformation(com.hortonworks.streamline.streams.common.event.EventInformation) GroupedCorrelationEvents(com.hortonworks.streamline.streams.common.event.correlation.GroupedCorrelationEvents) File(java.io.File) Path(javax.ws.rs.Path) GET(javax.ws.rs.GET)

Aggregations

EventInformation (com.hortonworks.streamline.streams.common.event.EventInformation)1 CorrelatedEventsGrouper (com.hortonworks.streamline.streams.common.event.correlation.CorrelatedEventsGrouper)1 GroupedCorrelationEvents (com.hortonworks.streamline.streams.common.event.correlation.GroupedCorrelationEvents)1 File (java.io.File)1 GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1