I am developing an annotation-based performance measurement tool for use in Spring.

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 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!

Feb 13, 2025 - 04:18
 0
I am developing an annotation-based performance measurement tool for use in Spring.

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!