Skip to Content
API ReferenceMetrics DebuggingDownload Support Bundle

Download Support Bundle

GET/v0/pipelines/{pipeline_name}/support_bundle
Authentication
Parameters

Generate a support bundle for a pipeline.

This endpoint collects various diagnostic data from the pipeline including circuit profile, heap profile, metrics, logs, stats, and connector statistics, and packages them into a single ZIP file for support purposes.

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

Query parameters

NameTypeRequiredDescription
collectbooleanNoWhether to collect new data from the running pipeline (default: true) When false, only previously collected data will be included in the bundle
circuit_profilebooleanNoWhether to collect circuit profile data (default: true)
heap_profilebooleanNoWhether to collect heap profile data (default: true)
metricsbooleanNoWhether to collect metrics data (default: true)
logsbooleanNoWhether to collect logs data (default: true)
statsbooleanNoWhether to collect stats data (default: true)
pipeline_configbooleanNoWhether to collect pipeline configuration data (default: true)
system_configbooleanNoWhether to collect system configuration data (default: true)
dataflow_graphbooleanNoWhether to collect dataflow graph data (default: true)

Response

application/zip
Support bundle containing diagnostic information
  • string (binary)
Request
curl -X GET '/v0/pipelines/{pipeline_name}/support_bundle?collect=%3Ccollect%3E&circuit_profile=%3Ccircuit_profile%3E&heap_profile=%3Cheap_profile%3E&metrics=%3Cmetrics%3E&logs=%3Clogs%3E&stats=%3Cstats%3E&pipeline_config=%3Cpipeline_config%3E&system_config=%3Csystem_config%3E&dataflow_graph=%3Cdataflow_graph%3E' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
Support bundle containing diagnostic information
"string"