Java

​本篇介绍如果通过Spring的事件模型来实现设计模型中的观察者模式。1、创建业务相关的Event事件/***@Author:knight*@Description:新用户注册事件*@Date:Createdin2021/9/816:05*/publicclassUserRegisterEventextendsApplicationEvent{privatefinalStringuserName;publicUserRegisterEvent(StringuserName){super(userName);this.userName&...
1、使用docker拉取filebeat镜像dockerpulldocker.elastic.co/beats/filebeat:7.13.32、下载filebeat配置文件curl-L-Ohttps://raw.githubusercontent.com/elastic/beats/7.13/deploy/docker/filebeat.docker.yml3、启动容器dockerrun\docker.elastic.co/beats/filebeat:7.13.3\set...
1、使用docker拉取kibana镜像dockerpulldocker.elastic.co/kibana/kibana:7.13.32、启动容器dockernetworkcreateelasticdockerrun-d--namekibana--netelastic-p5601:5601-e"ELASTICSEARCH_HOSTS=http://es:9200"docker.elastic.co/kibana/kibana:7.13.3通过创建elastic网络,可以通过容器名称+端口访问各个容器应用...
1、使用docker拉取elasticsearch镜像dockerpulldocker.elastic.co/elasticsearch/elasticsearch:7.13.32、启动容器dockernetworkcreateelasticdockerrun-d--namees--netelastic-p9200:9200-p9300:9300-e"ES_JAVA_OPTS=-Xms512m-Xmx512m"-e"discovery.type=single-node"docker.elastic.co/...
1、在pom文件中添加依赖<dependency><groupId>net.logstash.logback</groupId><artifactId>logstash-logback-encoder</artifactId><version>6.2</version></dependency>2、创建logback-spring.xml文件<?xmlversion="1.0"encoding="UTF-...
本篇介绍如何通过filebeat来采集springboot日志1、设置springboot日志输出路径logging:file:path:D:/logs2、设置filebeat配置参数编辑filebeat.yml文件的filebeat.inputs参数filebeat.inputs:-type:logenabled:truepaths:-D:\logs\*json.keys_under_root:truejson.overwrite_keys:truetags:["tomcat"]exclude_files:['.gz$']3、启动filebeat...
本篇介绍如何通过filebeat来收集nginx日志1、filebeat启用nginx模块linux:./filebeatmodulesenablenginxwindows:filebeat.exemodulesenablenginx2、配置nginx日志参数修改modules.d/nginx.yml文件-module:nginxaccess:enabled:truevar.paths:["D:/knight/nginx-1.17.0/logs/*"]error:enabled:truevar.paths:["D:...
1、访问官网下载安装文件https://www.elastic.co/cn/beats/filebeat2、修改配置文件修改配置文件filebeat.yml,配置elasticsearch和kibana访问地址output.elasticsearch:hosts:["localhost:9200"]username:"elastic"password:"changeme"setup.kibana:host:"localhost:5601"3、启动命令linux:sudo./filebeat-e-cfile...
1、访问官网进行下载安装文件https://www.elastic.co/cn/elasticsearch/2、启动命令linux:bin/elasticsearchwindows:bin\elasticsearch.bat3、验证是否启动成功curlhttp://localhost:9200返回如下内容表示启动成功
启动命令:filebeat.exe-e-cfilebeat.yml