Skip to content

Commit

Permalink
Use arrivalTime to avoid missing events
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsan-tzur committed Jan 10, 2025
1 parent 6e21d25 commit 0f47b53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def main(mytimer: func.TimerRequest) -> None:
except Exception as err:
logging.error("CyberArkEPMServerURL is invalid")
return
filter_date = '{"filter": "eventDate GE ' + str(start_time) + ' AND eventDate LE ' + end_time + '"}'
filter_date = '{"filter": "arrivalTime GE ' + str(start_time) + ' AND arrivalTime LE ' + end_time + '"}'
aggregated_events = []
raw_events = []
aggregated_policy_audits = []
Expand Down

0 comments on commit 0f47b53

Please sign in to comment.