Fixed path

This commit is contained in:
Brage Skjønborg 2026-01-31 11:35:56 +01:00
parent 7cb2eed79d
commit 44cd5c2182

View File

@ -19,9 +19,9 @@ class HealthController(
return healthService.getHealth()
}
@GetMapping("/health/events")
@GetMapping("/events")
fun getEventRate(): EventRate = healthService.getEventRate()
@GetMapping("/health/storage")
@GetMapping("/storage")
fun getDiskStatus(): List<DiskInfo> = healthService.getDiskHealth()
}