Hello
I’m trying to use the batch statistics api requests.
It seems like the requests are being sent but sometimes nothing is being sent to the s3 bucket (sometimes yes).
Is there any way to follow the request? to check if is running or if it got stuck?
when I try to check with oauth.request it is on status “CREATED” for very long time, and I have no way to know if is working or not and if not, what is the reason.
# Get status information about a batch statistical request
response = oauth.request("GET", f"https://services.sentinel-hub.com/api/v1/statistics/batch/{request_id}/status")
response.json()
{‘id’: ‘1234-request-id’,
‘status’: ‘CREATED’,
‘completionPercentage’: 0,
‘costPU’: 0.0,
‘created’: ‘2022-06-15T10:34:58.285972Z’}
my end goal is to be able to understand if the requests are running or something went wrong.