in src/main/java/com/googlesource/gerrit/plugins/healthcheck/check/DeadlockCheck.java [44:51]
protected Result doCheck() throws Exception {
return Optional.ofNullable(metricRegistry.getGauges().get(DEADLOCKED_THREADS_METRIC_NAME))
.map(
metric -> {
return (int) metric.getValue() == 0 ? Result.PASSED : Result.FAILED;
})
.orElse(Result.PASSED);
}