Skip to main content

report_jobs_status

Creates, updates, deletes, gets or lists a report_jobs_status resource.

Overview

Namereport_jobs_status
TypeResource
Idsumologic.dashboards.report_jobs_status

Fields

The following fields are returned by SELECT queries:

The status of the report generation job.

NameDatatypeDescription
errorobject
statusstringWhether or not the request is in progress (InProgress), has completed successfully (Success), or has completed with an error (Failed).
statusMessagestringAdditional status message generated if the status is not Failed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getAsyncReportGenerationStatusselectjobId, regionGet the status of an asynchronous report generation request for the given job identifier. On success, use the [getReportGenerationResult] endpoint to get the result of the report generation job.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
jobIdstringThe identifier of the asynchronous report generation job.
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

Get the status of an asynchronous report generation request for the given job identifier. On success, use the [getReportGenerationResult] endpoint to get the result of the report generation job.

SELECT
error,
status,
statusMessage
FROM sumologic.dashboards.report_jobs_status
WHERE jobId = '{{ jobId }}' -- required
AND region = '{{ region }}' -- required
;