The createScheduledSearch() GraphQL mutation may be used to create a scheduled search in LogScale.

For more information on scheduled searches, see the Scheduled Searches documentation page. Also, look at the Searching Data documentation page as it relates to saving queries.

Syntax

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

graphql
createScheduledSearch(
      input: CreateScheduledSearch!
   ): ScheduledSearch!

Given Datatypes

For the given datatype, createScheduledSearch(), there are several parameters that may be given. Below is a list of them along with their datatypes and a description of each:

Table: CreateScheduledSearch

ParameterTypeRequiredDefaultDescription
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: Sep 17, 2024
actions[string]yes List of Ids for actions to fire on query result.
backfillLimitintegeryes User-defined limit, which caps the number of missed searches to backfill, e.g. in the event of a shutdown.
descriptionstringyes Description of the scheduled search.
enabledboolean  Flag indicating whether the scheduled search is enabled.
labels[string]yes Labels attached to the scheduled search.
namestringyes Name of the scheduled search.
queryEndbooleanyes End of the relative time interval for the query.
queryOwnershipTypeQueryOwnershipType  Ownership of the query run by this scheduled search. If value is User, ownership will be based on the runAsUserId field. See QueryOwnershipType.
queryStartstringyes Start of the relative time interval for the query.
queryStringstringyes LogScale query to execute.
runAsUserIdstring  The scheduled search 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 scheduled search 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.
schedulestringyes Cron pattern describing the schedule to execute the query on.
timeZonestringyes Time zone of the schedule. Currently this field only supports UTC offsets like 'UTC', 'UTC-01' or 'UTC+12:45'.
viewNamestringyes Name of the view of the scheduled search.

Returned Datatypes

The returned datatype ScheduledSearch has its own parameters. Below is a list of them along with their datatypes and a description of each:

Table: ScheduledSearch

ParameterTypeRequiredDefaultDescription
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.
actions[string]yes List of unique identifiers for actions to fire on query result.
actionsV2[Action]yes List of actions to fire on query result. See Action.
allowedActions[AssetAction]yes The allowed asset actions. See AssetAction.
backfillLimitintegeryes User-defined limit, which caps the number of missed searches to backfill, e.g. in the event of a shutdown.
descriptionstring  A description of the scheduled search.
enabledbooleanyes Whether the scheduled search is enabled.
endstringyes The end of the relative time interval for the query.
idstringyes The unique identifier of the scheduled search.
isStarredbooleanyes Whether the calling user has 'starred' the scheduled search. 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 The labels added to the scheduled search.
lastErrorstring  The last error encountered while running the search.
lastExecutedlong  Unix timestamp for end of search interval for last query execution.
lastScheduledSearchlong  The UNIX timestamp at which the last query result was processed. This is deprecated and replaced with lastExecuted and lastTriggered.
lastTriggeredlong  Unix timestamp for end of search interval for last query execution that triggered.
lastWarnings[string]yes The Last warnings encountered while running the scheduled search.
modifiedInfoModifiedInfoyes User or token used to modify the asset. See ModifiedInfo.
namestringyes The name of the scheduled search.
packagePackageInstallationyes The related package. See PackageInstallation.
packageIdVersionedPackageSpecifieryes The unique identifier for the related package. See VersionedPackageSpecifier.
queryOwnershipQueryOwnershipyes Ownership of the query run by this scheduled search. See QueryOwnership.
queryStringstringyes The LogScale query to execute.
runAsUserUseryes The unique identifier of the user as which the scheduled search is running. See User.
schedulestringyes The cron pattern describing the schedule to execute the query on.
startstringyes The start of the relative time interval for the query.
timeOfNextPlannedExecutionlong  The UNIX timestamp for next planned search.
timeZonestringyes Time zone of the schedule. Currently, this field only supports UTC offsets like 'UTC', 'UTC-01' or 'UTC+12:45'.
yamlTemplateYAMLyes A template that can be used to recreate the scheduled search.