Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个任务队列正在运行。这是我的仪表板的样子:
当我单击“查看”(在最右侧的日志下)时,它会将我带到一个如下所示的页面:
考虑到所有这些任务都已重试多次,我确信应该有一些日志。我想知道是否应该采取一些步骤来启用此队列的日志记录?
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.