Saltar al contenido principal
GET
/
v1
/
discovery
/
extractions
/
bridge
/
summary
Get Fetcher bridge readiness summary
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/discovery/extractions/bridge/summary \
  --header 'Authorization: Bearer <token>'
{
  "readyCount": 10,
  "pendingCount": 5,
  "staleCount": 2,
  "failedCount": 1,
  "inFlightCount": 3,
  "totalCount": 21,
  "staleThresholdSec": 3600,
  "generatedAt": "2025-01-01T00:00:00Z",
  "workerHealthy": true,
  "workerLastTickAt": "2025-01-01T00:00:00Z",
  "workerStalenessSeconds": 120
}

Documentation Index

Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt

Use this file to discover all available pages before exploring further.

Autorizaciones

Authorization
string
header
requerido

Bearer token authentication (format: "Bearer {token}")

Encabezados

X-Request-Id
string

A unique identifier for tracing the request across services.

Respuesta

Aggregate readiness counts

Aggregate counts of Fetcher extractions partitioned by bridge readiness state for the requesting tenant.

readyCount
integer<int64>
requerido

Number of extractions in the ready state.

Ejemplo:

10

pendingCount
integer<int64>
requerido

Number of extractions in the pending state.

Ejemplo:

5

staleCount
integer<int64>
requerido

Number of extractions in the stale state.

Ejemplo:

2

failedCount
integer<int64>
requerido

Number of extractions in the failed state.

Ejemplo:

1

inFlightCount
integer<int64>
requerido

Number of upstream extractions still running (PENDING/SUBMITTED/EXTRACTING).

Ejemplo:

3

totalCount
integer<int64>
requerido

Total count of extractions (sum of all buckets).

Ejemplo:

21

staleThresholdSec
integer<int64>
requerido

The staleness threshold in seconds used to partition extractions.

Ejemplo:

3600

generatedAt
string<date-time>
requerido

Timestamp when the summary was generated.

Ejemplo:

"2025-01-01T00:00:00Z"

workerHealthy
boolean
requerido

Server-side verdict on whether the bridge worker is healthy.

Ejemplo:

true

workerLastTickAt
string<date-time> | null

Latest cycle timestamp written by any bridge worker replica. Omitted when no heartbeat has been observed.

Ejemplo:

"2025-01-01T00:00:00Z"

workerStalenessSeconds
integer<int64> | null

Seconds since the last worker heartbeat. Omitted alongside workerLastTickAt.

Ejemplo:

120