码迷,mamicode.com
首页 > 其他好文 > 详细

部署Heartbeat--Elastic Stack之十一

时间:2020-05-23 18:00:37      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:download   cse   time   info   安装   监控   sch   beat   put   

 Heartbeat 能够通过 ICMP、TCP 和 HTTP 进行 ping 检测,同时也支持 TLS、认证和代理。可以借助简易的 DNS 解析,监控负载均衡服务器背后的所有主机。

下载地址:https://www.elastic.co/cn/downloads/beats/heartbeat

#安装Heartbeat
#yum install -y  heartbeat-7.2.0-x86_64.rpm

#修改配置文件
#cat heartbeat.yml
heartbeat.monitors:
- type: http
  urls: ["http://www.eyebus.cn"]
  schedule: ‘@every 10s‘
  check.response.status: 200
- type: tcp
  schedule: ‘@every 5s‘
  hosts: ["192.168.1.223:9200"]
- type: icmp
  schedule: ‘*/5 * * * * * *‘
  hosts: ["192.168.1.225"]
setup.template.settings:
  index.number_of_shards: 1
  index.codec: best_compression
setup.kibana:
  host: "192.168.1.224:5601"
output.elasticsearch:
  hosts: ["192.168.1.224:9200"]
processors:
  - add_host_metadata: ~
  - add_cloud_metadata: ~


#启动及查看状态
#systemctl  start  heartbeat-elastic
#ystemctl  status   heartbeat-elastic

#在elasticsearch-head查看索引和kibana 中查看uptime

技术图片

技术图片

 

部署Heartbeat--Elastic Stack之十一

标签:download   cse   time   info   安装   监控   sch   beat   put   

原文地址:https://www.cnblogs.com/llwxhn/p/12943460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!