This content originally appeared on DEV Community and was authored by SJW
Hello! I am a junior developer working on a Spring-based performance measurement tool. This is my first open-source project, and I'd love to get your feedback and contributions! Even small improvements are welcome.
What It Does
- Real-time performance monitoring through a web dashboard
- Memory usage tracking (Heap/Non-Heap)
- Thread pool analysis
- Response time measurements
- Load testing capabilities
How It Works
Just add the @PerformanceMeasure
annotation to any method you want to monitor
@RestController
public class UserController {
@PerformanceMeasure("User API Performance")
@GetMapping("/api/users")
public List<User> getUsers() {
// Your implementation
}
}
Feel free to submit a PR. GitHub repo link: https://github.com/Seo-Jangwon/Mole1
Contribution guidelines can be found in the README! Feel free to check it out and contribute.
Let me know if you want any tweaks! 😊
This content originally appeared on DEV Community and was authored by SJW

SJW | Sciencx (2025-02-13T13:43:03+00:00) annotation-based performance measurement tool for use in Spring.. Retrieved from https://www.scien.cx/2025/02/13/annotation-based-performance-measurement-tool-for-use-in-spring/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.