Skip to main content
GoreloAction is a command-line utility that enables PowerShell scripts to interact with Gorelo. It currently supports:
  • Generating alerts
  • Writing to custom asset fields.

Use GoreloAction

Run the following command in your terminal, and replace <String> with the parameter values:
GoreloAction -Alert -Severity <Int> -Name <String> -Description <String> -Suppress <Int>

Parameters

OptionDescription
-AlertSpecifies alert creation mode.
-SeveritySets the severity level (Integer)
  • 1: Critical
  • 2: Error
  • 3: Warning
-NameTitle/name of the alert in Gorelo.
-DescriptionDetailed description of the alert in Gorelo (optional).
-SuppressAlert suppression duration in hours (optional and defaults to 4, use 0 for no suppression).

Example

GoreloAction -Alert -Severity 1 -Name "NameHere" -Description "DescriptionHere" -Suppress 0