com.netflix.genie.web.health.GenieCpuHealthIndicator Maven / Gradle / Ivy
The newest version!
/*
*
* Copyright 2016 Netflix, Inc.
*
* 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.netflix.genie.web.health;
import com.netflix.genie.web.properties.HealthProperties;
import com.sun.management.OperatingSystemMXBean;
import io.micrometer.core.instrument.DistributionSummary;
import io.micrometer.core.instrument.MeterRegistry;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.actuate.health.Health;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.scheduling.TaskScheduler;
import javax.validation.constraints.NotNull;
import java.lang.management.ManagementFactory;
/**
* Health indicator for system cpu usage. Mark the service out-of-service if it crosses the threshold.
*
* @author amajumdar
* @since 3.0.0
*/
@Slf4j
public class GenieCpuHealthIndicator implements HealthIndicator {
private static final String CPU_LOAD = "cpuLoad";
private final double maxCpuLoadPercent;
private final int maxCpuLoadConsecutiveOccurrences;
private final OperatingSystemMXBean operatingSystemMXBean;
private final DistributionSummary summaryCpuMetric;
private int cpuLoadConsecutiveOccurrences;
/**
* Constructor.
*
* @param healthProperties The maximum physical memory threshold
* @param registry Registry
* @param taskScheduler task scheduler
*/
public GenieCpuHealthIndicator(
@NotNull final HealthProperties healthProperties,
@NotNull final MeterRegistry registry,
@NotNull final TaskScheduler taskScheduler
) {
this(
healthProperties.getMaxCpuLoadPercent(),
healthProperties.getMaxCpuLoadConsecutiveOccurrences(),
(OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(),
registry.summary("genie.cpuLoad"),
taskScheduler
);
}
GenieCpuHealthIndicator(
final double maxCpuLoadPercent,
final int maxCpuLoadConsecutiveOccurrences,
final OperatingSystemMXBean operatingSystemMXBean,
final DistributionSummary summaryCpuMetric,
final TaskScheduler taskScheduler
) {
this.maxCpuLoadPercent = maxCpuLoadPercent;
this.maxCpuLoadConsecutiveOccurrences = maxCpuLoadConsecutiveOccurrences;
this.operatingSystemMXBean = operatingSystemMXBean;
this.summaryCpuMetric = summaryCpuMetric;
this.summaryCpuMetric.record((long) (operatingSystemMXBean.getSystemCpuLoad() * 100));
taskScheduler.scheduleAtFixedRate(() -> this.summaryCpuMetric
.record((long) (operatingSystemMXBean.getSystemCpuLoad() * 100)), 5000);
}
@Override
public Health health() {
// Use the distribution summary to get an average of the cpu metrics.
final long cpuCount = this.summaryCpuMetric.count();
final double cpuTotal = this.summaryCpuMetric.totalAmount();
final double currentCpuLoadPercent =
cpuCount == 0 ? operatingSystemMXBean.getSystemCpuLoad() : (cpuTotal / (double) cpuCount);
if (currentCpuLoadPercent > maxCpuLoadPercent) {
cpuLoadConsecutiveOccurrences++;
} else {
cpuLoadConsecutiveOccurrences = 0;
}
// Mark the service down only after a consecutive number of cpu load occurrences.
if (cpuLoadConsecutiveOccurrences >= maxCpuLoadConsecutiveOccurrences) {
log.warn("CPU usage {} crossed the threshold of {}", currentCpuLoadPercent, maxCpuLoadPercent);
return Health
.down()
.withDetail(CPU_LOAD, currentCpuLoadPercent)
.build();
} else {
return Health
.up()
.withDetail(CPU_LOAD, currentCpuLoadPercent)
.build();
}
}
}