Get Input Status
Retrieve the status of an input connector.
Authentication
| Scheme | Type | Details |
|---|---|---|
JSON web token (JWT) or API key | Bearer token | Authorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint. |
Parameters
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
pipeline_name | string | Yes | Unique pipeline name |
table_name | string | Yes | Unique table name |
connector_name | string | Yes | Unique input connector name |
Response
Input connector status retrieved successfully
- objectInput endpoint status information.
barrierbooleanrequiredEndpoint is currently a barrier to checkpointing and suspend.completed_frontierobjectconfigobjectrequiredSchema definition for endpoint config that only includes the stream field.endpoint_namestringrequiredEndpoint name.fatal_errorstringThe first fatal error that occurred at the endpoint.healthobjectmetricsobjectrequiredPerformance metrics for an input endpoint.parse_errorsConnectorError[]Recent parse errors on this endpoint.pausedbooleanrequiredEndpoint has been paused by the user.transport_errorsConnectorError[]Recent transport errors on this endpoint.
curl -X GET '/v0/pipelines/{pipeline_name}/tables/{table_name}/connectors/{connector_name}/stats' \
-H 'Authorization: Bearer YOUR_TOKEN'