Headless Actions

Headless (non-interactive) mode is supported only by actions that may execute "off-line", without interaction with an operator. Headless execution is supported by Alerts and Scheduled Jobs.

In this mode, the result of every UI procedure is predefined when the action is configured for non-interactive execution. These pre-defined results are configured during the headless action execution setup, e.g. when configuring an alert or a scheduler job.

All action output is redirected into server log and/or converted into context events.

Input Parameter Bindings

When editing pre-defined parameters of a headless action in the Data Table Editor, it's possible to configure table bindings. When a headless action is executed by the server, the latter evaluates all bindings contained in its pre-defined parameters, filling them with the some actual or context-sensitive information.

Example: It's possible to schedule Export Report to Server File action of a Recent Alerts report and use bindings to generate a different file name each time the report is being exported. In this case, the following binding should be added to the Input: Export to Server File table:

  • Target: File Path (file), String

  • Expression: "alerts_report_" + year(now()) + "_" + month(now()) + "_" + day(now()) + ".pdf"

Example: We can execute an external application upon alert by adding Execute Application action to the list of alert's corrective actions. However, it's often necessary to pass alert message and other alert parameters to this application. In this case, the following and similar bindings should be added to the Input: Execute Application or Operating System Command table:

  • Target: Command (command), String

  • Expression: """ + cell({env/parameters}, "message") + """

This expression refers parameters environmental variable those value is a Data Table associated with alert event.

Example: To send an e-mail message upon an alert with custom text that describes alert cause, add Send E-mail automatic corrective action to the alert, open its input parameters, get inside Input: Send E-Mail table:

  • Target: Message (message), String

  • Expression: "An alert was raised, it is caused by value of custom field: " + cell(cell({env/parameters},'data'),'customField')

This expression refers parameters environmental variable those value is a Data Table associated with alert event. It then uses first (inner) cell() function to extract data table that corresponds to value of variable (or data of an event) that has caused the alert. Another (outer) cell() function extracts custom field out of this data table. The field value is appended to e-mail message text.

Input Parameter Bindings Evaluation

The execution environment of action parameter bindings allow accessing:

  • Data from any server context

  • Initial parameters of an action being executed

Input Parameter Bindings Resolution Environment:

Default Context

Context the action is executed from.

Default Data Table

Current table, i.e. the table on that the bindings are evaluated.

Default Row

Current row, if the binding does not refer a specific row and is evaluated for each table row individually. Zero otherwise.

Environment Variables

Variable Name

Value Type

Description

parameters

Data Table

Action initial parameters:

  • Alert event's Data Table if action is executed upon alert

  • Not defined if action is executed by scheduler

id

Long

Available only if action is executed upon an alert. Represents unique ID of alert event.

context

String

Available only if action is executed upon an alert. Represents the path of thealert context.

event

String

Available only if action is executed upon an alert. Represents alert event name (i.e. alert).

level

Integer

Available only if action is executed upon an alert. Represents alert eventlevel.

time

Date

Available only if action is executed upon an alert. Represents alert event timestamp.

acknowledgements

Data Table

Available only if action is executed upon an alert. Represents alert eventacknowledgements table.

enrichments

Data Table

Available only if action is executed upon an alert. Represents alert eventenrichments table.

Was this page helpful?