<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
How to Search System Log for Actions Taken by Okta Workflows
Workflows
Overview

This article describes how to search in the system log (syslog) for actions taken by Okta Workflows.

Applies To
  • Okta Workflows
  • System log
Solution

Use the following syslog query from the Okta Admin Console > Reports > System Log tab to filter for actions taken by Okta Workflows at runtime:

client.userAgent.rawUserAgent eq "Azuqua"

 Some examples of actions this query will show:

  • Workflows creates a new user
  • Workflows updates a user
  • Workflows adds a group or app
  • Workflows removes a group or an app

For actions that occur at design time from within the Workflows console, like creating or saving a flow, the system logs can be searched by event type. The Okta Workflows Event Types can be found in the Okta Developer Reference documentation. The following syslog query uses the "sw" (starts with) operator to find all Workflows events during the date range specified for the query:

eventType sw "workflows.user"

To search for specific design-time actions, use the "eq" (equals) operator and the exact event name:

eventType eq "workflows.user.flow.save"

Related References

Loading
How to Search System Log for Actions Taken by Okta Workflows