Skip to content

Workers Logpush

Cloudflare Logpush supports the ability to send Workers Trace Event Logs to a supported destination. Worker’s Trace Events Logpush includes metadata about requests and responses, unstructured console.log() messages and any uncaught exceptions. This product is available on the Workers Paid plan. For pricing information, refer to Pricing.

Verify your Logpush access

To configure a Logpush job, verify that your Cloudflare account role can use Logpush. To check your role:

  1. Log in the Cloudflare dashboard.
  2. Select your account and scroll down to Manage Account > Members.
  3. Check your account permissions. Roles with Logpush configuration access are different than Workers permissions. Super Administrators, Administrators, and the Log Share roles have full access to Logpush.

Alternatively, create a new API token scoped at the Account level with Logs Edit permissions.

Create a Logpush job

Via the Cloudflare dashboard

To create a Logpush job in the Cloudflare dashboard:

  1. Log in to the Cloudflare dashboard, and select your account.

  2. Select Analytics & Logs > Logs.

  3. Select Add Logpush job.

  4. Select Workers trace events as the data set > Next.

  5. If needed, customize your data fields. Otherwise, select Next.

  6. Follow the instructions on the dashboard to verify ownership of your data’s destination and complete job creation.

Via cURL

The following example sends Workers logs to R2. For more configuration options, refer to Enable destinations and API configuration in the Logs documentation.

Terminal window
curl "https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/logpush/jobs" \
--header 'X-Auth-Key: <API_KEY>' \
--header 'X-Auth-Email: <EMAIL>' \
--header 'Content-Type: application/json' \
--data '{
"name": "workers-logpush",
"output_options": {
"field_names": ["Event", "EventTimestampMs", "Outcome", "Exceptions", "Logs", "ScriptName"],
},
"destination_conf": "r2://<BUCKET_PATH>/{DATE}?account-id=<ACCOUNT_ID>&access-key-id=<R2_ACCESS_KEY_ID>&secret-access-key=<R2_SECRET_ACCESS_KEY>",
"dataset": "workers_trace_events",
"enabled": true
}' | jq .

In Logpush, you can configure filters and a sampling rate to have more control of the volume of data that is sent to your configured destination. For example, if you only want to receive logs for requests that did not result in an exception, add the following filter JSON property below output_options:

"filter":"{\"where\": {\"key\":\"Outcome\",\"operator\":\"!eq\",\"value\":\"exception\"}}"

Enable logging on your Worker

Enable logging on your Worker by adding a new property, logpush = true, to your wrangler.toml file. This can be added either in the top-level configuration or under an environment. Any new Workers with this property will automatically get picked up by the Logpush job.

# Top-level configuration
name = "my-worker"
main = "src/index.js"
compatibility_date = "2022-07-12"
workers_dev = false
logpush = true
route = { pattern = "example.org/*", zone_name = "example.org" }

Configure via multipart script upload API:

Terminal window
curl --request PUT \
"https://api.cloudflare.com/client/v4/accounts/{account_id}/workers/scripts/{script_name}" \
--header "Authorization: Bearer <API_TOKEN>" \
--form 'metadata={"main_module": "my-worker.js", "logpush": true}' \
--form '"my-worker.js"=@./my-worker.js;type=application/javascript+module'

Limits

The logs and exceptions fields have a combined limit of 16,384 characters before fields will start being truncated. Characters are counted in the order of all exception.names, exception.messages, and then log.messages.

Once that character limit is reached all fields will be truncated with "<<<Logpush: *field* truncated>>>" for one message before dropping logs or exceptions.

Example

To illustrate this, suppose our Logpush event looks like the JSON below and the limit is 50 characters (rather than the actual limit of 16,384). The algorithm will:

  1. Count the characters in exception.names:
    1. "SampleError" and "AuthError" as 20 characters.
  2. Count the characters in exception.message:
    1. "something went wrong" counted as 20 characters leaving 10 characters remaining.
    2. The first 10 characters of "unable to process request authentication from client" will be taken and counted before being truncated to "unable to <<<Logpush: exception messages truncated>>>".
  3. Count the characters in log.message:
    1. We’ve already begun truncation, so "Hello " will be replaced with "<<<Logpush: messages truncated>>>" and "World!" will be dropped.

Sample Input

{
"Exceptions": [
{
"Name": "SampleError",
"Message": "something went wrong",
"TimestampMs": 0
},
{
"Name": "AuthError",
"Message": "unable to process request authentication from client",
"TimestampMs": 1
},
],
"Logs": [
{
"Level": "log",
"Message": ["Hello "],
"TimestampMs": 0
},
{
"Level": "log",
"Message": ["World!"],
"TimestampMs": 0
}
]
}

Sample Output

{
"Exceptions": [
{
"name": "SampleError",
"message": "something went wrong",
"TimestampMs": 0
},
{
"name": "AuthError",
"message": "unable to <<<Logpush: exception messages truncated>>>",
"TimestampMs": 1
},
],
"Logs": [
{
"Level": "log",
"Message": ["<<<Logpush: messages truncated>>>"],
"TimestampMs": 0
}
]
}