How we can check the failed scheduled aggregations Via API or is there any search query to get failed aggregation list

How we can check the failed scheduled aggregations Via API or is there any search query to get failed aggregation list

Hi @mrahulbb,

Try using the below Search queries and see if it helps :

name:"Aggregate Source*" AND NOT (status:PASSED OR status:STARTED)

name:"Aggregate Source*" AND status:FAILED

You can look for specific source names as well :

name:"Aggregate Source*" AND status:FAILED AND (attributes.sourceName:"source1" OR attributes.sourceName:"source2")

thanks and can we get today list, and from now to one week back list

Hi @mrahulbb,

You can add an extra AND condition to the above query

created:[now-7d TO now]

created:[now-1d TO now]

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