Beats Dashboards 基础1

2022-02-11 16:27:07 浏览数 (1)

概要


承前

完成上一篇《Beats 基础》后再看ES里的信息

代码语言:javascript复制
[root@h102 ~]# curl localhost:9200/_cat/indices?v
health status index               pri rep docs.count docs.deleted store.size pri.store.size 
yellow open   logstash-2015.12.23   5   1        100            0    235.8kb        235.8kb 
yellow open   filebeat-2015.12.24   5   1       3175            0   1018.6kb       1018.6kb 
yellow open   logstash-2015.12.22   5   1         41            0    126.5kb        126.5kb 
yellow open   .kibana               1   1          2            0      8.3kb          8.3kb 
[root@h102 ~]# 

发现已经产生了 filebeat-* 的index,并且有相当数量的文档


下载beats dashboards

代码语言:javascript复制
[root@h102 ~]# mkdir beats-dashboards
[root@h102 ~]# cd beats-dashboards/
[root@h102 beats-dashboards]# curl -L -O http://download.elastic.co/beats/dashboards/beats-dashboards-1.0.1.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
  2  763k    2 19025    0     0   5422      0  0:02:24  0:00:03  0:02:21  7136
  5  763k    5 43641    0     0  10651      0  0:01:13  0:00:04  0:01:09 13407
  ...
  ...
  99  763k   99  760k    0     0   7210      0  0:01:48  0:01:48 --:--:--  6970
  99  763k   99  762k    0     0   7123      0  0:01:49  0:01:49 --:--:--  5270
 100  763k  100  763k    0     0   7127      0  0:01:49  0:01:49 --:--:--  6278
[root@h102 beats-dashboards]# ll 
total 764
-rw-r--r-- 1 root root 782123 Dec 24 23:47 beats-dashboards-1.0.1.tar.gz
[root@h102 beats-dashboards]# du -sh beats-dashboards-1.0.1.tar.gz 
764K	beats-dashboards-1.0.1.tar.gz
[root@h102 beats-dashboards]#

0 人点赞