Reputation: 1322
I currently have a task queue with tasks running. This is what my dashboard looks like:
When I click on 'View' (under logs on the far right), it takes me to a page that looks like this:
I am certain that there should be some logs, considering all of these tasks have been retried multiple times. I am wondering if there is some step I should have taken to enable logging on this queue?
Upvotes: 1
Views: 506
Reputation: 4741
You can enable logging by running
gcloud beta tasks queues create [QUEUE_ID] --log-sampling-ratio=1.0
You can read more here.
Hope this helps.
Upvotes: 1