Add metrics endpoint

This commit is contained in:
Santiago Lo Coco 2024-03-12 13:25:54 +01:00
parent 04a2ce7169
commit 1a3654e5b2
1 changed files with 8 additions and 0 deletions

View File

@ -5,12 +5,20 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
class DataController {
private static int callsCount = 0;
@GetMapping("/data")
SomeData get() {
callsCount++;
var ret = new SomeData();
ret.setName("ILV Microservice Architecture");
return ret;
}
@GetMapping("/metrics")
String metrics() {
return "# HELP calls_count Total number of calls\n# TYPE calls_count counter\ncalls_count " + callsCount;
}
}
class SomeData {