How do i get the analytics for this?

My application logs the status of each step while execution. Can kibana tell me the how many executions have passed or failed based on the analysis of step status. For example if one of the steps have failed then the execution is failed.

@kiran_kumar_sukumar

How is your mapping of your documents?

Are your documents something like?

{
    executionId: string,
    stepNr: int
    status: [true|false]
} 

?

If so, you can do a term-aggregation on executionId, and filter on status=false. This should list you all failed jobs.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.