summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/state/MetricGatherer.java
blob: 6a06a6362f59246a0b8af564f270b6157e80f06b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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.JSONObject;

import java.util.ArrayList;
import java.util.List;

/**
 * Gathers metrics regarding currently processing coredumps and host life.
 *
 * @author olaa
 */
public class MetricGatherer {

    static List<JSONObject> getAdditionalMetrics() {
        FileWrapper fileWrapper = new FileWrapper();
        List<JSONObject> packetList = new ArrayList<>();
        packetList.add(CoredumpGatherer.gatherCoredumpMetrics(fileWrapper));
        if (System.getProperty("os.name").contains("nux"))
            packetList.add(HostLifeGatherer.getHostLifePacket(fileWrapper));
        return packetList;
    }

}