
elk
周子青
这个作者很懒,什么都没留下…
展开
-
elasticsearch服务器CPU 占用过高 调整
elasticsearch服务器CPU100%分析 1、通过top命令查询占用CPU高的进程ID 然后ps aux | grep [pid] 2、发现线程31342、28478等占用比较多的CPU资源 3、将十进制pid转换为十六进制的pid printf “0x%x” 28478 4、查询具体的线程信息 jstack -l 28354 | grep 6f3e -A 20 这里我们基本上可以确定,当前系统缓慢的原因主要是垃圾回收过于频繁,导致 GC 停顿时间...原创 2020-10-26 10:34:18 · 6006 阅读 · 0 评论 -
EHR和oa系统增加elk日志系统全解析,elasticsearch+logstash+kibana+filebeat搭建elk日志系统
1、创建虚拟机 2、安装docker和docker-compose #docker安装 add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" apt-get update apt-get install docker-ce=5:19.03.11~3-0~ubuntu-xenial 编辑/etc/docker/daemon..原创 2020-06-28 10:50:34 · 559 阅读 · 0 评论