调用ListPipeline,获取Logstash实例的管道列表。

调试

您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。

请求头

该接口使用公共请求头,无特殊请求头。请参见公共请求参数文档。

请求语法

GET /openapi/logstashes/{InstanceId}/pipelines HTTP/1.1

请求参数

名称 类型 位置 是否必选 示例值 描述
InstanceId String Path ls-cn-oew1qbgl****

Logstash实例ID。

pipelineId String Query pipeline_test

管道ID。

page Integer Query 1

分页查询时,设置当前页面的页码。取值范围:1~200,默认值:1。

size Integer Query 15

分页查询时,设置每页包含管道的数量。取值范围:1~200。

返回数据

名称 类型 示例值 描述
RequestId String 5FFD9ED4-C2EC-4E89-B22B-1ACB6FE1****

请求ID。

Headers Object

返回头信息。

X-Total-Count Integer 2

总记录数。

Result Array of Result

返回结果。

pipelineId String pipeline_test

管道ID。

gmtUpdateTime String 2020-08-05T08:43:31.757Z

管道更新时间。

gmtCreatedTime String 2020-08-05T03:10:38.188Z

管道创建时间。

pipelineStatus String NOT_DEPLOYED

管道状态,支持:

  • NOT_DEPLOYED:未部署
  • RUNNING:运行中
  • DELETED:已删除(控制台不展示此状态)

示例

请求示例

GET /openapi/logstashes/ls-cn-oew1qbgl****/pipelines?pipelineId=pipeline_test&page=1&size=15 HTTP/1.1
Host:elasticsearch.aliyuncs.com
Content-Type:application/json

正常返回示例

JSON格式

HTTP/1.1 200 OK
Content-Type:application/json

{
  "Result" : [ {
    "pipelineId" : "datahub_test",
    "pipelineStatus" : "RUNNING",
    "gmtCreatedTime" : "2020-09-09T02:21:28.844Z",
    "gmtUpdateTime" : "2020-09-09T06:09:43.796Z"
  }, {
    "pipelineId" : "test",
    "pipelineStatus" : "NOT_DEPLOYED",
    "gmtCreatedTime" : "2020-09-16T06:35:30.139Z",
    "gmtUpdateTime" : "2020-09-16T07:06:24.759Z"
  }, {
    "pipelineId" : "test_1",
    "pipelineStatus" : "NOT_DEPLOYED",
    "gmtCreatedTime" : "2020-09-16T06:33:05.290Z",
    "gmtUpdateTime" : "2020-09-16T06:33:05.290Z"
  } ],
  "RequestId" : "AA6771E2-4007-4F1F-ADCB-16DAABB9****",
  "Headers" : {
    "X-Total-Count" : 3
  }
}

错误码

访问错误中心查看更多错误码。