Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

spring boot actuator

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
</dependencies>Copy to clipboard
Comment

actuator spring boot

Actuator is mainly used to expose operational information about the running application — health, metrics, info, dump, env, etc. It uses HTTP endpoints or JMX beans to enable us to interact with it. Once this dependency is on the classpath, several endpoints are available for us out of the box.30-Jan-2021
Comment

spring boot actuator

{"_links":{"self":{"href":"http://localhost:8081/actuator","templated":false},"beans":{"href":"http://localhost:8081/actuator/beans","templated":false},"health":{"href":"http://localhost:8081/actuator/health","templated":false},"health-path":{"href":"http://localhost:8081/actuator/health/{*path}","templated":true},"env":{"href":"http://localhost:8081/actuator/env","templated":false},"env-toMatch":{"href":"http://localhost:8081/actuator/env/{toMatch}","templated":true},"logfile":{"href":"http://localhost:8081/actuator/logfile","templated":false},"loggers":{"href":"http://localhost:8081/actuator/loggers","templated":false},"loggers-name":{"href":"http://localhost:8081/actuator/loggers/{name}","templated":true},"metrics-requiredMetricName":{"href":"http://localhost:8081/actuator/metrics/{requiredMetricName}","templated":true},"metrics":{"href":"http://localhost:8081/actuator/metrics","templated":false}}}
Comment

PREVIOUS NEXT
Code Example
Java :: File Appender log4j2.properties spring 
Java :: jpa page sort 
Java :: équivalent setTimeInterval java 
Java :: java arraylist with double 
Java :: minimum and maximum in array in java 
Java :: if else statement 
Java :: argumentcaptor java mockito 
Java :: java methods 
Java :: latest android sdk version 
Java :: how to read text file as variable in java 
Java :: switch statement java 
Java :: java array erstellen 
Java :: prime numbers program in java 
Java :: how to create object of abstract class in java 
Java :: java anonymous class 
Java :: java date equals other date 
Java :: java method overriding 
Java :: java find duplicate element in list 
Java :: select list of values from db java 
Java :: android studio clock bar change color programmatically 
Java :: java print boolean with spaces 
Java :: alphabet n vowelin java 
Java :: difference between stringbuffer and stringbuilder 
Java :: osmdroid get current zoom level 
Java :: dont kill service in android studio 
Java :: convert jwt claim to string java 
Java :: Implementation of TreeMap Class in Java map 
Java :: how to translate java swing 
Java :: how to recognize a pressed key in java 
Java :: java zahlen runden auf 1 nachkommastelle 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =