How to setup ELK in simple java project

Viewed 144

I am new in ELK setup. I setup ELK in spring Boot microservice and running successfully but i want to setup ELK in simple Java project.

I have a simple JAVA project i am using Jar of that project in docker file.

Is there any way to setup ELK in Simple Java project?

1 Answers

You can install ELK locally as docker image, then use it from your simple java project. A docker container should only run a process, so elk in the same project would not be a good idea. Why does it have to be a simple java project anyway? if you are building a container it make sense to make it a microservice...

Could you explain a bit more on why simple java?

So when you have two containers, make sure they run on the same network...

Cheers!

Related