Getting system info from Spring Boot ActuatorHow do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?How to configure port for a Spring Boot applicationspring boot actuator for standalone spring applicationActuator with Spring boot JerseySpring-boot actuator: only some endpoints workCamel Spring Boot Actuator Not Working with cxfrs routeSpring boot actuator is not displaying the memory detailsNot able to use Actuator in Spring Boot applicationSpring-boot Actuator endpoints - 406 Not AcceptableSpring boot actuator response on wrong endpoint /application
Two researchers want to work on the same extension to my paper. Who to help?
A curve pass via points at TiKz
Why was castling bad for white in this game, and engine strongly prefered trading queens?
Why can't RGB or bicolour LEDs produce a decent yellow?
Is the schwa sound consistent?
Does Lawful Interception of 4G / the proposed 5G provide a back door for hackers as well?
Is taking modulus on both sides of an equation valid?
Anatomically Correct Carnivorous Tree
Ex-manager wants to stay in touch, I don't want to
What stroke width Instagram is using for its icons and how to get same results?
Does the 500 feet falling cap apply per fall, or per turn?
Was there ever any real use for a 6800-based Apple I?
What is Plautus’s pun about frustum and frustrum?
tikz: not so precise graphic
How to select certain lines (n, n+4, n+8, n+12...) from the file?
Why was the Ancient One so hesitant to teach Dr. Strange the art of sorcery?
Was this a power play by Daenerys?
Why is “Ich wusste, dass aus dir mal was wird” grammitally correct?
What does the expression "right on the tip of my tongue" mean?
On what legal basis did the UK remove the 'European Union' from its passport?
What food production methods would allow a metropolis like New York to become self sufficient
How to make a language evolve quickly?
How to compact two the parabol commands in the following example?
Do atomic orbitals "pulse" in time?
Getting system info from Spring Boot Actuator
How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?How to configure port for a Spring Boot applicationspring boot actuator for standalone spring applicationActuator with Spring boot JerseySpring-boot actuator: only some endpoints workCamel Spring Boot Actuator Not Working with cxfrs routeSpring boot actuator is not displaying the memory detailsNot able to use Actuator in Spring Boot applicationSpring-boot Actuator endpoints - 406 Not AcceptableSpring boot actuator response on wrong endpoint /application
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have an SpringBoot app. 2.1.3.RELEASE securized by JWT, I want to add an actuator. I added this dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
I have added this properties to the application.properties
file
management.endpoints.web.exposure.include=health,info
management.endpoint.health.show-details=always
when I access to /actuator
I got this response:
"_links":
"self":
"href": "http://127.0.0.1:1133/tdk/actuator",
"templated": false
,
"health":
"href": "http://127.0.0.1:1133/tdk/actuator/health",
"templated": false
,
"health-component":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component",
"templated": true
,
"health-component-instance":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component/instance",
"templated": true
,
"info":
"href": "http://127.0.0.1:1133/tdk/actuator/info",
"templated": false
but when I access to http://127.0.0.1:1133/tdk/actuator/info
, I got only
spring rest spring-boot spring-mvc spring-boot-actuator
add a comment |
I have an SpringBoot app. 2.1.3.RELEASE securized by JWT, I want to add an actuator. I added this dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
I have added this properties to the application.properties
file
management.endpoints.web.exposure.include=health,info
management.endpoint.health.show-details=always
when I access to /actuator
I got this response:
"_links":
"self":
"href": "http://127.0.0.1:1133/tdk/actuator",
"templated": false
,
"health":
"href": "http://127.0.0.1:1133/tdk/actuator/health",
"templated": false
,
"health-component":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component",
"templated": true
,
"health-component-instance":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component/instance",
"templated": true
,
"info":
"href": "http://127.0.0.1:1133/tdk/actuator/info",
"templated": false
but when I access to http://127.0.0.1:1133/tdk/actuator/info
, I got only
spring rest spring-boot spring-mvc spring-boot-actuator
add a comment |
I have an SpringBoot app. 2.1.3.RELEASE securized by JWT, I want to add an actuator. I added this dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
I have added this properties to the application.properties
file
management.endpoints.web.exposure.include=health,info
management.endpoint.health.show-details=always
when I access to /actuator
I got this response:
"_links":
"self":
"href": "http://127.0.0.1:1133/tdk/actuator",
"templated": false
,
"health":
"href": "http://127.0.0.1:1133/tdk/actuator/health",
"templated": false
,
"health-component":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component",
"templated": true
,
"health-component-instance":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component/instance",
"templated": true
,
"info":
"href": "http://127.0.0.1:1133/tdk/actuator/info",
"templated": false
but when I access to http://127.0.0.1:1133/tdk/actuator/info
, I got only
spring rest spring-boot spring-mvc spring-boot-actuator
I have an SpringBoot app. 2.1.3.RELEASE securized by JWT, I want to add an actuator. I added this dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
I have added this properties to the application.properties
file
management.endpoints.web.exposure.include=health,info
management.endpoint.health.show-details=always
when I access to /actuator
I got this response:
"_links":
"self":
"href": "http://127.0.0.1:1133/tdk/actuator",
"templated": false
,
"health":
"href": "http://127.0.0.1:1133/tdk/actuator/health",
"templated": false
,
"health-component":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component",
"templated": true
,
"health-component-instance":
"href": "http://127.0.0.1:1133/tdk/actuator/health/component/instance",
"templated": true
,
"info":
"href": "http://127.0.0.1:1133/tdk/actuator/info",
"templated": false
but when I access to http://127.0.0.1:1133/tdk/actuator/info
, I got only
spring rest spring-boot spring-mvc spring-boot-actuator
spring rest spring-boot spring-mvc spring-boot-actuator
asked Mar 23 at 12:02
Nuñito de la CalzadaNuñito de la Calzada
1,5171673150
1,5171673150
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to add build-info
goal to generate build information. see doc here for more info.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313526%2fgetting-system-info-from-spring-boot-actuator%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to add build-info
goal to generate build information. see doc here for more info.
add a comment |
You need to add build-info
goal to generate build information. see doc here for more info.
add a comment |
You need to add build-info
goal to generate build information. see doc here for more info.
You need to add build-info
goal to generate build information. see doc here for more info.
answered Mar 23 at 23:50
ravinikamravinikam
1,72252124
1,72252124
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313526%2fgetting-system-info-from-spring-boot-actuator%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown