[ELK] yum安装metricbeat

官方文档: https://www.elastic.co/guide/en/beats/metricbeat/current/setup-repositories.html

一、安装步骤:

1.安装授权 (Download and install the public signing key):

sudo rpm --import https://packages.elastic.co/GPG-KEY-elasticsearch

2.配置yum源(若在安装elk时配置过,则无需重复添加)

[elastic-6.x]
name=Elastic repository for 6.x packages
baseurl=https://artifacts.elastic.co/packages/6.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md

3.yum安装

 yum install metricbeat

4.配置开机自启动

chkconfig --add metricbeat

二、配置Metricbeat

vi /etc/metricbeat/metricbeat.yml

修改output.elasticsearch:

output.elasticsearch:
  # Array of hosts to connect to.
  hosts: ["192.168.33.160:9200"]

修改setup.kibana:

setup.kibana:
  # Kibana Host
  # Scheme and port can be left out and will be set to the default (http and 5601)
  # In case you specify and additional path, the scheme is required: http://localhost:5601/path
  # IPv6 addresses should always be defined as: https://[2001:db8::1]:5601
  host: "192.168.33.160:5601"

修改dashboard参数为true

#============================== Dashboards =====================================
# These settings control loading the sample dashboards to the Kibana index. Loading
# the dashboards is disabled by default and can be enabled either by setting the
# options here, or by using the `-setup` CLI flag or the `setup` command.
#setup.dashboards.enabled: false
setup.dashboards.enabled: true

启动metricbeat服务

systemctl start metricbeat

如下图所示

猜你喜欢

转载自blog.csdn.net/tonghudan/article/details/81428936