Skip to Content

Get Output Status

GET/v0/pipelines/{pipeline_name}/views/{view_name}/connectors/{connector_name}/stats
Authentication
Parameters

Retrieve the status of an output connector.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization 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

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name
view_namestringYesSQL view name
connector_namestringYesOutput connector name

Response

application/json
Output connector status retrieved successfully
  • object
    Output endpoint status information.
    • configobjectrequired
      Schema definition for endpoint config that only includes the stream field.
    • encode_errorsConnectorError[]
      Recent encoding errors on this endpoint.
    • endpoint_namestringrequired
      Endpoint name.
    • fatal_errorstring
      The first fatal error that occurred at the endpoint.
    • healthobject
    • metricsobjectrequired
      Performance metrics for an output endpoint.
    • transport_errorsConnectorError[]
      Recent transport errors on this endpoint.
Request
curl -X GET '/v0/pipelines/{pipeline_name}/views/{view_name}/connectors/{connector_name}/stats' \
  -H 'Authorization: Bearer YOUR_TOKEN'