微服务 实时日志分析 FileBeat Elasticsearch Kibana

目标:实现微服务的归总方便分析

YUMedit

To add the Beats repository for YUM:

  1. Download and install the public signing key:

    sudo rpm --import https://packages.elastic.co/GPG-KEY-elasticsearch
  2. Create a file with a .repo extension (for example, beats.repo) in your /etc/yum.repos.d/directory and add the following lines:

    [beats]
    name=ElasticBeatsRepository
    baseurl=https://packages.elastic.co/beats/yum/el/$basearch
    enabled=1
    gpgkey=https://packages.elastic.co/GPG-KEY-elasticsearch
    gpgcheck=1

    Your repository is ready to use. For example, you can install Filebeat by running:

    sudo yum install filebeat
  3. To configure the beat to start automatically during boot, run:

    sudo chkconfig --add filebeat

          rpm -ql filebeat 可以查看安装后的目录。

 Logstash 的 repo

  1. To configure the beat to start automatically during boot, run:

    [logstash-2.3]
    name=Logstash repository for 2.3.x packages
    baseurl=https://packages.elastic.co/logstash/2.3/centos
    gpgcheck=1
    gpgkey=https://packages.elastic.co/GPG-KEY-elasticsearch
    enabled=1

猜你喜欢

转载自choelea.iteye.com/blog/2310326