# Audit log streaming
FEATURE AVAILABILITY
Audit log streaming is included in specific pricing plans for direct customers and is available to Embedded partners and their end customers for an additional fee. Refer to your pricing plan and contract to learn more.
The Workato platform automatically stores all Activity audit logs for a period of one year from the date of each event. This ensures you have ample time to review and analyze your activity logs for security and operational insights.
In addition to retaining audit logs in the Workato platform itself, you can also choose to stream these logs to a specified destination.
When you enable audit log streaming, Workato stores the job history of all your recipes, as well as login and user activity, in an Amazon S3 bucket or any REST endpoint. You can use any log service provider (such as Sumo Logic (opens new window), Datadog (opens new window), or Splunk (opens new window)).
Workato creates a JSON file for each event. The file size varies from 1 KB to 1 MB based on the details that are present in the logs.
Workato retains your audit logs for the designated retention period for your account even if audit log streaming is not enabled. This retention is part of our commitment to data security and operational transparency.
# Which audit log streaming destinations does Workato support?
Workato supports the following streaming destinations:
- Amazon S3
- Azure Monitor
- Azure Blob Storage
- Cloud-based logging service, including Google Cloud Storage Buckets
# Audit log size
Log file size varies from 1 KB to 1 MB based on the details that are present in the logs.
The file size limit for logs is 40 MB.
When streaming full job details, the system does not send step-specific log lines if the overall file size exceeds 40 MB.
If a file exceeds 40 MB, the system still sends contextual job information, such as user_id
, recipe_id
, and time_executed
. However, the “lines” column displays the default text, Log lines exceed size limit
.
# Set up audit log streaming
Sign in to your Workato account. The Orchestrate platform displays by default.
Go to Workspace admin > Settings > Log streaming (opens new window) and select Set up audit log streaming:
Select the audit log destination.
Configure the streaming connection and options.
Choose the events to include in your audit log stream.
Consult Audit log streaming types for more information about events.
Optional. Customize a log message if required.
Select Save.
# Does data masking apply to audit log streaming?
Yes. When data masking is enabled, Workato doesn't log or stream the input or output of any trigger or action. Instead, a placeholder replaces the data in both:
- Workato UI logs
- Audit log streaming destinations
Refer to the Enable data masking section for instructions on enabling this feature.
# How masked data appears in job logs
When job logs are streamed to an external logging service through audit log streaming, masked data remains hidden. Instead of displaying sensitive information, Workato replaces it with a "masked"
placeholder.
The following example illustrates how masked data appears in a job details log:
"lines": [
{
"input": {"data": "masked"},
"output": {"data": "masked"},
"adapter_name": "timer",
"adapter_operation": "trigger_event",
"line_stat": {
"details": [
{
"name": "execution_time",
"average": 0.002,
"total": 0.002,
"min": 0.002,
"max": 0.002,
"count": 1
}
],
"total": 0.002
},
"recipe_line_number": 1,
"mask_data": true
}
]
Refer to the Activity audit log file details and sample data section for a complete example of a job details log.
Last updated: 3/26/2025, 2:43:27 PM