logging

Processing logs with Elastic Stack #2 – configure Kibana

Kibana allows us to browse data indexed in Elasticsearch nodes. We're going to run Kibana in a Docker container and…

5 years ago

Processing logs with Elastic Stack #1 – parse and send various log entries to Elasticsearch

Why should we learn how to process application logs with Elastic Stack? After all, the default logging mechanism in Spring…

5 years ago

Setting JVM options for an Elasticsearch service run in a Docker container

Default minimum and maximum heap size used by Elasticsearch is set to 1GB. I want to show you how you…

5 years ago

Spring Boot Log4j 2 advanced configuration #2 – add a Rollover Strategy for log files

We don't want to allocate too much space for our log files. Let's see how we can manage their livespan.…

5 years ago

Spring Boot Log4j 2 advanced configuration #1 – saving logs to files

Apart from having logs displayed directly in the console, we can configure our Spring Boot project to write log entries…

5 years ago

Parsing logs with Grok #2 How to parse exceptions alongside regular logs

When dealing with an exception stack trace we have to not only construct a separate match for our grok filter…

5 years ago

Parsing logs with Grok #1 What to do when part of one field got caught in a different pattern

I want to show you some issues that I encountered while applying the Grok filter plugin on logs. Most of…

5 years ago