0

我正在尝试v2.0.5在 Logstash ( ) 中安装 OpsGenie 输出插件 ( v5.4.2)。

根据OpsGenie 说明,必须运行:

bin/plugin install logstash-output-opsgenie

在 Logstash 中5.4 应该是

bin/logstash-plugin install logstash-output-opsgenie

运行这个你得到:

Looking if package named: logstash-output-opsgenie exists at https://artifacts.elastic.co/downloads/logstash-plugins/logstash-output-opsgenie/logstash-output-opsgenie-5.4.2.zip

(但没有这样的神器logstash-output-opsgenie-5.4.2.zip:)

甚至试图强制版本:

$ DEBUG=1 bin/logstash-plugin install --version 2.0.5 logstash-output-opsgenie

你仍然得到:

DEBUG: exec /usr/share/logstash/vendor/jruby/bin/jruby /usr/share/logstash/lib/pluginmanager/main.rb install --version 2.0.5 logstash-output-opsgenie
Looking if package named: logstash-output-opsgenie exists at https://artifacts.elastic.co/downloads/logstash-plugins/logstash-output-opsgenie/logstash-output-opsgenie-5.4.2.zip
Network error, skipping Elastic pack, exception: Connection refused - Connection refused

如何安装这个 Logstash 输出插件?

4

1 回答 1

1

在Logstash配置部分下的OpsGenie 说明中,有另一个链接指向OpsGenie 的 Logstash 插件。在该页面中有一个安装插件的命令

 gem install logstash-output-opsgenie

如果 OpsGenie 的插件依赖的其他 logstash 包,则运行此命令将安装插件。之后,将目录更改为logstash所在的目录。然后运行

bin/logstash-plugin install logstash-output-opsgenie
于 2017-09-05T06:34:05.163 回答