Add metrics endpoint
This commit is contained in:
parent
04a2ce7169
commit
1a3654e5b2
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue