我正在尝试导入Heartbeat仪表板。执行的步骤: 在Host1上安装了Elasticsearch和Kibana。这很好。 在Host2上安装Heartbeat5.6。心跳监视工作正常。 编辑heartbeat.yml
#Configure monitors
heartbeat.monitors:
type: http
#List or urls to query
urls:
"https://www.elastic.co"
"https://discuss.elastic.co"
#Configure task schedule
schedule: '@every 10s'
#Elasticsearch output-
output.elasticsearch:
hosts: ["elkquest.unx.sas.com:9200"]
template.name: "heartbeat"
template.path: "heartbeat.template.json"
template.overwrite: true
重新启动心跳。我看不到默认的仪表板,因此尝试使用以下命令导入仪表板:
/usr/share/heartbeat/scripts/import_dashboards
这给出了一个错误:
无法创建Elasticsearch加载器:创建Elasticsearch时出错 客户端:无法连接到任何已配置的Elasticsearch主机, 错误:1错误:获取http://127.0.0.1:9200:拨打tcp 127.0.0.1:9200: getsockopt:连接被拒绝退出
elasticsearch主机应连接到http://Host1:9200。
请建议我要去哪里了