nodejs使用——以elasticsearch-exporter为例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs使用——以elasticsearch-exporter为例相关的知识,希望对你有一定的参考价值。

安装nodejs:

yum install nodejs

运行node命令查看是否安装成功:

可以看到成功进入命令行,安装成功。

node命令前面要加点,使用 .help 查看有哪些命令:

 

使用.exit退出。

 

 

 安装nodejs包管理工具npm:

yum install npm

 

使用npm在nodejs中安装包:

 使用npm命令安装包的时候遇到https认证的问题,关闭https认证:npm config set strict-ssl false(或者在主目录下修改.npmrc文件中strict-ssl等于false)

这里我们安装elasticsearch-exporter包:

npm install nomnom

npm install colors

npm install elasticsearch-exporter --production

 

安装完成的js包可以在/node_moudules/文件夹下看到。

运行安装的包的时候最好进入js所在文件夹,不然会报找不到的错误

安装完成后运行一下elasticsearch-exporter:

node exporter.js --help

node exporter.js -a <source hostname> -b <target hostname> -p <s port> -q <t port> -i <s index> -j <t index>

 

以上是关于nodejs使用——以elasticsearch-exporter为例的主要内容,如果未能解决你的问题,请参考以下文章

Elasticsearch:使用 Logstash 构建从 Kafka 到 Elasticsearch 的管道 - Nodejs

Elasticsearch:使用最新的 Nodejs client 8.x 来创建索引并搜索

Nodejs中@elastic/elasticsearch的使用

处理用千牛导出淘宝数据,供Logstash到Elasticsearch使用。(NodeJS)

nodejs中的Elasticsearch连接时没有活动连接错误

elasticsearch数据迁移——elasticsearch-dump使用