blob: 8e5f8fb184a2a079baa1b140356fb5976a55db1a [file] [log] [blame]
// Copyright (C) 2020 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.googlesource.gerrit.plugins.healthcheck.check;
import com.codahale.metrics.Gauge;
import com.codahale.metrics.MetricRegistry;
import com.google.common.util.concurrent.ListeningExecutorService;
import com.googlesource.gerrit.plugins.healthcheck.HealthCheckConfig;
import java.util.Optional;
public abstract class AbstractWorkersHealthCheck extends AbstractHealthCheck {
private final String metricName;
private final Integer maxPoolSize;
private final Integer threshold;
private final MetricRegistry metricRegistry;
protected AbstractWorkersHealthCheck(
ListeningExecutorService executor,
HealthCheckConfig config,
MetricRegistry metricRegistry,
String name,
String metricName,
Integer maxPoolSize) {
super(executor, config, name);
this.metricRegistry = metricRegistry;
this.metricName = metricName;
this.maxPoolSize = maxPoolSize;
this.threshold = config.getActiveWorkersThreshold(name);
}
@Override
protected Result doCheck() throws Exception {
return Optional.ofNullable(metricRegistry.getGauges().get(metricName))
.map(
metric -> {
float currentThreadsPercentage = (getMetricValue(metric) * 100) / maxPoolSize;
return (currentThreadsPercentage <= threshold) ? Result.PASSED : Result.FAILED;
})
.orElse(Result.PASSED);
}
private Long getMetricValue(Gauge<?> metric) {
Object value = metric.getValue();
if (value instanceof Long) {
return (Long) value;
}
if (value instanceof Integer) {
return ((Integer) value).longValue();
}
throw new IllegalArgumentException(
String.format(
"Workers metric value must be of type java.lang.Long or java.lang.Integer but was %s ",
value.getClass().getName()));
}
}