All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.vespa.metricsproxy.service.SystemPollerProvider Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.metricsproxy.service;

import ai.vespa.metricsproxy.core.MonitoringConfig;
import com.yahoo.container.di.componentgraph.Provider;

import java.time.Duration;

/**
 * @author gjoranv
 */
public class SystemPollerProvider implements Provider {

    private final SystemPoller poller;

    /**
     * @param services   The list of VespaService instances to monitor for System metrics
     * @param monitoringConfig   The interval in seconds between each polling.
     */
    public SystemPollerProvider (VespaServices services, MonitoringConfig monitoringConfig) {
        if (runningOnLinux()) {
            Duration interval = Duration.ofMinutes(monitoringConfig.intervalMinutes());
            poller = new SystemPoller(services.getVespaServices(), interval);
            poller.schedule(Duration.ofSeconds(5));
        } else {
            poller = null;
        }
    }

    public void deconstruct() {
        if (poller != null) poller.stop();
    }

    public SystemPoller get() {
        if (poller == null) {
            throw new IllegalStateException("System poller is only available on Linux, current OS is" + getOs());
        }
        return poller;
    }

    public static boolean runningOnLinux() {
        return getOs().contains("nux");
    }

    private static String getOs() {
        return System.getProperty("os.name");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy