Plugin based on express-actuator to work with spring-boot-admin
const actuator = require("express-actuator-alt")({
appName: "Sample Node App",
baseUrl: `http://localhost:${port}`,
managementUrl: "/management",
adminUrl: "http://localhost:8080",
adminPollingInterval: 1000
})
app.use("/management",actuator)
Variable |
Description |
Default Value |
appName |
The application name to be published to admin |
Unknown |
adminPollingInterval |
Interval to register on admin in milliseconds |
10000 |
adminUrl |
Admin url |
|
baseUrl |
The app url. Need to be a valid url to be called by admin (external url) |
managementUrl |