Spring Boot Microservices + ELK(Elasticsearch, Logstash, and Kibana) Stack Hello World Example
In this tutorial we will be using ELK stack along with Spring Boot Microservice for analyzing the generated logs.
The implementation architecture will be as follows-
What is ELK? Need for it?
The ELK Stack consists of three open-source products - Elasticsearch, Logstash, and Kibana from Elastic.- Elasticsearch is a NoSQL database that is based on the Lucene search engine.
- Logstash is a log pipeline tool that accepts inputs from various sources, executes different transformations, and exports the data to various targets. It is a dynamic data collection pipeline with an extensible plugin ecosystem and strong Elasticsearch synergy
- Kibana is a visualization UI layer that works on top of Elasticsearch.
Use Cases-
- Consider you have a single application running and it produces logs. Now suppose you want analyze the logs generated. One option is to manually analyze them. But suppose these logs are large, then manually analyzing them is not feasible.
- Suppose we have multiple Application running and all these applications produce logs. If we have to analyze the logs manually we will need to go through all the log files. These may run into hundreds.
Video
This tutorial is explained in the below Youtube Video.Lets Begin
We will first download the required stack.- Elasticsearch -
- Download the latest version of elasticsearch from Elasticsearch downloads
- Run the elasticsearch.bat using the command prompt. Elasticsearch can then be accessed at localhost:9200
- Download the latest version of elasticsearch from Elasticsearch downloads
- Kibana -
- Download the latest version of kibana from Kibana downloads
- Modify the kibana.yml to point to the elasticsearch instance. In our case this will be 9200. So uncomment the following line in kibana.yml-
elasticsearch.url: "http://localhost:9200"
- Run the kibana.bat using the command prompt. kibana UI can then be accessed at localhost:5601
- Download the latest version of kibana from Kibana downloads
- Logstash -
- Download the latest version of logstash from Logstash downloads
- Create a configuration file named logstash.conf. In further section we will be making the changes for this file and starting logstash.
- Download the latest version of logstash from Logstash downloads
Define the pom.xml as follows-
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.javainuse</groupId> <artifactId>spring-boot-elk</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>spring-boot-elk</name> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.6.RELEASE</version> <relativePath /> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>Create the Spring Boot Bootstrap class as follows-
package com.javainuse; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class HelloWorldSpringBootApplication { public static void main(String[] args) { SpringApplication.run(HelloWorldSpringBootApplication.class, args); } }Next define the controller to expose REST API. We will be making use of these calls to write content to the log file.
package com.javainuse; import java.io.PrintWriter; import java.io.StringWriter; import java.util.Date; import org.apache.log4j.Level; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @RestController class ELKController { private static final Logger LOG = Logger.getLogger(ELKController.class.getName()); @Autowired RestTemplate restTemplete; @Bean RestTemplate restTemplate() { return new RestTemplate(); } @RequestMapping(value = "/elk") public String helloWorld() { String response = "Welcome to JavaInUse" + new Date(); LOG.log(Level.INFO, response); return response; } @RequestMapping(value = "/exception") public String exception() { String response = ""; try { throw new Exception("Exception has occured...."); } catch (Exception e) { e.printStackTrace(); LOG.error(e); StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); e.printStackTrace(pw); String stackTrace = sw.toString(); LOG.error("Exception - " + stackTrace); response = stackTrace; } return response; } }Finally specify the name and location of the log file to be created in the application.properties file.
logging.file=C:/elk/spring-boot-elk.logNext we will configure the logstash pipeline-
This is done using the logstash.conf-
input { file { type => "java" path => "C:/elk/spring-boot-elk.log" codec => multiline { pattern => "^%{YEAR}-%{MONTHNUM}-%{MONTHDAY} %{TIME}.*" negate => "true" what => "previous" } } } filter { #If log line contains tab character followed by 'at' then we will tag that entry as stacktrace if [message] =~ "\tat" { grok { match => ["message", "^(\tat)"] add_tag => ["stacktrace"] } } } output { stdout { codec => rubydebug } # Sending properly parsed log events to elasticsearch elasticsearch { hosts => ["localhost:9200"] } }Start logstash using the command prompt as follows-
logstash -f logstash.conf
Start the spring boot application by running the HelloWorldSpringBootApplication as a java application.
Logs will be generated in C:/elk folder.
- goto localhost:8080/elk
- goto localhost:8080/exception
- go to kibana UI console- localhost and create an index pattern logstash-* to see the indexed data-
Download Source Code
Download it -Spring Boot Microservice+ ELK stack
No comments:
Post a Comment