Skip to content

Commit

Permalink
Prepare version 2.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adelnoureddine committed Mar 29, 2024
1 parent 9fd9441 commit 2af2221
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions install/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ overwrite-call-trees-runtime-data=true
# from 1 to 1000.
stack-monitoring-sample-rate=10

# If running the application on top of an application server or framework (spring, tomcat, etc.)
# This changes how JoularJX loops when monitoring, using a while-true loop instead of a checking if the JVM is destroyed
# On standard Java applications, the while-true loop don't quit when the application ends, hence why destroying the VM
# Values: true, false
application-server=false

# Path for our power monitor program on Windows
# On Windows, please escape slashes twice
powermonitor-path=C:\\joularjx\\PowerMonitor.exe
Binary file removed install/joularjx-2.8.2.jar
Binary file not shown.
Binary file added install/joularjx-2.8.3.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<groupId>org.noureddine</groupId>
<artifactId>joularjx</artifactId>
<version>2.8.2</version>
<version>2.8.3</version>

<packaging>jar</packaging>
<name>${project.artifactId}</name>
Expand Down Expand Up @@ -71,7 +71,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.1</version>
<version>5.10.2</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -83,7 +83,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<version>3.13.0</version>
<configuration>
<debug>true</debug>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/noureddine/joularjx/Agent.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static void premain(String args, Instrumentation inst) {
JoularJXLogging.updateLevel(properties.getLoggerLevel());

logger.info("+---------------------------------+");
logger.info("| JoularJX Agent Version 2.8.2 |");
logger.info("| JoularJX Agent Version 2.8.3 |");
logger.info("+---------------------------------+");

ThreadMXBean threadBean = createThreadBean();
Expand Down

0 comments on commit 2af2221

Please sign in to comment.