博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kibana对logstash监控获取不到数据
阅读量:5216 次
发布时间:2019-06-14

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

需求:

  kibana监控elasticsearch+kibana+logstash的性能寻找,性能瓶颈!

发现启动logstash加载logstash.yml,不读取配置好的xpack.monitoring.elasticsearch.url: "xxx"的值,而读取的系统默认的"http://localhost:9200"实例进行健康监测!,搞得懵逼了!,搞了好几天最后发现问题了,yaml语言的语法,开启的选项必须对齐。

简单的elk架构

 

  

错误日志:

[ERROR][logstash.licensechecker.licensemanager] Unable to retrieve license information from license server {:message=>"Elasticsearch Unreachable: [http://localhost:9200/][Manticore::SocketException] Connection refused",

解决方案:

  查看logstash.yml,对开启的参数需要对齐,方才读取参数的值!

[root@DZSWJ_NRGL config]# egrep -v "^#|^$" logstash.yml node.name: node-lg-xxx.xxx pipeline.workers: 3pipeline.batch.size: 256pipeline.batch.delay: 3000http.host: "xxx.xxx.xxxx.xxx"http.port: "9600"log.level: warnxpack.monitoring.elasticsearch.url: "http://xxx.xxx.xxx.xxx:9200"xpack.monitoring.elasticsearch.username: "logstash_system"xpack.monitoring.elasticsearch.password: "123123"

 kibana展示图

 

转载于:https://www.cnblogs.com/xiaochina/p/8553498.html

你可能感兴趣的文章
Linux下介绍一款不错的HTML编辑器
查看>>
尚学堂--Java异常
查看>>
Django Rest Framework --序列化、请求数据校验
查看>>
Spring的常用工具类
查看>>
本地-云端的文件传输
查看>>
在Gridview编辑时添加DropDownList控件并设置默认值
查看>>
hdu 1596 find the safest road
查看>>
codeforces 598D Igor In the Museum
查看>>
核心②undefined 和 null
查看>>
Android--UI之ProgressBar
查看>>
DOS操作数据库基础
查看>>
Windows 8 商店应用开发设计十大常见问题(一)
查看>>
CodeForces A. Many Equal Substrings
查看>>
Binary String Matching
查看>>
【Unity Shader】(六) ------ 复杂的光照(上)
查看>>
BETA冲刺(7/7)
查看>>
Android浏览器访问java web的方法
查看>>
设计模式:原型模式
查看>>
Item 12: Copy all parts of an object(Effective C++)
查看>>
菜根谭#60
查看>>