Logstash监视不适用于管道、重新加载和事件

eqqqjvef  于 2022-12-09  发布在  Logstash
关注(0)|答案(1)|浏览(171)

我正在尝试使用ES 7.17 https://www.elastic.co/guide/en/logstash/7.17/node-info-api.html的官方API指南来使用logstash管道监视
jvm、进程和操作系统监视对我来说是有效的,但是管道、重新加载和事件监视返回

{
  "error" : {
    "root_cause" : [
      {
        "type" : "illegal_argument_exception",
        "reason" : "request [/_node/stats/pipelines] contains unrecognized metric: [pipelines]"
      }
    ],
    "type" : "illegal_argument_exception",
    "reason" : "request [/_node/stats/pipelines] contains unrecognized metric: [pipelines]"
  },
  "status" : 400
}
zaq34kh6

zaq34kh61#

正确的URL是

_node/stats/pipelines

不适用

_nodes/stats/pipelines
     ^
     |

相关问题