Class MonitoringRestController
- java.lang.Object
-
- io.camunda.zeebe.broker.system.monitoring.MonitoringRestController
-
@RestController public class MonitoringRestController extends Object
-
-
Constructor Summary
Constructors Constructor Description MonitoringRestController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<String>health()org.springframework.web.servlet.ModelAndViewmetrics()org.springframework.http.ResponseEntity<String>ready()org.springframework.http.ResponseEntity<String>startup()
-
-
-
Method Detail
-
metrics
@GetMapping("/metrics") public org.springframework.web.servlet.ModelAndView metrics()
-
health
@GetMapping("/health") public org.springframework.http.ResponseEntity<String> health()
-
ready
@GetMapping("/ready") public org.springframework.http.ResponseEntity<String> ready()
-
startup
@GetMapping("/startup") public org.springframework.http.ResponseEntity<String> startup()
-
-