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

com.yahoo.container.jdisc.state.HostLifeGatherer Maven / Gradle / Ivy

// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.jdisc.state;

import org.json.JSONException;
import org.json.JSONObject;

import java.io.IOException;
import java.nio.file.Path;
import java.time.Instant;

/**
 * @author olaa
 */
public class HostLifeGatherer {

    private static final Path UPTIME_PATH = Path.of("/proc");

    public static JSONObject getHostLifePacket(FileWrapper fileWrapper) {
        long upTime;
        int statusCode = 0;
        String statusMessage = "OK";

        try {
            upTime = fileWrapper.getFileAgeInSeconds(UPTIME_PATH);
        } catch (IOException e) {
            upTime = 0;
            statusCode = 1;
            statusMessage = "Unable to read proc folder";
        }


        JSONObject jsonObject = new JSONObject();
        try {
            jsonObject.put("status_code", statusCode);
            jsonObject.put("status_msg", statusMessage);
            jsonObject.put("timestamp", Instant.now().getEpochSecond());
            jsonObject.put("application", "host_life");
            JSONObject metrics = new JSONObject();
            metrics.put("uptime", upTime);
            metrics.put("alive", 1);
            jsonObject.put("metrics", metrics);

        } catch (JSONException e) {}

        return jsonObject;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy