I wanted to export the logs of my AppEngine service to the cloud storage bucket. Hence, I created the log sink & I gave the destination of my cloud storage bucket.The problem is that logs are not getting exported as per my inclusion filter condition. Inclusion Filter:-
resource.type="gae_app"
resource.labels.module_id="cbd-iris-app"
timestamp>="2021-07-17T01:20:00Z" AND timestamp<="2021-07-17T16:30:00Z"
As per the filter, I am expecting the logs to be between the timestamps mentioned in code. But, instead the logs which are getting stored are of current date & time. What exactly is wrong here ..