in few last lines I have problem : ``` export TIMESTAMP=$(date -d "-2 hour" +%Y-%m-%dT%k:%M:00Z) export BATCH_ID=$(gcloud logging read "resource.type=\"gae_app\" AND resource.labels.module_id=\"list-metrics\" AND logName=\"projects/$PROJECT_ID/logs/appengine.googleapis.com%2Frequest_log\" AND protoPayload.line.logMessage:\"batch_id:\" AND timestamp >= \"$TIMESTAMP\"" --limit 1 --format json | grep "batch_id:" | awk '{ print substr($3,1,32); }') ``` output from second line is : ``` ERROR: (gcloud.logging.read) INVALID_ARGUMENT: The value '2020-01-27t 8:05:00z' is of incorrect type. ```
in few last lines I have problem :
output from second line is :