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 :: array java 
Java :: java quit application 
Java :: Unhandled Exception: PlatformException(error, java.lang.IllegalStateException: Trying to create a platform view of unregistered type: plugins.flutter.io/webview 
Java :: spring boot save file to static folder 
Java :: ternary operator in java for null check 
Java :: javafx text wrapping 
Java :: intent pick action video android 
Java :: java if or 
Java :: tic tac toe in java 
Java :: java arraylist deepcopy 
Java :: charat(0).touppercase() java 
Java :: arraylist to int array conversion in java 
Java :: java enums 
Java :: min max heap java 
Java :: java string array initialization 
Java :: spring swagger 
Java :: java string to number 
Java :: get string of radio button in android 
Java :: java array add element 
Java :: declare class constant array java 
Java :: java swing dialog box 
Java :: java square root 
Java :: java 2d array length 
Java :: set look and feel system default java 
Java :: java is list ordered 
Java :: how to draw a rectangle in libgdx 
Java :: how to get color from a hex string in android studio 
Java :: regex pattern for valid logins 
Java :: java write to a file 
Java :: how to get current time and date in android 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =