Get ingest pipeline
After you create a pipeline, use the get ingest pipeline API operation to return all the information about a specific ingest pipeline.
Example
GET _ingest/pipeline/12345
copy
Path and HTTP methods
Return all ingest pipelines.
GET _ingest/pipeline
Returns a single ingest pipeline based on the pipeline’s ID.
GET _ingest/pipeline/{id}
URL parameters
All parameters are optional.
Parameter | Type | Description |
---|---|---|
master_timeout | time | How long to wait for a connection to the master node. |
Response
{
"pipeline-id" : {
"description" : "A description for your pipeline",
"processors" : [
{
"set" : {
"field" : "field-name",
"value" : "value"
}
}
]
}
}
当前内容版权归 OpenSearch 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 OpenSearch .