大数据--Kibana 简介

ELK套件(ELK stack)是指ElasticSearch、Logstash和Kibana三件套。这三个软件可以组成一套日志分析和监控工具。

Elasticsearch是个开源分布式搜索引擎,它的特点有:分布式,零配置,自动发现,索引自动分片,索引副本机制,restful风格接口,多数据源,自动搜索负载等。

Logstash是一个完全开源的工具,他可以对你的日志进行收集、过滤,并将其存储供以后使用(如,搜索)。

Kibana 也是一个开源和免费的工具,它Kibana可以为 Logstash 和 ElasticSearch 提供的日志分析友好的 Web 界面,可以帮助您汇总、分析和搜索重要数据日志。

 

目前我们看到的 angularjs 版本 kibana 其实原名叫 elasticsearch-dashboard,但跟 Kibana2 作者是同一个人,换句话说,kibana 比 logstash 还早就进了 elasticsearch 名下。这个项目改名 Kibana 是在 2014 年 2 月,也被叫做 Kibana3。全新的设计一下子风靡 DevOps 界。随后其他社区纷纷借鉴,Graphite 目前最流行的 Grafana 界面就是由此而来,至今代码中还留存有十余处 kbn 字样。

2014 年 4 月,Kibana3 停止开发,ES 公司集中人力开始 Kibana4 的重构,在 2015 年初发布了使用 JRuby 做后端的 beta 版后,于 3 月正式推出使用 node.js 做后端的正式版。

 



 

 

What's New?

The latest release of Kibana is compatible with the latest version of Elasticsearch and features on-demand and scheduled PDF reports (via Watcher), greater customizability of labels and colors, and native authentication screen and session management with Shield (security). Learn more.

 

Seamless Integration with Elasticsearch

Architected to work with Elasticsearch, Kibana gives shape to any kind of data — structured and unstructured — indexed into Elasticsearch. It also benefits from Elasticsearch's powerful search and analytics capabilities.

 

Give Shape to Your Data

To better understand large volumes of data, easily create bar charts, line and scatter plots, histograms, pie charts, and maps.

 

Sophisticated Analytics

Leverage the power of Elasticsearch analytics capabilities to analyze your data intelligently, perform mathematical transformations, and slice and dice your data as you see fit.

 

Empower More Team Members

Visualizing data in a powerful interface empowers every line of business to make practical use of your data collection.

 

Flexible Interface, Easy to Share

Easily create, save, share, and embed your visualized data for quick and smart communication.

 

Easy Setup

Simple and friendly setup and startup. Kibana 4 ships with its own web server to help you get up and running quickly.

 

Visualize Data from Many Sources

Easily visualize data pushed into Elasticsearch from Logstash, ES-Hadoop, Beats, or third-party technologies like Apache Flume, Fluentd, and many others.

 

Simple Data Export

Easily export interesting bits of data to merge and meld with other data sets to quickly prototype new analyses and discover something new.

 

Visually Interact with Elasticsearch REST APIs

Sense is a visual console that provides auto-complete, auto-indentation, and syntax checking all through a Kibana plugin. Enhance the way that you interact with the Elasticsearch APIs 

 

 



 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ELK是一个开源的日志管理平台,由三个开源工具Elasticsearch、Logstash和Kibana组成。其中Elasticsearch是一个分布式的全文搜索引擎,Logstash是一个数据采集引擎,Kibana则是一个数据可视化工具。ELK可以帮助用户收集、分析和存储大量的数据,包括日志、指标和其他类型的数据。其中Logstash可以从多个来源采集数据,转换数据,然后将数据发送到您最喜欢的“存储库”中,而Elasticsearch则可以存储和索引这些数据,Kibana则可以帮助用户可视化这些数据并进行分析。 演示如下: 1. 安装ELK ```shell # 安装Java sudo apt-get update sudo apt-get install openjdk-8-jdk # 安装Elasticsearch wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.14.0-linux-x86_64.tar.gz tar -xzf elasticsearch-7.14.0-linux-x86_64.tar.gz cd elasticsearch-7.14.0/bin ./elasticsearch # 安装Kibana wget https://artifacts.elastic.co/downloads/kibana/kibana-7.14.0-linux-x86_64.tar.gz tar -xzf kibana-7.14.0-linux-x86_64.tar.gz cd kibana-7.14.0-linux-x86_64/bin ./kibana # 安装Logstash wget https://artifacts.elastic.co/downloads/logstash/logstash-7.14.0-linux-x86_64.tar.gz tar -xzf logstash-7.14.0-linux-x86_64.tar.gz cd logstash-7.14.0/bin ./logstash ``` 2. 采集数据 ```shell # 创建一个名为test.conf的配置文件 input { file { path => "/var/log/syslog" } } output { elasticsearch { hosts => ["localhost:9200"] index => "test-%{+YYYY.MM.dd}" } } # 启动Logstash并指定配置文件 ./logstash -f test.conf ``` 3. 可视化数据 在Kibana中创建一个索引模式,然后就可以使用Kibana的可视化工具来分析和可视化数据了。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值