普罗米修斯出口商 - 建设
Prometheus Exporters - Building
我正在为下面给定的 GitHub 链接构建项目。但是无法理解如何获取.exe version/build可以直接使用的项目
https://github.com/justwatchcom/elasticsearch_exporter
https://github.com/rabbitmq/rabbitmq-prometheus
例如:https://github.com/oliver006/redis_exporter
在下面的步骤中提到了
$ go get github.com/oliver006/redis_exporter
$ cd $GOPATH/src/github.com/oliver006/redis_exporter
$ go build
$ ./redis_exporter <flags>
所以我下载并安装了 Go,然后使用上述方法构建,结果我得到了 redis_exporter.exe,我可以用它来监控它。
大多数 Prometheus 导出器作为发布的一部分以二进制文件的形式分发,例如,您可以为 redis_exporter here and the elasticsearch_exporter here 找到 Windows 二进制文件 - 无需自己构建它们。
但是,RabbitMQ Prometheus 集成不是通过导出器完成的,而是通过使用 RabbitMQ 插件完成的,该插件随后会在 RabbitMQ 进程的端口 15692 公开指标。
您可以在 documentation here.
中找到有关如何将 RabbitMQ 与 Prometheus 监控集成的更多信息
我正在为下面给定的 GitHub 链接构建项目。但是无法理解如何获取.exe version/build可以直接使用的项目
https://github.com/justwatchcom/elasticsearch_exporter
https://github.com/rabbitmq/rabbitmq-prometheus
例如:https://github.com/oliver006/redis_exporter
在下面的步骤中提到了
$ go get github.com/oliver006/redis_exporter
$ cd $GOPATH/src/github.com/oliver006/redis_exporter
$ go build
$ ./redis_exporter <flags>
所以我下载并安装了 Go,然后使用上述方法构建,结果我得到了 redis_exporter.exe,我可以用它来监控它。
大多数 Prometheus 导出器作为发布的一部分以二进制文件的形式分发,例如,您可以为 redis_exporter here and the elasticsearch_exporter here 找到 Windows 二进制文件 - 无需自己构建它们。
但是,RabbitMQ Prometheus 集成不是通过导出器完成的,而是通过使用 RabbitMQ 插件完成的,该插件随后会在 RabbitMQ 进程的端口 15692 公开指标。
您可以在 documentation here.
中找到有关如何将 RabbitMQ 与 Prometheus 监控集成的更多信息