spring-boot-actuator Questions
8
I want to show some metrics using micrometer prometheus in combination with the spring-boot-actuator. My project is totally based on spring-boot and has the actuator feature enabled and mapped on t...
Hudson asked 29/11, 2021 at 10:57
4
I have to check whether my service / app works or not.
I've added dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuato...
Hoax asked 10/1, 2022 at 13:7
4
Solved
I am upgrading a service from spring boot 2.7 to 3.2.0 and bumping into an issue where I get an HTTP Status 500 – Internal Server Error error when accessing actuator endpoints.
Looking at the stack...
Centurion asked 24/12, 2023 at 10:51
3
So this is my configuration in application.yaml:
management:
endpoint:
health:
show-details: "ALWAYS"
probes:
enabled: true
endpoints:
enabled-by-default: true
web:
exposure:
in...
Liquefacient asked 28/1, 2022 at 21:27
3
Solved
I started my first project on Spring Boot 2 (RC1). Thanks to the already good documentation this has not been to hard coming from Spring Boot 1.x.
However now that I want to integrate metrics I'm ...
Garter asked 9/2, 2018 at 11:25
16
Solved
I am using spring boot 2.1.4.RELEASE and currently trying to access http://localhost:8080/actuator but i am getting 404 not found. I am not sure what am i doing wrong here. Below is my pom dependen...
Produce asked 27/4, 2019 at 4:13
4
Solved
With Spring Boot 2.2.0 the "httptrace" Actuator endpoint doesn't exist anymore. How can I get this functionality back?
Strophanthus asked 30/11, 2019 at 11:11
3
I'm using Maven for Java project with Spring Boot and Actuator.
pom.xml:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator</arti...
Takeo asked 15/11, 2022 at 15:29
4
Solved
How to add custom metrics to /info endpoint in Spring Boot 2.7.0 Actuator?
pom.xml
<version>0.0.1-SNAPSHOT</version>
...
<dependency>
<groupId>org.springframework.boot</...
Showiness asked 15/6, 2022 at 4:24
4
In our Prometheus metrics in our Spring Boot API, there is a very mysterious root "endpoint" that appears to be called sometimes. This looks like someone probing our API, but the endpoint does not ...
Exigent asked 7/6, 2020 at 9:34
2
Solved
After migrate from spring boot 2.7.5 to spring boot 3.0.1.
The tag URI on the metric http.client.requests have the value none in all cases.
We build the URI of the restTemplate like
URI uri = UriCo...
Airdrome asked 30/12, 2022 at 13:59
3
It's possible to include the version of Spring Boot in the banner.txt by adding ${spring-boot.version}.
How can I do the same for the /info actuator endpoint?
I've tried adding both of the followin...
Diamagnetic asked 21/4, 2017 at 14:6
7
Solved
I have a running Springboot application which serves the URL http://localhost:8081/topics and returns me JSON response as expected.
I added actuator dependency
<dependency>
<groupId&g...
Mimir asked 20/6, 2017 at 10:4
7
Solved
I have an Spring Boot App with this configuration running on the port 8081:
@Configuration
@EnableMethodSecurity
public class WebSecurityConfig { // extends WebSecurityConfigurerAdapter {
private...
Hypallage asked 23/1 at 11:3
5
Solved
Spring Boot Actuator is not working for rest-full application, getting Whitelabel Error Page on browser and below error in console log.
org.springframework.web.servlet.NoHandlerFoundException: No h...
Promotion asked 20/2, 2021 at 7:30
6
Solved
I am using this Spring Boot guide Building a RESTful Web Service with Spring Boot Actuator. When accessing endpoint /actuator/info I am getting empty json response {}.
The actuator api documentati...
Regina asked 1/1, 2020 at 21:55
4
Solved
Spring Boot Actuator's Trace does a good job of capturing input/output HTTP params, headers, users, etc. I'd like to expand it to also capture the body of the HTTP response, that way I can have a f...
Aboutface asked 7/3, 2016 at 16:23
6
I believe followed almost all tutorials on the Internet and read many SO answers and still I'm stuck.
1. A simple health check
@Component
public class HealthCheck implements HealthIndicator {
@...
Affluent asked 22/11, 2019 at 19:25
2
I am implementing custom Actuator HealthIndicators for my Spring Boot App.
They look something like:
public class MyClass implements HealthIndicator {
@Override
public Health health() {
LOGGE...
Dividend asked 3/12, 2019 at 2:8
3
I have a springboot Kotlin web service that uses Actuator (spring-boot-starter-actuator) and micrometer (micrometer-registry-prometheus) to expose metrics to a prometheus scraper.
To monitor the s...
Excide asked 26/3, 2020 at 13:15
2
Solved
I have a spring boot app, which uses resilience4j AOP-based @CircuitBreakers.
Now I would like to make the circuit breakers' information available in the /actuator/health endpoint, but I'm not seei...
Banana asked 4/3, 2020 at 14:33
2
I want to display the following Health-Information:
{
"status":"UP",
"components": {
"myHealthComposite": {
"status":"UP",
"components": {
"myFirstHealthIndicator": { "status":"UP" },
"myS...
Macerate asked 2/12, 2019 at 12:6
6
Solved
I am trying to generate Prometheus metrics with using Micrometer.io with Spring Boot 2.0.0.RELEASE.
When I am trying to expose the size of a List as Gauge, it keeps displaying NaN. In the document...
Ponce asked 12/6, 2018 at 16:31
1
Requirement
We need to change the actuator endpoints to be on a different port number
Changing the value of management.server.port: 8404 causes an exception as the server configures the new port t...
Commutative asked 15/11, 2020 at 17:45
1
I am new to prometheus metrics. I am exposing my application's all endpoints (application Rest endpoint as well as the 3rd party APIs endpoints which my application is using).
As expected, I am get...
Sweeten asked 5/7, 2023 at 5:1
1 Next >
© 2022 - 2024 — McMap. All rights reserved.