├── .env ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── README.md ├── Springboot-Elk.log ├── docker-compose.yml ├── elk ├── elasticsearch │ └── elasticsearch.yml ├── kibana │ └── kibana.yml └── logstash │ └── logstash.conf ├── filebeat ├── Dockerfile └── filebeat.yml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── postman └── springbootelk.postman_collection.json ├── screenshots ├── main.PNG ├── screenshot_1.PNG ├── screenshot_2.PNG ├── screenshot_3.PNG ├── screenshot_4.PNG ├── screenshot_5.PNG ├── screenshot_6.PNG └── screenshot_7.PNG └── src ├── main ├── java │ └── com │ │ └── spingbootelk │ │ └── main │ │ ├── MainApplication.java │ │ ├── controller │ │ └── PersonController.java │ │ ├── error │ │ └── ResourceNotFoundException.java │ │ ├── model │ │ └── Person.java │ │ ├── repository │ │ └── PersonRepository.java │ │ └── service │ │ ├── IPersonService.java │ │ └── impl │ │ └── PersonService.java └── resources │ ├── application.yml │ └── logback-spring.xml └── test └── java └── com └── spingbootelk └── main └── MainApplicationTests.java /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/README.md -------------------------------------------------------------------------------- /Springboot-Elk.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/Springboot-Elk.log -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /elk/elasticsearch/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/elk/elasticsearch/elasticsearch.yml -------------------------------------------------------------------------------- /elk/kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/elk/kibana/kibana.yml -------------------------------------------------------------------------------- /elk/logstash/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/elk/logstash/logstash.conf -------------------------------------------------------------------------------- /filebeat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/filebeat/Dockerfile -------------------------------------------------------------------------------- /filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/filebeat/filebeat.yml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/pom.xml -------------------------------------------------------------------------------- /postman/springbootelk.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/postman/springbootelk.postman_collection.json -------------------------------------------------------------------------------- /screenshots/main.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/main.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_1.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_2.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_3.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_4.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_5.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_6.PNG -------------------------------------------------------------------------------- /screenshots/screenshot_7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/screenshots/screenshot_7.PNG -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/MainApplication.java -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/controller/PersonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/controller/PersonController.java -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/error/ResourceNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/error/ResourceNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/model/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/model/Person.java -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/repository/PersonRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/repository/PersonRepository.java -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/service/IPersonService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/service/IPersonService.java -------------------------------------------------------------------------------- /src/main/java/com/spingbootelk/main/service/impl/PersonService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/java/com/spingbootelk/main/service/impl/PersonService.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/test/java/com/spingbootelk/main/MainApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rapter1990/SpringBootElk/HEAD/src/test/java/com/spingbootelk/main/MainApplicationTests.java --------------------------------------------------------------------------------