Add metrics endpoint
This commit is contained in:
parent
04a2ce7169
commit
1a3654e5b2
|
@ -5,12 +5,20 @@ import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
class DataController {
|
class DataController {
|
||||||
|
private static int callsCount = 0;
|
||||||
|
|
||||||
@GetMapping("/data")
|
@GetMapping("/data")
|
||||||
SomeData get() {
|
SomeData get() {
|
||||||
|
callsCount++;
|
||||||
var ret = new SomeData();
|
var ret = new SomeData();
|
||||||
ret.setName("ILV Microservice Architecture");
|
ret.setName("ILV Microservice Architecture");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@GetMapping("/metrics")
|
||||||
|
String metrics() {
|
||||||
|
return "# HELP calls_count Total number of calls\n# TYPE calls_count counter\ncalls_count " + callsCount;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SomeData {
|
class SomeData {
|
||||||
|
|
Loading…
Reference in New Issue