Restart callCount after each fetch

This commit is contained in:
Juan Negro 2024-03-12 14:25:26 +01:00
parent 1a3654e5b2
commit 844bfe83d2
No known key found for this signature in database
GPG Key ID: 670B33C54F9BABA7
1 changed files with 5 additions and 2 deletions

View File

@ -15,9 +15,12 @@ class DataController {
return ret; return ret;
} }
@GetMapping("/metrics") @GetMapping(value = "/metrics", produces = "text/plain")
String metrics() { String metrics() {
return "# HELP calls_count Total number of calls\n# TYPE calls_count counter\ncalls_count " + callsCount; String returnMessage = "# HELP calls_count Total number of calls\n# TYPE calls_count counter\ncalls_count "
+ callsCount + "\n";
callsCount = 0;
return returnMessage;
} }
} }