If I execute the below query for selected time like 20 hours its taking longer time and calling events are 2,72,000 .How to simplify this query for getting the result in 15 to 20 seconds. index=asvservices authenticateByRedirectFinish
(*)
| join request_correlation_id
[
search
index= asvservices stepup_validate ("isMatchFound\\\":true")
| spath "policy_metadata_policy_name" | search "policy_metadata_policy_name" = stepup_validate
| fields "request_correlation_id"
]
| spath "metadata_endpoint_service_name"
| spath "protocol_response_detail"
| search "metadata_endpoint_service_name"=authenticateByRedirectFinish
| rename "protocol_response_detail" as response
... View more