1、安装、启动测试 2、配置、测试 因为ELK 版本更新很快,所以网上有些配置方法已经被废弃了。 logstash-2.3.4 elasticsearch-2.3.5.tar kibana-4.5.4-linux-x64.tar logstash 启动logstash,后面要加上参数 [root@l... ...
分类:
其他好文 时间:
2016-08-24 14:38:52
阅读次数:
225
1.判断索引是否存在IndicesExistsResponse indexResponse = ia.client.admin().indices().prepareExists("blog")
.execute().actionGet();System.out.println(indexResponse.isExists());也可以同时判断多个索引是否存在:IndicesExistsRespon...
分类:
其他好文 时间:
2016-08-24 09:58:06
阅读次数:
155
ElasticSearch部署文档(Ubuntu 14.04) 参考链接 https://www.elastic.co/guide/en/elasticsearch/guide/current/heap-sizing.html https://www.elastic.co/guide/en/elas ...
分类:
系统相关 时间:
2016-08-24 01:03:12
阅读次数:
283
对于把shard的概念讲清楚,用这样一张图,也太喜感了
分类:
其他好文 时间:
2016-08-23 19:11:30
阅读次数:
152
简介: 第二次尝试 ELK 记录... 工作流程: 1、客户端的 Logstash 将日志信息采集到之后传输给 Redis 做消息队列 2、然后服务端的 Logstash 将日志从 Redis 中取出之后根据日志规则将数据序列化( 方便查询 )完成后存入 Elasticsearch 文本数据库中 3 ...
分类:
其他好文 时间:
2016-08-23 13:00:52
阅读次数:
176
简介: ELK 是一套开源的日志管理平台,主要包括三个组件,可以用于日志的收集、分析、存储和展示工作。 ELK 成员:Elasticsearch 、Logstash 、Kibana( K4 ) ELK 平台特性: 1、处理方式灵活,Elasticsearch 采用实时全文索引,不需要像 storm ...
分类:
其他好文 时间:
2016-08-23 12:50:58
阅读次数:
149
https://www.elastic.co/blog/index-vs-type Who has never wondered whether new data should be put into a new type of an existing index, or into a new in ...
分类:
其他好文 时间:
2016-08-22 19:54:13
阅读次数:
235
#### 安装ES head插件 具体请参考github地址:https://github.com/mobz/elasticsearch-head ``` # 在线安装head插件 $ cd /letv/elasticsearch-1.7.3/bin $ ./plugin --install mob ...
分类:
其他好文 时间:
2016-08-22 12:31:01
阅读次数:
119
接上一篇 ElasticSearch操作实例大全 文档结构操作(1) 前提条件--开发环境已安装 (自行百度) 客户端用的是nest 学习elasticSearch主要是要掌握像sqlserver要会操作数据结构的增删改和数据的增删改查,这里主要写elasticSearch的文档结构操作和文档数据操 ...
分类:
其他好文 时间:
2016-08-22 10:40:56
阅读次数:
98
第一步:环境匹配 1)elasticsearch 2.3.3 成功安装部署 2)mysql安装成功,增删改查无误~~。 3)要保证elasticsearch-jdbc的版本要与elasticsearch的版本是一致的(下面的内容会提示下载)。否则会报错,无法进行之后的步骤。 (例如elasticse ...
分类:
数据库 时间:
2016-08-20 19:25:56
阅读次数:
1037