Skip to content
Framework Docs

Get Pipeline Status

Deprecated
$ llp pipelines get-status
GET/api/v1/pipelines/{pipeline_id}/status

Get the ingestion status of a managed pipeline.

Returns document counts, sync progress, and the last effective timestamp. Only available for managed pipelines.

ParametersExpand Collapse
--pipeline-id: string
--full-details: optional boolean
ReturnsExpand Collapse
managed_ingestion_status_response: object { status, deployment_date, effective_at, 2 more }
status: "CANCELLED" or "ERROR" or "IN_PROGRESS" or 3 more

Status of the ingestion.

"CANCELLED"
"ERROR"
"IN_PROGRESS"
"NOT_STARTED"
"PARTIAL_SUCCESS"
"SUCCESS"
deployment_date: optional string

Date of the deployment.

effective_at: optional string

When the status is effective

error: optional array of object { job_id, message, step }

List of errors that occurred during ingestion.

job_id: string

ID of the job that failed.

message: string

List of errors that occurred during ingestion.

step: "DATA_SOURCE" or "FILE_UPDATER" or "INGESTION" or 4 more

Name of the job that failed.

"DATA_SOURCE"
"FILE_UPDATER"
"INGESTION"
"MANAGED_INGESTION"
"METADATA_UPDATE"
"PARSE"
"TRANSFORM"
job_id: optional string

ID of the latest job.

Get Pipeline Status

llp pipelines get-status \
  --api-key 'My API Key' \
  --pipeline-id 182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e
{
  "status": "CANCELLED",
  "deployment_date": "2019-12-27T18:11:19.117Z",
  "effective_at": "2019-12-27T18:11:19.117Z",
  "error": [
    {
      "job_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "message": "message",
      "step": "DATA_SOURCE"
    }
  ],
  "job_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}
Returns Examples
{
  "status": "CANCELLED",
  "deployment_date": "2019-12-27T18:11:19.117Z",
  "effective_at": "2019-12-27T18:11:19.117Z",
  "error": [
    {
      "job_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "message": "message",
      "step": "DATA_SOURCE"
    }
  ],
  "job_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}