Skip to content

pipelineHealthForTimeRange

Get the health metric for the radar pipeline covering the backup, indexing, and analysis jobs.

Arguments

Argument Type Description
beginTime (required) DateTime! Filters results that started after this time.
endTime DateTime Filters results that started before this time.

Returns

GetPipelineHealthReply!

Sample

query PipelineHealthForTimeRange($beginTime: DateTime!) {
  pipelineHealthForTimeRange(beginTime: $beginTime) {
    failedAnalysis
    failedBackup
    failedIndexing
    totalAnalysis
    totalBackup
    totalIndexing
  }
}
{
  "beginTime": "2024-01-01T00:00:00.000Z"
}
{
  "data": {
    "pipelineHealthForTimeRange": {
      "failedAnalysis": 0,
      "failedBackup": 0,
      "failedIndexing": 0,
      "totalAnalysis": 0,
      "totalBackup": 0,
      "totalIndexing": 0
    }
  }
}