Monitoring deployed Java application usage

Writing a large application based on the graphical user interface in Java and wondered if there are any environments for monitoring the application after its deployment for many end users. It seems like when Eclipse periodically sends your usage information, etc. Apple does it on iOS too.

I want to know

1. which features and resources of the application are being used the most 
2. crash reports 
3. cpu and memory usage
+3
source share
1 answer

If you want to keep it simple, you can use the registration framework. Logback is an SL4J implementation that can send your logs using SMTP (the password can be read by users!).

SMTPAppender , . SMTP () .

Loggly.

. Java . SLF4J :)

0

All Articles