DEPLI

 DEPLI

A HANDSOME JVM MONITORING DASHBOARD

A handsome performance monitoring dashboard dedicated for looking into Java virtual machines through management bean server connections which provides the solution to monitor all the running Java applications at once with an attractive user interface.

file_download download DEPLI-v1.1.0

FEATURES

To see upcoming features and more, visit Depli GitHub repository.


Click on image to view

Monitor multiple JVMs

Click on image to view

JVM statistics

Click on image to view

Threads and stacktrace search and lookup

Click on image to view

Class paths and libraries search and lookup

Click on image to view

Hotplug JMX remote connections and save connection data


HOW TO


RUN DEPLI

Download the latest version, and extract it. For Windows use start.bat file and for unix just execute start.sh and log in to http://localhost:8080 using your web browser.


ADD NEW JMX REMOTE CONNECTION

Click settings (settings icon) in the top right corner of the dashboard to view the node management page. From there click add (add button).


CHANGE DEFAULT PORT

Depli's is a Spring boot application and the default port is 8080.To change it use --server.port=CUSTOM_PORT
Simply add a line at the end of the start script,

java -jar depli-*.jar --server.port=9000

CHANGE DEFAULT DATA SOURCE

Depli only supports h2 databases. Default name of the data source is depli and it is directed to the application's home directory. Ignore this if you want to use the default data source.
To create a new data source and run Depli use,

java -jar depli-*.jar \
--spring.datasource.url=jdbc:h2:file:./YOUR_DATA_SOURCE_NAME \
--spring.jpa.hibernate.ddl-auto=create \
--spring.datasource.initialize=true
            
If you already have a h2 data source file,

java -jar depli-*.jar --spring.datasource.url=jdbc:h2:file:./PATH_TO_YOUR_DATA_SOURCE
            


For more guides and information refer Depli wiki.

GET/CONTRIBUTE DEPLI

Depli is a free and open source application, heartily appreciates any kind of contribution, suggestions/issues or pull requests.

file_download RELEASES content_copy SOURCE CODE bug_report ISSUE/SUGGESTION