You can use Cloud Logging with Cloud Tasks queues.
Turning on logging
Console
Visit the Cloud Tasks console page.
Find the queue for which you want to turn on logging and click the name.
On the Queue Details page, select the Logs tab.
Click Enable logs and confirm.
gcloud
Cloud Logging can be turned on using a flag with the create
command or
the update
command:
gcloud tasks queues create QUEUE_ID --log-sampling-ratio=LOG_SAMPLING_RATION
or
gcloud tasks queues update QUEUE_ID --log-sampling-ratio=LOG_SAMPLING_RATIO
Replace the following:
QUEUE_ID
: the ID of your queueLOG_SAMPLING_RATIO
: the fraction of the operations logged. Any value between1.0
and0.0
logs that fraction of operations. To log all operations, set it to1.0
. To log no operations, set it to0.0
(this is the default).
Turning off logging
Console
Visit the Cloud Tasks console page.
Find the queue for which you want to turn off logging and click the name.
On the Queue Details page, select the Logs tab.
Click the three dot icon and Disable logs. Confirm.
gcloud
Turn off logging by setting the flag to 0.0
.
gcloud tasks queues update QUEUE_ID --log-sampling-ratio=0.0
Replace QUEUE_ID
with the ID of your queue.
Logged operations
The following operations are logged:
- Task Operations
- CreateTask
- DeleteTask
- Attempt Operations
- AttemptDispatch
- AttemptResponse
Viewing logs
To see the logs, go to the Logging > Logs Explorer page in the Google Cloud console:
For information on viewing logs in the Logs Explorer, see
Using the Logs Explorer.