博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Elasticsearch基础入门(3)整合kibana
阅读量:6517 次
发布时间:2019-06-24

本文共 2201 字,大约阅读时间需要 7 分钟。

hot3.png

前言

Kibana 是一个开源的分析和可视化平台。它提供搜索、查看和与存储在 Elasticsearch 索引中的数据进行交互的功能。可以轻松地执行高级数据分析,并在各种图表、表格和地图中可视化数据。

本篇文章是基于ElasticSearch基础上来写的,为了更好地理解请先移步

--><---

--><---

下载与安装

[root@localhost tools]# wget https://artifacts.elastic.co/downloads/kibana/kibana-6.1.3-linux-x86_64.tar.gz[root@localhost tools]# tar -xzvf kibana-6.1.3-linux-x86_64.tar.gz

采坑提醒

kibana和elasticSearch的版本最好要保持一致,不然启动kibana会报错。

解压后kibana的目录结构是这样的:

配置

我们用vim编辑 config目录下的 kibana.yml , 我们先来看下目前要用到的主要配置

# Kibana is served by a back end server. This setting specifies the port to use.# 自定义端口server.port: 5601# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.# The default is 'localhost', which usually means remote machines will not be able to connect.# To allow connections from remote users, set this parameter to a non-loopback address.# 自定义IPserver.host: "172.19.26.110"# The URL of the Elasticsearch instance to use for all your queries.# ElasticSearch的IP地址elasticsearch.url: "http://172.19.26.110:9200"

这里我们只需要配置 server.port 、server.host 、elasticsearch.url 即可,最简单配置其实只配置elasticsearch.url就行了,因为我的Linux环境是搭建在虚拟机里的,所以为了管理方便我需要在宿主机来访问,所以会配置kibana的端口和IP。端口可以改但建议使用kibana默认端口。

 

启动

打开 kibana安装目录,执行 ./bin/kibana启动服务:

[elasticsearch@localhost kibana-6.1.2]$ ./bin/kibana  log   [09:34:07.074] [info][status][plugin:kibana@6.1.2] Status changed from uninitialized to green - Ready  log   [09:34:07.191] [info][status][plugin:elasticsearch@6.1.2] Status changed from uninitialized to yellow - Waiting for Elasticsearch  log   [09:34:07.278] [info][status][plugin:console@6.1.2] Status changed from uninitialized to green - Ready  log   [09:34:07.313] [info][status][plugin:metrics@6.1.2] Status changed from uninitialized to green - Ready  log   [09:34:07.417] [info][status][plugin:elasticsearch@6.1.2] Status changed from yellow to green - Ready  log   [09:34:07.903] [info][status][plugin:timelion@6.1.2] Status changed from uninitialized to green - Ready  log   [09:34:07.907] [info][listening] Server running at http://172.19.26.110:5601

然后通过浏览器访问,如下图:

到现在为止,我们的kibana平台就搭建好了,我们可以在左侧菜单栏 Dev Tools 控制台就可以通过表达式来操作elasticSearch服务了,如下:

 

转载于:https://my.oschina.net/codingcloud/blog/1616337

你可能感兴趣的文章
C++中二维数组的动态创建与处理
查看>>
SPOJ 10628 COT - Count on a tree(在树上建立主席树)(LCA)
查看>>
SpringInAction--Bean参数的自动注入
查看>>
素数筛
查看>>
centos /linux 修改目录或文件权限
查看>>
leetcode--
查看>>
访问者模式
查看>>
jQuery清空标签内容--防止内存泄露
查看>>
关于 HandlerMethodArgumentResolver 类 以及 WebArgumentResolver 类 自定义解析参数
查看>>
30个php操作redis常用方法代码例子
查看>>
阿里PB级Kubernetes日志平台建设实践
查看>>
监听者模式实践-java事件和事件监听器
查看>>
比RBAC更好的权限认证方式(Auth类认证)
查看>>
httpd之编译安装详解
查看>>
服务器磁盘采购分析
查看>>
Java IO 之 InputStream源码
查看>>
PHP中is_callable()函数的用法详解
查看>>
Node.js股票模拟交易后台
查看>>
android动画
查看>>
新书试读_信息系统项目管理师考试考点分析与真题详解
查看>>