io.micronaut.management.health.indicator.diskspace.DiskSpaceIndicator Maven / Gradle / Ivy
 The newest version!
        
        /*
 * Copyright 2017-2020 original authors
 *
 * 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
 *
 * https://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 io.micronaut.management.health.indicator.diskspace;
import io.micronaut.context.annotation.Requires;
import io.micronaut.core.util.StringUtils;
import io.micronaut.health.HealthStatus;
import io.micronaut.management.endpoint.health.HealthEndpoint;
import io.micronaut.management.health.indicator.AbstractHealthIndicator;
import jakarta.inject.Singleton;
import java.io.File;
import java.util.LinkedHashMap;
import java.util.Map;
/**
 * A {@link io.micronaut.management.health.indicator.HealthIndicator} used to display information about the disk
 * space of the server. Returns {@link HealthStatus#DOWN} if the free space is less than the configured threshold.
 *
 * @author James Kleeh
 * @see DiskSpaceIndicatorConfiguration#threshold
 * @since 1.0
 */
@Singleton
@Requires(property = HealthEndpoint.PREFIX + ".disk-space.enabled", notEquals = StringUtils.FALSE)
@Requires(beans = HealthEndpoint.class)
public class DiskSpaceIndicator extends AbstractHealthIndicator    © 2015 - 2025 Weber Informatics LLC | Privacy Policy