ELK 企业级日志分析系统
ELK 简介
ELK平台是一套完整的日志集中处理解决方案,将 ElasticSearch、Logstash 和 Kiabana 三个开源工具配合使用, 完成更强大的用户对日志的查询、排序、统计需求。
●ElasticSearch:是基于Lucene(一个全文检索引擎的架构)开发的分布式存储检索引擎,用来存储各类日志。
Elasticsearch 是用 Java 开发的,可通过 RESTful Web 接口,让用户可以通过浏览器与 Elasticsearch 通信。
Elasticsearch是一个实时的、分布式的可扩展的搜索引擎,允许进行全文、结构化搜索,它通常用于索引和搜索大容量的日志数据,也可用于搜索许多不同类型的文档。
●Kiabana:Kibana 通常与 Elasticsearch 一起部署,Kibana 是 Elasticsearch 的一个功能强大的数据可视化 Dashboard,Kibana 提供图形化的 web 界面来浏览 Elasticsearch 日志数据,可以用来汇总、分析和搜索重要数据。
●Logstash:作为数据收集引擎。它支持动态的从各种数据源搜集数据,并对数据进行过滤、分析、丰富、统一格式等操作,然后存储到用户指定的位置,一般会发送给 Elasticsearch。
Logstash 由 Ruby 语言编写,运行在 Java 虚拟机(JVM)上,是一款强大的数据处理工具, 可以实现数据传输、格式处理、格式化输出。Logstash 具有强大的插件功能,常用于日志处理。
#可以添加的其它组件:
●Filebeat:轻量级的开源日志文件数据搜集器。通常在需要采集数据的客户端安装 Filebeat,并指定目录与日志格式,Filebeat 就能快速收集数据,并发送给 logstash 进或是直接发给 Elasticsearch 存储,性能上相比运行于 JVM 上的 logstash 优势明显,是对它的替代。常应用于 EFLK 架构当中。行解析,
filebeat 结合 logstash 带来好处:
1)通过 Logstash 具有基于磁盘的自适应缓冲系统,该系统将吸收传入的吞吐量,从而减轻 Elasticsearch 持续写入数据的压力
2)从其他数据源(例如数据库,S3对象存储或消息传递队列)中提取
3)将数据发送到多个目的地,例如S3,HDFS(Hadoop分布式文件系统)或写入文件
4)使用条件数据流逻辑组成更复杂的处理管道
●缓存/消息队列(redis、kafka、RabbitMQ等):可以对高并发日志数据进行流量削峰和缓冲,这样的缓冲可以一定程度的保护数据不丢失,还可以对整个架构进行应用解耦。
●Fluentd:是一个流行的开源数据收集器。由于 logstash 太重量级的缺点,Logstash 性能低、资源消耗比较多等问题,随后就有 Fluentd 的出现。相比较 logstash,Fluentd 更易用、资源消耗更少、性能更高,在数据处理上更高效可靠,受到企业欢迎,成为 logstash 的一种替代方案,常应用于 EFK 架构当中。在 Kubernetes 集群中也常使用 EFK 作为日志数据收集的方案。
在 Kubernetes 集群中一般是通过 DaemonSet 来运行 Fluentd,以便它在每个 Kubernetes 工作节点上都可以运行一个 Pod。 它通过获取容器日志文件、过滤和转换日志数据,然后将数据传递到 Elasticsearch 集群,在该集群中对其进行索引和存储。
为什么要使用 ELK?
日志主要包括系统日志、应用程序日志和安全日志。系统运维和开发人员可以通过日志了解服务器软硬件信息、检查配置过程中的错误及错误发生的原因。经常分析日志可以了解服务器的负荷,性能安全性,从而及时采取措施纠正错误。
往往单台机器的日志我们使用grep、awk等工具就能基本实现简单分析,但是当日志被分散的储存不同的设备上。如果你管理数十上百台服务器,你还在使用依次登录每台机器的传统方法查阅日志。这样是不是感觉很繁琐和效率低下。当务之急我们使用集中化的日志管理,例如:开源的syslog,将所有服务器上的日志收集汇总。集中化管理日志后,日志的统计和检索又成为一件比较麻烦的事情,一般我们使用 grep、awk和wc等Linux命令能实现检索和统计,但是对于要求更高的查询、排序和统计等要求和庞大的机器数量依然使用这样的方法难免有点力不从心。
一般大型系统是一个分布式部署的架构,不同的服务模块部署在不同的服务器上,问题出现时,大部分情况需要根据问题暴露的关键信息,定位到具体的服务器和服务模块,构建一套集中式日志系统,可以提高定位问题的效率。
完整日志系统基本特征
特征 | 含义 |
---|---|
收集 | 能够采集多种来源的日志数据 |
传输 | 能够稳定的把日志数据解析过滤并传输到存储系统 |
存储 | 存储日志数据 |
分析 | 支持 UI 分析 |
警告 | 能够提供错误报告,监控机制 |
ELK 的工作原理
(1)在所有需要收集日志的服务器上部署Logstash;或者先将日志进行集中化管理在日志服务器上,在日志服务器上部署 Logstash。
(2)Logstash 收集日志,将日志格式化并输出到 Elasticsearch 群集中。
(3)Elasticsearch 对格式化后的数据进行索引和存储。
(4)Kibana 从 ES 群集中查询数据生成图表,并进行前端数据的展示。
ELK 企业日志分析收集系统搭建部署
ELK Elasticsearch 集群部署(在Node1、Node2节点上操作)
1.环境准备
服务器类型 | ip地址、版本 | 插件、软件工具 |
---|---|---|
node1服务器2C/4G) | 20.0.0.100、CentOS 7 | Elasticsearch Kibana |
node2服务器2C/4G) | 20.0.0.200 、CentOS 7 | Elasticsearch |
apache服务器 | 20.0.0.210 、CentOS 7 | Logstash Apache |
Filebeat日志收集分析系统 | 20.0.0.220 、CentOS 7 | Filebeat |
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@localhost ~]# hostnamectl set-hostname node1
#更改主机名、配置域名解析、查看Java环境
[root@localhost ~]# su
[root@node1 ~]# systemctl stop firewalld.service && setenforce 0
[root@node1 ~]# vim /etc/hosts
20.0.0.100 node1
20.0.0.200 node2
[root@node1 ~]# java -version
openjdk version "1.8.0_131"
OpenJDK Runtime Environment (build 1.8.0_131-b12)
OpenJDK 64-Bit Server VM (build 25.131-b12, mixed mode)
[root@node1 ~]# cd /opt/
[root@node1 opt]# ls
rh
---------------------------------------------------------------------------------node2---------------------------------------------------------------------------------
[root@localhost ~]# hostnamectl set-hostname node2
[root@localhost ~]# su
[root@node2 ~]# systemctl stop firewalld.service && setenforce 0
[root@node1 ~]# vim /etc/hosts
20.0.0.100 node1
20.0.0.200 node2
[root@node2 ~]# java -version
openjdk version "1.8.0_131"
OpenJDK Runtime Environment (build 1.8.0_131-b12)
OpenJDK 64-Bit Server VM (build 25.131-b12, mixed mode)
[root@node2 ~]# cd /opt/
[root@node2 opt]# ls
rh
2.部署 Elasticsearch 软件
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
将 elasticsearch-5.5.0.rpm 放入到 /opt/目录下
(1)安装elasticsearch—rpm包
[root@node1 opt]# rz -E
rz waiting to receive.
[root@node1 opt]# ls
#上传elasticsearch-5.5.0.rpm到/opt目录下
elasticsearch-5.5.0.rpm rh
[root@node1 opt]# rpm -ivh elasticsearch-5.5.0.rpm
警告:elasticsearch-5.5.0.rpm: 头V4 RSA/SHA512 Signature, 密钥 ID d88e42b4: NOKEY
准备中... ################################# [100%]
Creating elasticsearch group... OK
Creating elasticsearch user... OK
正在升级/安装...
1:elasticsearch-0:5.5.0-1 ################################# [100%]
### NOT starting on installation, please execute the following statements to configure elasticsearch service to start automatically using systemd
sudo systemctl daemon-reload
sudo systemctl enable elasticsearch.service
### You can start elasticsearch service by executing
sudo systemctl start elasticsearch.service
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
将 elasticsearch-5.5.0.rpm 放入到 /opt/目录下
[root@node2 opt]# rz -E
rz waiting to receive.
[root@node2 opt]# ls
#上传elasticsearch-5.5.0.rpm到/opt目录下
elasticsearch-5.5.0.rpm rh
[root@node2 opt]# rpm -ivh elasticsearch-5.5.0.rpm
警告:elasticsearch-5.5.0.rpm: 头V4 RSA/SHA512 Signature, 密钥 ID d88e42b4: NOKEY
准备中... ################################# [100%]
Creating elasticsearch group... OK
Creating elasticsearch user... OK
正在升级/安装...
1:elasticsearch-0:5.5.0-1 ################################# [100%]
### NOT starting on installation, please execute the following statements to configure elasticsearch service to start automatically using systemd
sudo systemctl daemon-reload
sudo systemctl enable elasticsearch.service
### You can start elasticsearch service by executing
sudo systemctl start elasticsearch.service
(2)加载系统服务
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 opt]# systemctl daemon-reload
[root@node1 opt]# systemctl enable elasticsearch.service
Created symlink from /etc/systemd/system/multi-user.target.wants/elasticsearch.service to /usr/lib/systemd/system/elasticsearch.service.
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 opt]# systemctl daemon-reload
[root@node2 opt]# systemctl enable elasticsearch.service
Created symlink from /etc/systemd/system/multi-user.target.wants/elasticsearch.service to /usr/lib/systemd/system/elasticsearch.service.
(3)修改elasticsearch主配置文件
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 opt]# cp /etc/elasticsearch/elasticsearch.yml /etc/elasticsearch/elasticsearch.yml.bak
###备份配置数据以防万一,要养成习惯
[root@node1 opt]# vim /etc/elasticsearch/elasticsearch.yml
--17--取消注释,指定集群名字
cluster.name: my-elk-cluster
--23--取消注释,指定节点名字:Node1节点为node1,Node2节点为node2
node.name: node1
--33--取消注释,指定数据存放路径
path.data: /data/elk_data
--37--取消注释,指定日志存放路径
path.logs: /var/log/elasticsearch/
--43--取消注释,改为在启动的时候不锁定内存
bootstrap.memory_lock: false
--55--取消注释,设置监听地址,0.0.0.0代表所有地址
network.host: 0.0.0.0
--59--取消注释,ES 服务的默认监听端口为9200
http.port: 9200
--68--取消注释,集群发现通过单播实现,指定要发现的节点 node1、node2
discovery.zen.ping.unicast.hosts: ["node1", "node2"]
// esc+ :wq 保存退出配置文件
[root@node1 opt]# grep -v "^#" /etc/elasticsearch/elasticsearch.yml
cluster.name: my-elk-cluster
node.name: node1
path.data: /data/elk-data
path.logs: /var/log/elasticsearch/
bootstrap.memory_lock: false
network.host: 0.0.0.0
http.port: 9200
discovery.zen.ping.unicast.hosts: ["host1", "host2"]
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 opt]# cp /etc/elasticsearch/elasticsearch.yml /etc/elasticsearch/elasticsearch.yml.bak
###备份配置数据以防万一,要养成习惯
[root@node1 opt]# vim /etc/elasticsearch/elasticsearch.yml
--17--取消注释,指定集群名字
cluster.name: my-elk-cluster
--23--取消注释,指定节点名字:Node1节点为node1,Node2节点为node2
node.name: node2
--33--取消注释,指定数据存放路径
path.data: /data/elk_data
--37--取消注释,指定日志存放路径
path.logs: /var/log/elasticsearch/
--43--取消注释,改为在启动的时候不锁定内存
bootstrap.memory_lock: false
--55--取消注释,设置监听地址,0.0.0.0代表所有地址
network.host: 0.0.0.0
--59--取消注释,ES 服务的默认监听端口为9200
http.port: 9200
--68--取消注释,集群发现通过单播实现,指定要发现的节点 node1、node2
discovery.zen.ping.unicast.hosts: ["node1", "node2"]
// esc+ :wq 保存退出配置文件
[root@node2 opt]# grep -v "^#" /etc/elasticsearch/elasticsearch.yml
cluster.name: my-elk-cluster
node.name: node-2
path.data: /data/elk-data
path.logs: /var/log/elasticsearch/
bootstrap.memory_lock: false
network.host: 0.0.0.0
http.port: 9200
discovery.zen.ping.unicast.hosts: ["host1", "host2"]
(4)创建数据存放路径并授权
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 opt]# mkdir -p /data/elk_data
[root@node1 opt]# chown elasticsearch:elasticsearch /data/elk_data/
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 opt]# mkdir -p /data/elk_data
[root@node2 opt]# chown elasticsearch:elasticsearch /data/elk_data/
(5)启动elasticsearch是否成功开启
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 opt]# systemctl start elasticsearch.service
[root@node1 opt]# systemctl status elasticsearch.service
● elasticsearch.service - Elasticsearch
Loaded: loaded (/usr/lib/systemd/system/elasticsearch.service; enabled; vendor preset: disabled)
Active: active (running) since 五 2023-04-07 15:27:48 CST; 1s ago
Docs: http://www.elastic.co
Process: 43159 ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-systemd-pre-exec (code=exited, status=0/SUCCESS)
Main PID: 43160 (java)
CGroup: /system.slice/elasticsearch.service
└─43160 /bin/java -Xms2g -Xmx2g -XX:+UseConcMarkSweepGC -XX:CMSIniti...
4月 07 15:27:48 node1 systemd[1]: Starting Elasticsearch...
4月 07 15:27:48 node1 systemd[1]: Started Elasticsearch.
[root@node1 opt]# netstat -antp | grep 9200
tcp6 0 0 :::9200 :::* LISTEN 5152/java
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node1 opt]# systemctl start elasticsearch.service
[root@node1 opt]# systemctl status elasticsearch.service
● elasticsearch.service - Elasticsearch
Loaded: loaded (/usr/lib/systemd/system/elasticsearch.service; enabled; vendor preset: disabled)
Active: active (running) since 五 2023-04-07 15:22:47 CST; 1s ago
Docs: http://www.elastic.co
Process: 4010 ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-systemd-pre-exec (code=exited, status=0/SUCCESS)
Main PID: 4012 (java)
CGroup: /system.slice/elasticsearch.service
└─4012 /bin/java -Xms2g -Xmx2g -XX:+UseConcMarkSweepGC -XX:CMSInitia...
4月 07 15:22:47 node2 systemd[1]: Starting Elasticsearch...
4月 07 15:22:47 node2 systemd[1]: Started Elasticsearch.
[root@node2 opt]# netstat -antp | grep 9200
tcp6 0 0 :::9200 :::* LISTEN 5152/java
(6)查看节点信息
浏览器访问 http://20.0.0.100:9200 、 http://20.0.0.100:9200 查看节点 Node1、Node2 的信息。
浏览器访问 http://20.0.0.100:9200/_cluster/health?pretty 、 http://20.0.0.200:9200/_cluster/health?pretty查看群集的健康情况,可以看到 status 值为 green(绿色), 表示节点健康运行。
浏览器访问 http://20.0.0.100:9200/_cluster/state?pretty 检查群集状态信息。
#使用上述方式查看群集的状态对用户并不友好,可以通过安装 Elasticsearch-head 插件,可以更方便地管理群集。
3.安装 Elasticsearch-head 插件
Elasticsearch 在 5.0 版本后,Elasticsearch-head 插件需要作为独立服务进行安装,需要使用npm工具(NodeJS的包管理工具)安装。
安装 Elasticsearch-head 需要提前安装好依赖软件 node 和 phantomjs。
node:是一个基于 Chrome V8 引擎的 JavaScript 运行环境。
phantomjs:是一个基于 webkit 的JavaScriptAPI,可以理解为一个隐形的浏览器,任何基于 webkit 浏览器做的事情,它都可以做到。
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
(1)编译安装 node
上传软件包 node-v8.2.1.tar.gz 到/opt
[root@node1 ~]# cd /opt/
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1.tar.gz rh
[root@node1 opt]# yum install gcc gcc-c++ make -y
[root@node1 opt]# tar zxvf node-v8.2.1.tar.gz
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1 node-v8.2.1.tar.gz rh
[root@node1 opt]# cd node-v8.2.1/
[root@node1 node-v8.2.1]# ./configure && make && make install
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 ~]# cd /opt/
[root@node2 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1.tar.gz rh
[root@node2 opt]# yum install gcc gcc-c++ make -y
[root@node2 opt]# tar zxvf node-v8.2.1.tar.gz
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1 node-v8.2.1.tar.gz rh
[root@node1 opt]# cd node-v8.2.1/
[root@node2 node-v8.2.1]# ./configure && make && make install
(2)安装 phantomjs(前端的框架)
#上传软件包 phantomjs-2.1.1-linux-x86_64.tar.bz2 到
cd /opt
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 node-v8.2.1]# cd /opt/
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1 node-v8.2.1.tar.gz rh
[root@node1 opt]# tar jxvf phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /usr/local/src/
[root@node1 opt]# cd /usr/local/src/phantomjs-2.1.1-linux-x86_64/bin
[root@node1 bin]# cp phantomjs /usr/local/bin
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 node-v8.2.1]# cd /opt/
[root@node2 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1 node-v8.2.1.tar.gz rh
[root@node2 opt]# tar jxvf phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /usr/local/src/
[root@node2 opt]# cd /usr/local/src/phantomjs-2.1.1-linux-x86_64/bin
[root@node2 bin]# cp phantomjs /usr/local/bin
(3)安装 Elasticsearch-head 数据可视化工具
上传软件包 elasticsearch-head.tar.gz 到/opt
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node1 bin]# cd /opt/
[root@node1 opt]# tar zxvf elasticsearch-head.tar.gz -C /usr/local/src/
[root@node2 opt]# cd /usr/local/src/elasticsearch-head/
[root@node2 elasticsearch-head]# npm install
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 bin]# cd /opt/
[root@node2 opt]# tar zxvf elasticsearch-head.tar.gz -C /usr/local/src/
[root@node2 opt]# cd /usr/local/src/elasticsearch-head/
[root@node2 elasticsearch-head]# npm install
(4)修改 Elasticsearch 主配置文件
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 elasticsearch-head]# vim /etc/elasticsearch/elasticsearch.yml
......
--末尾添加以下内容--
http.cors.enabled: true #开启跨域访问支持,默认为 false
http.cors.allow-origin: "*" #指定跨域访问允许的域名地址为所有
[root@node1 elasticsearch-head]# systemctl restart elasticsearch
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node2 elasticsearch-head]# vim /etc/elasticsearch/elasticsearch.yml
......
--末尾添加以下内容--
http.cors.enabled: true #开启跨域访问支持,默认为 false
http.cors.allow-origin: "*" #指定跨域访问允许的域名地址为所有
[root@node2 elasticsearch-head]# systemctl restart elasticsearch
(5)启动 elasticsearch-head 服务
----------------------------------------------------------------------------------node1--------------------------------------------------------------------------------
[root@node1 opt]# cd /usr/local/src/elasticsearch-head/
#必须在解压后的 elasticsearch-head 目录下启动服务,进程会读取该目录下的 gruntfile.js 文件,否则可能启动失败。
[root@node1 elasticsearch-head]# systemctl restart elasticsearch
[root@node1 elasticsearch-head]# npm run start &
[1] 82886
[root@node1 elasticsearch-head]#
> elasticsearch-head@0.0.0 start /usr/local/src/elasticsearch-head
> grunt server
Running "connect:server" (connect) task
Waiting forever...
Started connect web server on http://localhost:9100
----------------------------------------------------------------------------------node2--------------------------------------------------------------------------------
[root@node1 opt]# cd /usr/local/src/elasticsearch-head/
#必须在解压后的 elasticsearch-head 目录下启动服务,进程会读取该目录下的 gruntfile.js 文件,否则可能启动失败。
[root@node2 elasticsearch-head]# systemctl restart elasticsearch
[root@node2 elasticsearch-head]# npm run start &
[1] 51653
[root@node2 elasticsearch-head]#
> elasticsearch-head@0.0.0 start /usr/local/src/elasticsearch-head
> grunt server
Running "connect:server" (connect) task
Waiting forever...
Started connect web server on http://localhost:9100
[root@node2 ~]# netstat -antp|grep 9100
#elasticsearch-head 监听的端口是 9100
tcp 0 0 0.0.0.0:9100 0.0.0.0:* LISTEN 51669/grunt
tcp 0 0 20.0.0.200:9100 20.0.0.1:64179 FIN_WAIT2 -
tcp 0 0 20.0.0.200:9100 20.0.0.1:64178 FIN_WAIT2 -
tcp 0 0 20.0.0.200:9100 20.0.0.1:64174 FIN_WAIT2 -
tcp 0 0 20.0.0.200:9100 20.0.0.1:64177 FIN_WAIT2 -
tcp 0 0 20.0.0.200:9100 20.0.0.1:64180 FIN_WAIT2 -
tcp 0 0 20.0.0.200:9100 20.0.0.1:64173 FIN_WAIT2 -
注意:9100进程被占用,需要先lsof -i :9100查看进程pid,再kill -9 【进程号pid】,最后再重新 npm run start & 启动
[root@node1 elasticsearch-head]# npm run start &
[2] 50673
[root@node1 elasticsearch-head]#
> elasticsearch-head@0.0.0 start /usr/local/src/elasticsearch-head
> grunt server
Running "connect:server" (connect) task
Waiting forever...
Fatal error: Port 9100 is already in use by another process.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! elasticsearch-head@0.0.0 start: `grunt server`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the elasticsearch-head@0.0.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2023-04-07T09_29_53_003Z-debug.log
^C
[2]+ 退出 1 npm run start
[root@node1 elasticsearch-head]# lsof -i :9100
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
grunt 50592 root 12u IPv4 58839 0t0 TCP *:jetdirect (LISTEN)
[root@node1 elasticsearch-head]# kill -9 50592
[1]+ 已杀死 npm run start
[root@node1 elasticsearch-head]# npm run start &
[1] 50749
[root@node1 elasticsearch-head]#
> elasticsearch-head@0.0.0 start /usr/local/src/elasticsearch-head
> grunt server
Running "connect:server" (connect) task
Waiting forever...
Started connect web server on http://localhost:9100
(6)通过 Elasticsearch-head 查看 Elasticsearch 信息
通过浏览器访问 http://20.0.0.100:9100/ 地址并连接群集。如果看到群集健康值为 green 绿色,代表群集很健康。
(7)插入索引
[root@node1 elasticsearch-head]# curl -X PUT 'localhost:9200/index-demo/test/1?pretty&pretty' -H 'content-Type: application/json' -d '{"user":"zhangsan","mesg":"hello world"}'
#通过命令插入一个测试索引,索引为 index-demo,类型为 test。
{
"_index" : "index-demo",
"_type" : "test",
"_id" : "1",
"_version" : 1,
"result" : "created",
"_shards" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"created" : true
}
浏览器访问 http://20.0.0.100:9100/ 查看索引信息,可以看见索引默认被分片5个,并且有一个副本。
点击“数据浏览”,会发现在node1上创建的索引为 index-demo,类型为 test 的相关信息。
ELK Logstash 部署(在 Apache 节点上操作,开启一台新的机器20.0.0.210作为Apache服务器)
Logstash 一般部署在需要监控其日志的服务器。在本案例中,Logstash 部署在 Apache 服务器上,用于收集 Apache 服务器的日志信息并发送到 Elasticsearch。
1.更改主机名
[root@localhost ~]# hostnamectl set-hostname apache
[root@localhost ~]# su
2.安装Apahce服务(httpd)
[root@apache ~]# yum -y install httpd
[root@apache ~]# systemctl start httpd
3.安装Java环境
[root@apache ~]# yum -y install java
[root@apache ~]# java -version
openjdk version "1.8.0_362"
OpenJDK Runtime Environment (build 1.8.0_362-b08)
OpenJDK 64-Bit Server VM (build 25.362-b08, mixed mode)
4.安装logstash
上传软件包 logstash-5.5.1.rpm 到/opt目录下
[root@apache ~]# cd /opt/
[root@apache opt]# rz -E
rz waiting to receive.
[root@apache opt]# ls
logstash-5.5.1.rpm rh
[root@apache opt]# rpm -ivh logstash-5.5.1.rpm
警告:logstash-5.5.1.rpm: 头V4 RSA/SHA512 Signature, 密钥 ID d88e42b4: NOKEY
准备中... ################################# [100%]
正在升级/安装...
1:logstash-1:5.5.1-1 ################################# [100%])
Using provided startup.options file: /etc/logstash/startup.options
Successfully created system startup script for Logstash
[root@apache opt]# systemctl start logstash.service
[root@apache opt]# systemctl enable logstash.service
Created symlink from /etc/systemd/system/multi-user.target.wants/logstash.service to /etc/systemd/system/logstash.service.
[root@apache opt]# ln -s /usr/share/logstash/bin/logstash /usr/local/bin/
5.测试 Logstash
Logstash 命令常用选项:
选项 | 含义 |
---|---|
-f | 通过这个选项可以指定 Logstash 的配置文件,根据配置文件配置 Logstash 的输入和输出流。 |
-e | 从命令行中获取,输入、输出后面跟着字符串,该字符串可以被当作 Logstash 的配置(如果是空,则默认使用 stdin 作为输入,stdout 作为输出)。 |
-t | 测试配置文件是否正确,然后退出。 |
[root@apache opt]# logstash -e 'input { stdin{} } output { stdout{} }'
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
WARNING: Could not find logstash.yml which is typically located in $LS_HOME/config or /etc/logstash. You can specify the path using --path.settings. Continuing using the defaults
Could not find log4j2 configuration at path //usr/share/logstash/config/log4j2.properties. Using default config which logs to console
22:21:31.394 [[main]-pipeline-manager] INFO logstash.pipeline - Starting pipeline {"id"=>"main", "pipeline.workers"=>2, "pipeline.batch.size"=>125, "pipeline.batch.delay"=>5, "pipeline.max_inflight"=>250}
22:21:31.456 [[main]-pipeline-manager] INFO logstash.pipeline - Pipeline main started
The stdin plugin is now waiting for input:
22:21:31.555 [Api Webserver] INFO logstash.agent - Successfully started Logstash API endpoint {:port=>9600}
www.baidu.com #键入内容(标准输入)
2023-04-07T14:21:38.108Z apache www.baidu.com
#输出结果(标准输出)
www.sina.com.cn #键入内容(标准输入)
2023-04-07T14:22:06.356Z apache www.suna.com.cn
#输出结果(标准输出)
^C22:22:49.611 [SIGINT handler] WARN logstash.runner - SIGINT received. Shutting down the agent.
22:22:50.129 [LogStash::Runner] WARN logstash.agent - stopping pipeline {:id=>"main"}
//执行 ctrl+c 退出
[root@apache opt]# logstash -e 'input { stdin{} } output { stdout{ codec=>rubydebug } }'
#使用 rubydebug 输出详细格式显示,codec 为一种编解码器
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
WARNING: Could not find logstash.yml which is typically located in $LS_HOME/config or /etc/logstash. You can specify the path using --path.settings. Continuing using the defaults
Could not find log4j2 configuration at path //usr/share/logstash/config/log4j2.properties. Using default config which logs to console
22:30:25.859 [[main]-pipeline-manager] INFO logstash.pipeline - Starting pipeline {"id"=>"main", "pipeline.workers"=>2, "pipeline.batch.size"=>125, "pipeline.batch.delay"=>5, "pipeline.max_inflight"=>250}
22:30:25.931 [[main]-pipeline-manager] INFO logstash.pipeline - Pipeline main started
The stdin plugin is now waiting for input:
22:30:26.054 [Api Webserver] INFO logstash.agent - Successfully started Logstash API endpoint {:port=>9600}
www.baidu.com #键入内容(标准输入)
{
"@timestamp" => 2023-04-07T14:30:32.865Z,
#输出结果(处理后的结果)
"@version" => "1",
"host" => "apache",
"message" => "www.baidu.com"
}
//执行 ctrl+c 退出
[root@apache opt]# logstash -e 'input { stdin{} } output { elasticsearch { hosts=>["20.0.0.200:9200"] } }'
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
WARNING: Could not find logstash.yml which is typically located in $LS_HOME/config or /etc/logstash. You can specify the path using --path.settings. Continuing using the defaults
Could not find log4j2 configuration at path //usr/share/logstash/config/log4j2.properties. Using default config which logs to console
22:35:51.199 [[main]-pipeline-manager] INFO logstash.outputs.elasticsearch - Elasticsearch pool URLs updated {:changes=>{:removed=>[], :added=>[http://20.0.0.200:9200/]}}
22:35:51.208 [[main]-pipeline-manager] INFO logstash.outputs.elasticsearch - Running health check to see if an Elasticsearch connection is working {:healthcheck_url=>http://20.0.0.200:9200/, :path=>"/"}
22:35:51.336 [[main]-pipeline-manager] WARN logstash.outputs.elasticsearch - Restored connection to ES instance {:url=>#<Java::JavaNet::URI:0x6343ef61>}
22:35:51.347 [[main]-pipeline-manager] INFO logstash.outputs.elasticsearch - Using mapping template from {:path=>nil}
22:35:51.584 [[main]-pipeline-manager] INFO logstash.outputs.elasticsearch - Attempting to install template {:manage_template=>{"template"=>"logstash-*", "version"=>50001, "settings"=>{"index.refresh_interval"=>"5s"}, "mappings"=>{"_default_"=>{"_all"=>{"enabled"=>true, "norms"=>false}, "dynamic_templates"=>[{"message_field"=>{"path_match"=>"message", "match_mapping_type"=>"string", "mapping"=>{"type"=>"text", "norms"=>false}}}, {"string_fields"=>{"match"=>"*", "match_mapping_type"=>"string", "mapping"=>{"type"=>"text", "norms"=>false, "fields"=>{"keyword"=>{"type"=>"keyword", "ignore_above"=>256}}}}}], "properties"=>{"@timestamp"=>{"type"=>"date", "include_in_all"=>false}, "@version"=>{"type"=>"keyword", "include_in_all"=>false}, "geoip"=>{"dynamic"=>true, "properties"=>{"ip"=>{"type"=>"ip"}, "location"=>{"type"=>"geo_point"}, "latitude"=>{"type"=>"half_float"}, "longitude"=>{"type"=>"half_float"}}}}}}}}
22:35:51.594 [[main]-pipeline-manager] INFO logstash.outputs.elasticsearch - Installing elasticsearch template to _template/logstash
22:35:51.695 [[main]-pipeline-manager] INFO logstash.outputs.elasticsearch - New Elasticsearch output {:class=>"LogStash::Outputs::ElasticSearch", :hosts=>[#<Java::JavaNet::URI:0x2fc049d7>]}
22:35:51.699 [[main]-pipeline-manager] INFO logstash.pipeline - Starting pipeline {"id"=>"main", "pipeline.workers"=>2, "pipeline.batch.size"=>125, "pipeline.batch.delay"=>5, "pipeline.max_inflight"=>250}
22:35:51.748 [[main]-pipeline-manager] INFO logstash.pipeline - Pipeline main started
The stdin plugin is now waiting for input:
22:35:51.831 [Api Webserver] INFO logstash.agent - Successfully started Logstash API endpoint {:port=>9600}
www.baidu.com #键入内容(标准输入)
www.sina.com.cn #键入内容(标准输入)
www.google.com #键入内容(标准输入)
//执行 ctrl+c 退出
刷新一下网页,结果不在标准输出显示,而是发送至 Elasticsearch 中,可浏览器访问 http://20.0.0.200:9100/ 查看索引信息和数据浏览。
6.定义 logstash配置文件
Logstash 配置文件基本由三部分组成:input、output 以及 filter(可选,根据需要选择使用)。
选项 | 含义 |
---|---|
input | 表示从数据源采集数据,常见的数据源如Kafka、日志文件等 |
filter | 表示数据处理层,包括对数据进行格式化处理、数据类型转换、数据过滤等,支持正则表达式 |
output | 表示将Logstash收集的数据经由过滤器处理之后输出到Elasticsearch |
格式:
input {...}
filter {...}
output {...}
#在每个部分中,也可以指定多个访问方式。例如,若要指定两个日志来源文件,则格式如下:
input {
file { path =>"/var/log/messages" type =>"syslog"}
file { path =>"/var/log/httpd/access.log" type =>"apache"}
}
#修改 Logstash 配置文件,让其收集系统日志/var/log/messages,并将其输出到 elasticsearch 中。
[root@apache opt]# chmod +r /var/log/messages
#让 Logstash 可以读取日志
[root@apache opt]# vim /etc/logstash/conf.d/system.conf
========================================================================================================================
input {
file{
path => "/var/log/messages"
type => "system"
start_position => "beginning"
}
}
output {
elasticsearch {
hosts => ["20.0.0.100:9200"]
index => "system-%{+YYYY.MM.dd}"
}
}
==============================================================================================================
input {
file{
path =>"/var/log/messages" #指定要收集的日志的位置
type =>"system" #自定义日志类型标识
start_position =>"beginning" #表示从开始处收集
}
}
output {
elasticsearch { #输出到 elasticsearch
hosts => ["20.0.0.100:9200"] #指定 elasticsearch 服务器的地址和端口
index =>"system-%{+YYYY.MM.dd}" #指定输出到 elasticsearch 的索引格式
}
}
[root@apache opt]# systemctl start logstash.service
[root@apache opt]# systemctl status logstash.service
● logstash.service - logstash
Loaded: loaded (/etc/systemd/system/logstash.service; enabled; vendor preset: disabled)
Active: active (running) since 六 2023-04-08 01:09:55 CST; 6s ago
Main PID: 80422 (java)
CGroup: /system.slice/logstash.service
└─80422 /usr/bin/java -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -...
4月 08 01:09:55 apache systemd[1]: logstash.service: main process exited...LL
4月 08 01:09:55 apache systemd[1]: Unit logstash.service entered failed ...e.
4月 08 01:09:55 apache systemd[1]: logstash.service failed.
4月 08 01:09:55 apache systemd[1]: Started logstash.
4月 08 01:09:55 apache systemd[1]: Starting logstash...
Hint: Some lines were ellipsized, use -l to show in full.
ELK Kiabana 部署(在 Node1 节点上操作)
1.安装 Kiabana
上传软件包 kibana-5.5.1-x86_64.rpm 到/opt目录
[root@node1 elasticsearch-head]# cd /opt/
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm node-v8.2.1.tar.gz
elasticsearch-head.tar.gz phantomjs-2.1.1-linux-x86_64.tar.bz2
node-v8.2.1 rh
[root@node1 opt]# tar zxvf kibana-5.5.1-linux-x86_64.tar.gz -C /usr/local/
[root@node1 opt]# cd /usr/local/
[root@node1 local]# ls
bin games kibana-5.5.1-linux-x86_64 lib64 sbin src
etc include lib libexec share
[root@node1 local]# mv kibana-5.5.1-linux-x86_64/ kibana
[root@node1 local]# ls
bin etc games include kibana lib lib64 libexec sbin share src
[root@node1 local]# cd kibana/
[root@node1 kibana]# ls
bin LICENSE.txt NOTICE.txt plugins ui_framework
config node optimize README.txt webpackShims
data node_modules package.json src
2.设置 Kibana 的主配置文件
[root@node1 kibana]# vim config/kibana.yml
--2--取消注释,Kiabana 服务的默认监听端口为5601
server.port: 5601
--7--取消注释,设置 Kiabana 的监听地址,0.0.0.0代表所有地址
server.host: "0.0.0.0"
--21--取消注释,设置和 Elasticsearch 建立连接的地址和端口
elasticsearch.url: "http://20.0.0.100:9200"
--30--取消注释,设置在 elasticsearch 中添加.kibana索引
kibana.index: ".kibana"
3.启动 Kibana 服务
启动kibana,并且在后台运行,如果在生产环境中关闭窗口服务也会关闭
[root@node1 kibana]# ls
bin LICENSE.txt NOTICE.txt plugins ui_framework
config node optimize README.txt webpackShims
data node_modules package.json src
[root@node1 kibana]# cd bin/
[root@node1 bin]# ls
kibana kibana-plugin
[root@node1 bin]# ./kibana &
## 注意:此命令后台启动服务后,一旦窗口关闭随着服务也关闭
[2] 53978
[root@node1 bin]# log [17:43:25.250] [info][status][plugin:kibana@5.5.1] Status changed from uninitialized to green - Ready
log [17:43:25.340] [info][status][plugin:elasticsearch@5.5.1] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [17:43:25.384] [info][status][plugin:console@5.5.1] Status changed from uninitialized to green - Ready
log [17:43:25.409] [warning] You're running Kibana 5.5.1 with some different versions of Elasticsearch. Update Kibana or Elasticsearch to the same version to prevent compatibility issues: v5.5.0 @ 20.0.0.100:9200 (20.0.0.100), v5.5.0 @ 20.0.0.200:9200 (20.0.0.200)
log [17:43:25.412] [info][status][plugin:metrics@5.5.1] Status changed from uninitialized to green - Ready
log [17:43:25.616] [info][status][plugin:timelion@5.5.1] Status changed from uninitialized to green - Ready
log [17:43:25.620] [info][listening] Server running at http://0.0.0.0:5602
log [17:43:25.622] [info][status][ui settings] Status changed from uninitialized to yellow - Elasticsearch plugin is yellow
^C
[root@node1 bin]# log [17:43:30.434] [info][status][plugin:elasticsearch@5.5.1] Status changed from yellow to yellow - No existing Kibana index found
log [17:43:30.667] [info][status][plugin:elasticsearch@5.5.1] Status changed from yellow to green - Kibana index ready
log [17:43:30.671] [info][status][ui settings] Status changed from yellow to green - Ready
^C
[root@node1 bin]# lsof -i:5601
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
node 54173 root 14u IPv4 95849 0t0 TCP *:esmagent (LISTEN)
在生产环境中这时需要用到了 nohup ,无论关闭或者不关闭窗口都会在后台运行服务
[root@node1 bin]# nohup ./kibana &
[4] 54274
nohup: 忽略输入并把输出追加到"nohup.out"
[root@node1 bin]# lsof -i:5601
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
node 54173 root 14u IPv4 95849 0t0 TCP *:esmagent (LISTEN)
[4]+ 退出 1 nohup ./kibana
也可以使用 systemctl start kibana.service启动服务
[root@node1 bin]# systemctl start kibana.service
## 启动
[root@node1 bin]# systemctl enable kibana.service
##开机自启
[root@node1 bin]# etstat -natp | grep 5601
4.验证 Kibana
浏览器访问 http://20.0.0.100:5601 登录kibana页面
第一次登录需要添加一个 Elasticsearch 索引:
Index name or pattern
//输入:system-* #在索引名中输入之前配置的 Output 前缀“system”
单击 “create” 按钮创建,单击 “Discover” 按钮可查看图表信息及日志信息。
数据展示可以分类显示,在“Available Fields”中的“host”,然后单击 “add”按钮,可以看到按照“host”筛选后的结果
5.将 Apache 服务器的日志(访问的、错误的)添加到 Elasticsearch 并通过 Kibana 显示
[root@apache opt]# vim /etc/logstash/conf.d/apache_log.conf
input {
file{
path => "/etc/httpd/logs/access_log"
type => "access"
start_position => "beginning"
}
file{
path => "/etc/httpd/logs/error_log"
type => "error"
start_position => "beginning"
}
}
output {
if [type] == "access" {
elasticsearch {
hosts => ["20.0.0.100:9200"]
index => "apache_access-%{+YYYY.MM.dd}"
}
}
if [type] == "error" {
elasticsearch {
hosts => ["20.0.0.100:9200"]
index => "apache_error-%{+YYYY.MM.dd}"
}
}
}
[root@apache opt]# cd /etc/logstash/conf.d/
[root@apache conf.d]# logstash -f apache_log.conf
打开apache http://20.0.0.100:5601/ 刷新一下网页
如果apache_access在外置浏览器出不来,可以在虚拟机中的内置浏览器输入20.0.0.210的本地ip,如若虚拟机不是图形化页面,则需要自身检查网络互通性了。
*浏览器访问 http://20.0.0.210:5601 登录 Kibana,单击“Create Index Pattern”按钮添加索引, 在索引名中输入之前配置的 Output 前缀 apache_access-*,并单击“Create”按钮。在用相同的方法添加 apache_error-索引。
选择“Discover”选项卡,在中间下拉列表中选择刚添加的 apache_access- 、apache_error- 索引, 可以查看相应的图表及日志信息。**
Filebeat+ELK 部署,使用新机20.0.0.220作为日志收集分析系统
1.安装 Filebeat
[root@localhost ~]# cd /opt/
[root@localhost opt]# ls
filebeat-6.6.0-linux-x86_64.tar.gz rh
[root@localhost opt]# tar zxvf filebeat-6.6.0-linux-x86_64.tar.gz
[root@localhost opt]# mv filebeat-6.6.0-linux-x86_64 /usr/local/filebeat
2.设置 filebeat 的主配置文件
[root@localhost opt]# cd !$
## 把上个命令的参数作为cd参数使用
cd /usr/local/filebeat
[root@localhost filebeat]# ls
fields.yml filebeat.reference.yml kibana module NOTICE.txt
filebeat filebeat.yml LICENSE.txt modules.d README.md
[root@localhost filebeat]# vim filebeat.yml
29 - /var/log/messages
30 - /var/log/*.log
##可以esc切换到命令模式,在所需要的行 使用 yy + p 进行复制操作
50 fields:
51 service_name: filebeat
52 log_type: log
53 service_id: 20.0.0.220
--------------Elasticsearch output-------------------
(全部注释掉)
---------------------------------------------------
----------------Logstash output---------------------
output.logstash:
hosts: ["20.0.0.210:5044"] #指定 logstash 的 IP 和端口
[root@localhost filebeat]# ./filebeat -e -c filebeat.yml
#启动 filebeat
3.在 Logstash 组件所在节点上新建一个 Logstash 配置文件
[root@apache ~]# cd /etc/logstash/conf.d
[root@apache conf.d]# ls
apache_log.conf system.conf
[root@apache conf.d]# vim logstash.conf
input {
beats {
port => "5044"
}
}
output {
elasticsearch {
hosts => ["20.0.0.100:9200"]
index => "%{[fields][service_name]}-%{+YYYY.MM.dd}"
}
stdout {
codec => rubydebug
}
}
[root@apache conf.d]# logstash -f logstash.conf
#启动 logstash
4.浏览器访问 http://20.0.0.100:5601 登录 Kibana,单击“Create Index Pattern”按钮添加索引“filebeat-*”,单击 “create” 按钮创建,单击 “Discover” 按钮可查看图表信息及日志信息。
总结
生产环境中的困难:
1:开发人员不能登录线上服务器查看日志
2:各个系统都有日志,日志分散难以查找
3:日志数据量大,查找慢,数据不够实时
logstash作为日志搜集器,从数据源采集数据,并对数据进行过滤,格式化处理,然后交由Elasticsearch存储,kibana对日志进行可视化处理。
input | 数据采集 |
output | 数据输出 |
filter | 数据过滤 |
日志收集最好的开发语言就是java 因为有JVM
工具 | 含义 | 作用 |
---|---|---|
ElasticSearch | 分布式存储检索引擎 | 存储各类日志 |
Kiabana | 提供图形化的 web 界面来浏览 Elasticsearch 日志数据 | 汇总、分析和搜索重要数据 |
Logstash | 数据收集引擎 | 支持动态的从各种数据源搜集数据,并对数据进行过滤、分析、丰富、统一格式等操作,然后存储到用户指定的位置,一般会发送给 Elasticsearch |
Filebeat | 轻量级的开源日志文件数据搜集器 | 能快速收集数据,并发送给 logstash 进或是直接发给 Elasticsearch 存储 |