JMX data as a JSON
I want to monitor Spring beans using JMX, but it's quite painful to make it work with composite data. So I decided to map returned values to JSON text strings. But is it a common solution? Is it conceptually right? What can go wrong?
java spring jmx
add a comment |
I want to monitor Spring beans using JMX, but it's quite painful to make it work with composite data. So I decided to map returned values to JSON text strings. But is it a common solution? Is it conceptually right? What can go wrong?
java spring jmx
why close??????
– Tony
Nov 26 '18 at 10:31
may be you are looking for spring boot admin.. codecentric.github.io/spring-boot-admin/current, if you are using spring boot
– secret super star
Dec 3 '18 at 6:58
Did my answer helped?
– user7294900
Dec 4 '18 at 13:23
add a comment |
I want to monitor Spring beans using JMX, but it's quite painful to make it work with composite data. So I decided to map returned values to JSON text strings. But is it a common solution? Is it conceptually right? What can go wrong?
java spring jmx
I want to monitor Spring beans using JMX, but it's quite painful to make it work with composite data. So I decided to map returned values to JSON text strings. But is it a common solution? Is it conceptually right? What can go wrong?
java spring jmx
java spring jmx
asked Nov 26 '18 at 10:17
TonyTony
621315
621315
why close??????
– Tony
Nov 26 '18 at 10:31
may be you are looking for spring boot admin.. codecentric.github.io/spring-boot-admin/current, if you are using spring boot
– secret super star
Dec 3 '18 at 6:58
Did my answer helped?
– user7294900
Dec 4 '18 at 13:23
add a comment |
why close??????
– Tony
Nov 26 '18 at 10:31
may be you are looking for spring boot admin.. codecentric.github.io/spring-boot-admin/current, if you are using spring boot
– secret super star
Dec 3 '18 at 6:58
Did my answer helped?
– user7294900
Dec 4 '18 at 13:23
why close??????
– Tony
Nov 26 '18 at 10:31
why close??????
– Tony
Nov 26 '18 at 10:31
may be you are looking for spring boot admin.. codecentric.github.io/spring-boot-admin/current, if you are using spring boot
– secret super star
Dec 3 '18 at 6:58
may be you are looking for spring boot admin.. codecentric.github.io/spring-boot-admin/current, if you are using spring boot
– secret super star
Dec 3 '18 at 6:58
Did my answer helped?
– user7294900
Dec 4 '18 at 13:23
Did my answer helped?
– user7294900
Dec 4 '18 at 13:23
add a comment |
1 Answer
1
active
oldest
votes
You can use Jolokia
Jolokia is an agent based approach for remote JMX access. It is an alternative to standard JSR 160 connectors. The communication between client and agent goes over HTTP (either GET or POST), where the request and response payload is represented in JSON.
For java code implementing JMX as JSON see jmxtrans
This is effectively the missing connector between speaking to a JVM via JMX on one end and whatever logging / monitoring / graphing package that you can dream up on the other end.
jmxtrans is very powerful tool which uses easily generated JSON (or YAML) based configuration files and then outputs the data in whatever format you desire.
add a comment |
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%2f53478955%2fjmx-data-as-a-json%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 can use Jolokia
Jolokia is an agent based approach for remote JMX access. It is an alternative to standard JSR 160 connectors. The communication between client and agent goes over HTTP (either GET or POST), where the request and response payload is represented in JSON.
For java code implementing JMX as JSON see jmxtrans
This is effectively the missing connector between speaking to a JVM via JMX on one end and whatever logging / monitoring / graphing package that you can dream up on the other end.
jmxtrans is very powerful tool which uses easily generated JSON (or YAML) based configuration files and then outputs the data in whatever format you desire.
add a comment |
You can use Jolokia
Jolokia is an agent based approach for remote JMX access. It is an alternative to standard JSR 160 connectors. The communication between client and agent goes over HTTP (either GET or POST), where the request and response payload is represented in JSON.
For java code implementing JMX as JSON see jmxtrans
This is effectively the missing connector between speaking to a JVM via JMX on one end and whatever logging / monitoring / graphing package that you can dream up on the other end.
jmxtrans is very powerful tool which uses easily generated JSON (or YAML) based configuration files and then outputs the data in whatever format you desire.
add a comment |
You can use Jolokia
Jolokia is an agent based approach for remote JMX access. It is an alternative to standard JSR 160 connectors. The communication between client and agent goes over HTTP (either GET or POST), where the request and response payload is represented in JSON.
For java code implementing JMX as JSON see jmxtrans
This is effectively the missing connector between speaking to a JVM via JMX on one end and whatever logging / monitoring / graphing package that you can dream up on the other end.
jmxtrans is very powerful tool which uses easily generated JSON (or YAML) based configuration files and then outputs the data in whatever format you desire.
You can use Jolokia
Jolokia is an agent based approach for remote JMX access. It is an alternative to standard JSR 160 connectors. The communication between client and agent goes over HTTP (either GET or POST), where the request and response payload is represented in JSON.
For java code implementing JMX as JSON see jmxtrans
This is effectively the missing connector between speaking to a JVM via JMX on one end and whatever logging / monitoring / graphing package that you can dream up on the other end.
jmxtrans is very powerful tool which uses easily generated JSON (or YAML) based configuration files and then outputs the data in whatever format you desire.
edited Nov 28 '18 at 13:03
answered Nov 28 '18 at 11:45
user7294900user7294900
23.6k123464
23.6k123464
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%2f53478955%2fjmx-data-as-a-json%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
why close??????
– Tony
Nov 26 '18 at 10:31
may be you are looking for spring boot admin.. codecentric.github.io/spring-boot-admin/current, if you are using spring boot
– secret super star
Dec 3 '18 at 6:58
Did my answer helped?
– user7294900
Dec 4 '18 at 13:23