---
title: "Scheduled Cron Jobs logs"
date: "2024-02-14T06:18:38+00:00"
summary: "Monitor and analyze your scheduled cron jobs with detailed logs, including timestamps and unique identifiers for precise tracking."
image:
type: "page"
url: "/acquia-cloud-platform/scheduled-cron-jobs-logs"
id: "54709ec3-c406-410c-91af-f6d9d14fa060"
---

The _Scheduled Cron Jobs log_ records all messages sent to the standard output stream (STDOUT) during Cronjob execution. 

Parsing the log file
--------------------

The following line is a representative example of the data written into your Scheduled Cron Jobs log:

    2025-05-19T05:35:42.591265047Z command-5578dd9cd7-dxhwd: <log_message>

Position

Data

Description

0

`2025-05-19T05:35:42.591265047Z`

The date and time the request was received by the backend infrastructure in the rfc3339 format. This field has nanosecond precision.

1

`command-43a2da6e-94c7-48dc-be21-4556fdbef3b3-29129055-vl4wf`

The pod name that contains the cron job UUID. You can use the following regex to retrieve the UUID:   
`command-(?<uuid>[0-9a-f\-]+)-[0-9]+-[0-9a-z]+`

Use the UUID to precisely trace each log back to its originating cron job.

2

`log_message`

The log message.