Spring Boot - Monitoring Microservice with Prometheus and Grafana | Java Techie

preview_player
Показать описание
This video explain you how to integrate spring boot actuator with a monitoring system called Prometheus and a graphing solution called Grafana

we used docker here to up Prometheus and Grafana Server

#JavaTechie #SpringBoot #micrometer #Prometheus #Grafana

GitHub:

Blogs:

Facebook:

guys if you like this video please do subscribe now and press the bell icon to not miss any update from Java Techie
Рекомендации по теме
Комментарии
Автор

Clearest instruction I have read or watched on how to get this implemented locally. 5 years old and still applicable. Nice work and thank you.

danamaxfield
Автор

3yrs old video. Still it's helping me to understand concepts clearly 😊

kantanaik
Автор

To capture these logs you have to do a little change in your command as given below.

docker run --name prometheus -p 9090:9090 -v <Image ID>

I hope this will help all of you to get the expected outcomes.

jitendrathakur
Автор

Very good video sir. Thanks for good explanation. It gave a clear idea about spring actuator, Micrometer, Prometheus and Grafana.

sreedharreddy
Автор

good information
liked the video for better reach
coding youtubers are heavily underrated in India

rakeshnarang
Автор

For anyone having issues with Prometheus and cannot find the Spring actuator, add on your the following when you are running the Prometheus container

what it does is that copies the file to the container.

valkon_
Автор

Excelent explanation ! Greetings from 🇧🇷

Netalon
Автор

Never seen such a great explanation. keep update your technical videos. warm support from me always

pandipalanichamy
Автор

Very nice, simple and detailed explanation. Thank you so much.

himanshubhusanrath
Автор

Excellent and clear explanation. Thanks a lot.

anantharamu
Автор

Thank you very much for this great explanation. Keep it up.

luizalfonsoglasenapp
Автор

nice work Basant, Could you please add one more video explaining how to add "custome metrics" in prometheus?

nasirkhansirajbhai
Автор

Definitely one of the best java teachers of Youtube...

Just one doubt:
What was the purpose of adding the message Endpoint?
Wasn't it to adding some metrics on it?

humeidussenejocordasse
Автор

one suggestion to all the viewers
if you want to pass in a custom prometheus.yml file
use this: -
docker run \
-p 9090:9090 \
-v \
prom/prometheus

-> path to your system
-> path inside prometheus image
---
check configs here: http:// localhost :9090/classic/config

rakeshnarang
Автор

you explain very well sir, I really liked it

harishgawali
Автор

Simple and nice explanation. Thank you

rambhattaru
Автор

Just to make it more clear in case your actuator has not a default (8080) port:
application.yml

management:
server:
port: XXXX

prometheus.yml

- job_name: 'spring-actuator'
metrics_path: 'actuator/prometheus'
scrape_interval: some_time
static_configs:
- targets: ['host.docker.internal:XXXX']

dmitrikonnov
Автор

Thank you for the video. Excellent explanation. Very clear and concise.
Can you please add a video for adding custom metrices for Prometheus scrapping. [All the types]

rahulsheth
Автор

Excellent explanation. Very clear and concise. Thank you very much.
Just in case, if you know how to get micrometer into a non-spring project, please let us know how to.

desarrollojava
Автор

Hello, I'm configuring a docker-composé file for prometheus and Granfana. But to indicate the config file 'prometheus.yml' to prometheus, I don't know how. Just because I'm using Windows OS.
NEED YOUR HELP

connecteilconnekt