- 20
- 445
Xavier Bouclet
Canada
Приєднався 14 жов 2011
Films
Advent of Spring Boot DAY20
🌟 Day 20: Exposing Metrics with Spring Boot Actuator and Custom Metric Counters 🌟
Hello UA-cam! 👋
It’s Day 20 of the Spring Boot Advent of Code series, and today we took a deep dive into monitoring our application by exposing metrics through Spring Boot Actuator and adding a custom metric counter! 📊✨
Here’s what we covered in this episode:
✅ Enabling and accessing the /actuator/metrics endpoint to expose application metrics.
✅ Exploring key built-in metrics such as memory usage, request counts, and JVM statistics.
✅ Creating a custom metric counter using Micrometer to track specific application events.
✅ Sending custom metrics to the Actuator endpoint for observability.
Why this matters: Metrics provide valuable insights into your application’s performance and behavior, helping you detect issues early and optimize resource usage.
🔗 Want to wee the previous days : github.com/mikrethor/adventofcode2024
How do you monitor your Spring Boot applications? Are you using custom metrics in your projects? Let’s discuss in the comments!
#SpringBoot #Actuator #Metrics #Micrometer #Observability #Java23 #AdventOfCode #BackendDevelopment #MonitoringTools
Hello UA-cam! 👋
It’s Day 20 of the Spring Boot Advent of Code series, and today we took a deep dive into monitoring our application by exposing metrics through Spring Boot Actuator and adding a custom metric counter! 📊✨
Here’s what we covered in this episode:
✅ Enabling and accessing the /actuator/metrics endpoint to expose application metrics.
✅ Exploring key built-in metrics such as memory usage, request counts, and JVM statistics.
✅ Creating a custom metric counter using Micrometer to track specific application events.
✅ Sending custom metrics to the Actuator endpoint for observability.
Why this matters: Metrics provide valuable insights into your application’s performance and behavior, helping you detect issues early and optimize resource usage.
🔗 Want to wee the previous days : github.com/mikrethor/adventofcode2024
How do you monitor your Spring Boot applications? Are you using custom metrics in your projects? Let’s discuss in the comments!
#SpringBoot #Actuator #Metrics #Micrometer #Observability #Java23 #AdventOfCode #BackendDevelopment #MonitoringTools
Переглядів: 9
Відео
Advent of Spring Boot DAY19
Переглядів 4День тому
🌟 Day 19: Exploring Spring Boot Actuator - Info, Health, and Custom Health Indicators 🌟 Hello UA-cam! 👋 It’s Day 19 of the Spring Boot Advent of Code series, and today we delved into the powerful Spring Boot Actuator! We explored built-in endpoints and even created a custom health indicator to monitor our application. 📊✨ Here’s what we covered in this episode: ✅ Using Actuator’s info endpoint t...
Advent of Spring Boot DAY18
Переглядів 192 дні тому
🌟 Day 18: Building a Native Spring Boot Application with GraalVM and Buildpacks 🌟 Hello UA-cam! 👋 It’s Day 18 of the Spring Boot Advent of Code series, and today we pushed the boundaries of performance by building a native application using GraalVM and Buildpacks! 🚀✨ Here’s what we explored in this episode: ✅ Setting up GraalVM for your Spring Boot project. ✅ Configuring the Spring Boot Maven p...
Advent of Spring Boot DAY17
Переглядів 113 дні тому
🌟 Day 17: Building Docker Containers with Buildpacks 🌟 Hello UA-cam! 👋 It’s Day 17 of the Spring Boot Advent of Code series, and today we explored a modern and efficient way to build Docker containers using Buildpacks! 🛠️🐳 Here’s what we covered in this episode: ✅ What Buildpacks are and why they’re a great alternative to writing Dockerfiles. ✅ Using the Spring Boot Buildpack plugin to create a...
Advent of Spring Boot DAY16
Переглядів 114 дні тому
🌟 Day 16: Running Your Spring Boot App with Docker and Docker-Compose 🌟 Hello UA-cam! 👋 It’s Day 16 of the Spring Boot Advent of Code series, and today we containerized our application and took it to the next level by orchestrating it with Docker Compose! 🐳✨ Here’s what we achieved in this episode: ✅ Writing a Dockerfile to containerize the Spring Boot application. ✅ Building and running the ap...
Advent of Spring Boot DAY15
Переглядів 155 днів тому
🌟 Day 15: Validating Properties with Jakarta Validation in Spring Boot 🌟 Hello UA-cam! 👋 It’s Day 15 of the Spring Boot Advent of Code series, and today we ensured our application configurations are rock-solid by using Jakarta Validation to validate properties! ✅✨ Here’s what we explored in this episode: ✅ Adding validation constraints like @NotNull, @Min, @Max, @Pattern, and more to your confi...
Advent of Spring Boot DAY14
Переглядів 286 днів тому
🌟 Day 14: Managing Properties with @ConfigurationProperties 🌟 Hello UA-cam! 👋 It’s Day 14 of the Spring Boot Advent of Code series, and today we focused on a more flexible and maintainable way to handle application properties: @ConfigurationProperties! 🛠️✨ Here’s what we covered in this episode: ✅ Setting up @ConfigurationProperties to bind external properties to records. ✅ Why @ConfigurationPr...
Advent of Spring Boot DAY13
Переглядів 107 днів тому
🌟 Day 13: Documenting Your API with Spring REST Docs and Restdocs-API-Spec 🌟 Hello UA-cam! 👋 It’s Day 13 of the Spring Boot Advent of Code series, and today we explored another fantastic way to document APIs: Spring REST Docs combined with Restdocs-API-Spec from ePages! 📚✨ Here’s what we covered in this episode: ✅ Setting up Spring REST Docs for generating documentation based on tests. ✅ Integr...
Advent of Spring Boot DAY12
Переглядів 148 днів тому
🌟 Day 12: Documenting Your API with SpringDoc 🌟 Hello UA-cam! 👋 It’s Day 12 of the Spring Boot Advent of Code series, and today we focused on an essential part of building APIs: Documentation! 📜 In this episode, we explored how to use SpringDoc to automatically generate and manage API documentation. Here’s what we covered: ✅ Setting up SpringDoc OpenAPI in a Spring Boot project. ✅ Generating a ...
Advent of Spring Boot DAY11
Переглядів 209 днів тому
🌟 Day 11: Advanced Testing with Testcontainers, Rest Assured, and JUnit 🌟 Hello UA-cam! 👋 It’s Day 11 of the Spring Boot Advent of Code series, and today we’re taking API testing to the next level by combining the power of Testcontainers, Rest Assured, and JUnit! 🚀 Here’s what we accomplished in today’s episode: ✅ Testcontainers: Spinning up real database instances (like PostgreSQL) in Docker f...
Advent of Spring Boot DAY10
Переглядів 2810 днів тому
🌟 Day 10: Testing Spring Boot Endpoints with Rest Assured 🌟 Hello UA-cam! 👋 It’s Day 10 of the Spring Boot Advent of Code series, and today we’re leveling up our API testing by using Rest Assured! 🚀 Here’s what we covered in this exciting episode: ✅ Introduction to Rest Assured and why it’s great for testing RESTful APIs. ✅ Writing tests for GET, POST, and DELETE endpoints with clean and readab...
Advent of Spring Boot DAY09
Переглядів 4111 днів тому
🌟 Day 9: Testing Spring Boot Endpoints with MockMvc 🌟 Hello UA-camurs! 👋 It’s Day 9 of the Spring Boot Advent of Code series, and today we’re focusing on endpoint testing using the powerful MockMvc tool! 🚀 Here’s what we explored in today’s episode: ✅ Setting up MockMvc for testing controllers without starting the entire server. ✅ Writing tests for GET, POST, and DELETE endpoints. ✅ Validating ...
Advent of Spring Boot DAY08
Переглядів 2512 днів тому
🌟 Day 8: Testing Your Spring Boot Application with JUnit and Mockito 🌟 Hello UA-cam! 👋 It’s Day 8 of the Spring Boot Advent of Code series, and today we’re diving into one of the most critical aspects of development: Testing! 🧪 Here’s what we tackled in today’s episode: ✅ Writing unit tests with JUnit to verify individual components. ✅ Mocking dependencies with Mockito to isolate units of work....
Advent of Spring Boot DAY07
Переглядів 2113 днів тому
🌟 Day 7: Adding a Real Database to Our Spring Boot API with PostgreSQL 🌟 Hello UA-cam! 👋 In Day 7 of the Spring Boot Advent of Code series, we leveled up our API by connecting it to a real database: PostgreSQL! 🗄️ Here’s what we covered in today’s video: ✅ Setting up a PostgreSQL database and configuring it in Spring Boot. ✅ Adding dependencies for PostgreSQL and Spring Data JPA. ✅ Writing enti...
Advent of Spring Boot DAY06
Переглядів 1614 днів тому
🌟 Day 6: Enhancing Error Handling with ProblemDetail (RFC 7807 & RFC 9457) 🌟 Hello UA-cam! 👋 On Day 6 of the Spring Boot Advent of Code series, we leveled up our error handling game by diving into ProblemDetail, the structured way to report API errors as outlined in RFC 7807 and RFC 9457. 🚀 Here’s what we covered: ✅ What is ProblemDetail, and why does it matter for modern APIs? ✅ How to impleme...
The video is great, you need to keep promoting your channel. Is not hard.
Thank you for the kind words
Great ❤
Thank you @CryptoKosh