This section walks you through creating and deploying a process under the Automation category using Process Automation 2.0 in OpsRamp. It provides a process definition example and highlights commonly used definition tools. The example focuses on automating a resource patching workflow and includes the following steps:

  1. A Timer Start Event triggers the process at scheduled intervals.
  2. Once triggered, a resource patch script is executed.
  3. If the script completes successfully, the patch is validated.
  4. If the script fails, an alert is generated to notify the appropriate team.
  5. Upon successful validation, an email notification is sent to the DevOps team.

The visualization below demonstrates a simple automation process that you will create in this tutorial. Task and event names are for illustration purpose only, you can modify them to suit your specific requirements.

Process Definition Example

While following this tutorial, refer to the Process Definition Reference for detailed information about each component type and the properties available for customization.

Prerequisites

Ensure the Remediation and Automation package is enabled for your client account.

Step 1: Create the Process Definition

To add a new process definition,

  1. Click + ADD. The ADD PROCESS DEFINITION page is displayed.
  2. In the BASIC DETAILS tab, enter the required details and select Category as Automation.
  3. Click Next. The WORKFLOW tab is displayed.

Step 2: Configure the Start Events

Every process must begin with a StartEvent, which defines how the process is triggered. You can choose between a Timer Start Event or an Alert Start Event.This example demonstrates a Timer Start Event:

  1. Click the Create StartEvent symbol from the component tools menu and place it on the canvas.

  2. Click the Change type (wrench) icon and select Timer Start Event.

  3. Click the Timer Start Event symbol to display the start event properties.

  4. In the Properties view, enter a start event Name. The ID property is automatically populated.

  5. Click Start Date and select a calendar date and time of day as the starting condition for the automated patch process. Click OK to continue through each dialog.

  6. Choose an Ends option to specify the end of automated patch processing. Select from:

    • Never ends
    • ends After a number of occurrences
    • ends On a specific date and time
  7. From Recurrence Pattern, select the frequency unit (e.g., minutes, hours, days, weeks, months) and then enter the event frequency in Repeats Every.

    The following options are available:

    Recurrence PatternRepeats Every
    (Choose Value)
    Description
    Minute1 to 60 minutesSelect the number of minutes to trigger the event after the specified time.
    Hourly1 to 24 hoursSelect the Hourly recurrence to trigger the event after the specified number of hours.
    Daily1 to 365 daysSet the frequency for the event to trigger after the specified number of days.
    WeeklySunday, Monday, Tuesday, Wednesday, Thursday, Friday, SaturdaySelect one or more weekdays on which you want to trigger the event. For example, select Tuesday and Thursday and the time as 6 PM. The event is triggered every Tuesday and Thursday at 6 PM.
    Monthly1 to 12 monthsSet the frequency on a monthly basis. For example, select 2 as the recurrence value. The event is triggered after two months from the date and time specified in the Start Date edit window.

Step 3: Add the Task and Configure Task Properties

  1. Click the Create Task icon in the component tools menu and place the task onto the canvas. Alternatively, select the StartEvent symbol you just placed and click the Append Task icon to add a task.
  2. For each new component, either select and place it from the component tools menu or select an existing component on the canvas and choose the next component in the workflow. Adding components from existing ones automatically connects them.
  3. For the task, click the Change type icon and choose Script Task.
  4. Click the task symbol on the canvas to display the task properties.
  5. Enter the task Name. The name appears in the task symbol as you type. The task ID fills in automatically.
  6. Select Agent or Agentless as the script platform.
  7. Click the Script Name edit box and select a script from the list.
  8. For Resource ID, enter a $ character to display the available input sources for the task. Choose the timer start event resource.
    For example, if you name the timer start event Patch Start Timer, select Patch Start Timer from the list of available input sources. In this case, you see only one available input source.
  1. Select Default user or Other user as the user with run script privilege.

Step 4: Add the Gateways

Use a gateway to specify workflow branching. An exclusive gateway provides conditional branching and a parallel gateway provides for concurrent processing paths.

  1. Click the on-canvas script task and select the Append Gateway icon. This renders an exclusive gateway component by default.
  2. Click the gateway component to edit the properties.
  3. Enter a Name property. The ID property is automatically populated.
  4. Enable the option Enable Loop Count and select the values from the drop down to configure the repeat count value.


Step 5: Configure the Conditional Tasks

Define two tasks, one for each gateway path. The task that executes depends on satisfying the gateway conditions.

For the first task, define the task to handle a successful patch operation:

  1. Click the gateway component and select the Append Task icon. This renders a task for post-patch validation.
  2. For the task, click the Change type icon and choose Script Task.
  3. Click the task symbol on the canvas to display the task properties.
  4. Enter the task Name. The task ID is automatically populated.
  5. Select Agent or Agentless as the script platform.
  6. Click the Script Name edit box and select from the list of available scripts.
  7. For Resource ID, enter a $ character to display the list of available input sources to the task. Choose the name of the patching script task previously defined.
  8. Select Default user or Other user as the user with run script privilege.

For the second task, define the task to handle a failed patch operation:

  1. Click the gateway component, again, and select the Append Task icon. This renders a task to create an alert if the patch operation failed.

  2. For the task, click the Change type icon and choose Service Task to create the alert.

  3. Click the task symbol on the canvas to display the task properties.

  4. Enter the task Name. The task ID is automatically populated.

  5. From the Service menu, select a Platform Service for the alert notification.

  6. From the Task menu, select Create Alert.

  7. Enter the required alert information.

    You can manually enter the information in each field or enter $ to display the list of valid values. For example, the Create Alert option requires a Current State value. Enter $ to display the possible process states. Choose the name of the first task created in this example because that is where the patch operation failed.

Step 6: Configure the Boundary Event

Use the Create Intermediate/Boundary Event to define intermediate start, stop, or timer events.

To define the Boundary Event, follow the below steps:

  1. From the component tools menu, click the Create StartEvent symbol and drag it to the canvas.
  2. Click the Create StartEvent and select the Append Task.
    patch management
  3. Click the Append Task and select the Append EndEvent.
  4. From the component tools menu, click the Create Task symbol and drag it to the canvas.
  5. Connect the Create StartEvent and Create Task using sequence arrow.
  6. Connect the Create Task and Append EndEvent using sequence arrow.
  7. Click the Create Task > Wrench Icon and then select the Service Task.
  8. From the component tools menu, click the Create Intermediate/Boundary Event symbol and drag it to one of the Append Task corners.
  9. Click the Create Intermediate/Boundary Event > Wrench Icon and choose one of the following options:
    • Timer Boundary Event
    • Error Boundary Event
patch management
  1. Now, define the Service Task properties and click Save & Deploy.

Step 7: Add the Completion Task and End Events

After successful patch validation, a sent-type task is needed to send an email notification to DevOps.

  1. Click the previously created validation task and select the Append Task icon.
  2. For the newly created task, click the Change type icon and choose Send Task.
  3. Click the task symbol on the canvas to display the send task properties.
  4. Enter the task Name. The task ID is automatically populated.
  5. For the Input field, enter a $ character to display the list of available input sources. Choose the name of the patch validation task previously defined.
  6. To specify the Message Recipient, click Add/Modify.
  7. Select a recipient from the list and click Add.
  8. Select the Notification Template that has been created. Refer the Document for instructions on how to create a notification templates.
  9. Select a Notification Priority.
patch management

Complete the process definition by defining an EndEvent.

  1. Click the email notification task and select the Append EndEvent icon.
  2. Click the end event symbol on the canvas to display the event properties.
  3. Enter the event Name. The task ID is automatically populated.

Connect the failed path handler task to the end event:

  1. From the component tools menu, select Activate the global connect tool connector.
  2. Click the script task defined to create an alert.
  3. Click the EndEvent symbol. This renders a connector between the task and end event.
  4. Click the connector and in the Properties view enter a connector Name.

Click Save or Save & Deploy to save or save and deploy the new process definition. All required properties must be specified and a complete process workflow must be defined before you can save the definition.

Once the defined process is saved, it will be available on the Process Definitions home page.

patch management