API Stability Long-Term

The createAlert() GraphQL mutation is used to create an alert in LogScale.

For more information on creating alerts, see the Create triggers documentation page. You may also want to look at the Triggers page for related information.

Syntax

Below is the syntax for the createAlert() mutation field:

graphql
createAlert(
      input: CreateAlert!
   ): Alert!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  createAlert(input:
        {viewName: "humio", 
         name: "sneak-alert",
         queryString: "@host=*sneak*"
         queryStart: "1day",
         actions: "email-admin",
         throttleTimeMillis: 180000,
         queryOwnershipType: Organization
        } )
  { id, name }
}
Example Responses
Show:
json
{
  "data": {
    "createAlert": {
      "id": "KgWTtXgAwdIGngp3vQ0HTlyefUAWhMXf",
      "name": "sneak-alert"
    }
  }
}

Given Datatypes

For createAlert, there are several parameters that may be given. Below is a list of them along with a description of each:

Table: CreateAlert

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Mar 28, 2025
actions[string]yes Long-TermList of unique identifiers of actions to execute on query result.
descriptionstringyes Long-TermDescription of the alert.
enabledbooleanyestrueLong-TermFlag indicating whether the alert is enabled.
labelsbooleanyes[ ]Long-TermLabels attached to the alert.
namestringyes Long-TermName of the alert.
queryOwnershipTypeQueryOwnershipType UserLong-TermOwnership of the query run by this alert. If value is User, ownership will be based on the runAsUserId field. See QueryOwnershipType.
queryStartstringyes Long-TermStart of the relative time interval for the query.
queryStringstringyes Long-TermLogScale query to execute.
runAsUserIdstring  Long-TermThe alert will run with the permissions of the user corresponding to this ID if the queryOwnershipType field is set to User. If the queryOwnershipType is set to Organization, whilst runAsUserId is set, this will result in an error. If not specified, the alert will run with the permissions of the calling user. It requires the 'ChangeTriggersToRunAsOtherUsers' permission to set this field to a user id different from the calling user.
throttleFieldstringyes Long-TermField on which to throttle.
throttleTimeMillisstringyes Long-TermThrottle time in milliseconds.
viewNamestringyes Long-TermName of the view of the alert.

Returned Datatypes

The returned datatype alert) has several parameters. Below is a list of them along with a description of each:

Table: Alert

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Mar 28, 2025
actionsstringyes Long-TermList of identifiers for actions to fire on query result.
actionsV2[Action]yes Long-TermList of unique identifiers for actions to fire on query result. See Action.
allowedActions[AssetAction]yes PreviewList of allowed actions. The is a preview; it may be changed. See AssetAction.
descriptionstring  Long-TermDescription of alert.
displayNamestringyes Long-TermName of the alert.
enabledbooleanyes Long-TermFlag indicating whether the alert is enabled.
idstringyes Long-TermThe identifier of the alert.
isStarredbooleanyes Long-Term

Whether the calling user has starred the alert.

This has been deprecated and is no longer in use and has no effect. It will be removed in version 1.213.

labels[string]yes Long-TermLabels attached to the alert.
lastErrorstring  Long-TermLast error encountered while running the alert.
lastWarnings[string]yes Long-TermLast warnings encountered while running the alert.
namestringyes Long-TermThe name of the alert.
packagePackageInstallation  Long-TermA package installation. See PackageInstallation.
packageIdVersionedPackageSpecifier  Long-TermThe unique identifier of the package installed, if one was used. VersionedPackageSpecifier is a scalar.
queryOwnershipQueryOwnershipyes Long-TermOwnership of the query run by the alert. See QueryOwnership.
queryStartstringyes Long-TermStart of the relative time interval for the query.
queryStringstringyes Long-TermLogScale query to execute.
resourcestringyes Short-TermThe resource identifier for the alert.
runAsUserUser  Long-TermIdentifier of user by which the alert is run. See User.
throttleFieldstring  Long-TermField on which to throttle alert.
throttleTimeMillislongyes Long-TermThrottle time in milliseconds.
timeOfLastTriggerlong  Long-TermUNIX timestamp for when the alert was last triggered.
yamlTemplatestringyes Long-TermA YAML formatted string that describes the alert.