ElasticSearch进阶(五)MetricBeat的简单使用

前言

      本章讲解MetricBeat的简单使用

方法

1.概念

上一章节我们学习了Beats中filebeat的简单使用,本次将进行metricbeat的简单使用。

首先我们来看一下metricbeat,下面的图片来自于官网:https://www.elastic.co/cn/products/beats/metricbeat

ElasticSearch进阶(五)MetricBeat的简单使用_第1张图片

通过这句话我们发现,metricbeat用来收集诸如系统或者Nginx等服务的指标数据并传输给我们的ELK

MetricBeat由两个部分组成:一个是Module,一个是MetricSet

Module:收集的对象,如操作系统、redis、nginx等

MetricSet:收集的指标,如cpu、memory、network等

2.metricbeat的安装

我们可以在官网下载指定版本的MetricBeat:https://www.elastic.co/cn/downloads/beats/metricbeat

本次我们下载的是7.4.0的window版本:

ElasticSearch进阶(五)MetricBeat的简单使用_第2张图片

我们发现,其和filebeat的结构十分的相似哦!

3.使用metricbeat读取system指标输出到elasticsearch

由于我们的metricbeat默认仅仅收集操作系统的指标数据,所以我们无需进行多余的配置。

1)查询当前支持的module

使用命令查询当前启用和未启用的module:metricbeat.exe modules list

ElasticSearch进阶(五)MetricBeat的简单使用_第3张图片

由此可见,我们默认的就已经启动了system的module了

2)启动es,启动metricbeat

启动metricbeat:metricbeat.exe -e

观察写入es中的数据:

ElasticSearch进阶(五)MetricBeat的简单使用_第4张图片

我们可以发现,这些数据很容易被我们解析!

你可能感兴趣的:(ElasticSearch)