Created
October 5, 2018 22:48
-
-
Save tembleking/55dda128a1bb9ffc38131c35ce659574 to your computer and use it in GitHub Desktop.
JMX MBean Interface Implementation Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SystemStatus implements SystemStatusMBean { | |
private Integer numberOfSecondsRunning; | |
private String programName; | |
private Long numberOfUnixSecondsRunning; | |
private Boolean switchStatus; | |
private Thread backgroundThread; | |
public SystemStatus(String programName) { | |
// First we initialize all the metrics | |
this.backgroundThread = new Thread(); | |
this.programName = programName; | |
this.numberOfSecondsRunning = 0; | |
this.numberOfUnixSecondsRunning = System.currentTimeMillis() / 1000L; | |
this.switchStatus = false; | |
// We will use a background thread to update the metrics | |
this.backgroundThread = new Thread(() -> { | |
try { | |
while (true) { | |
// Every second we update the metrics | |
numberOfSecondsRunning += 1; | |
numberOfUnixSecondsRunning += 1; | |
switchStatus = !switchStatus; | |
Thread.sleep(1000L); | |
} | |
} catch (Exception e) { | |
e.printStackTrace(); | |
} | |
}); | |
this.backgroundThread.setName("backgroundThread"); | |
this.backgroundThread.start(); | |
} | |
// Through this getters, defined in the interface SystemStatusMBean, | |
// all the metrics will be automatically retrieved | |
@Override | |
public Integer getNumberOfSecondsRunning() { | |
return numberOfSecondsRunning; | |
} | |
@Override | |
public String getProgramName() { | |
return programName; | |
} | |
@Override | |
public Long getNumberOfUnixSecondsRunning() { | |
return numberOfUnixSecondsRunning; | |
} | |
@Override | |
public Boolean getSwitchStatus() { | |
return switchStatus; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment