summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/state/MetricGatherer.java
blob: 103a4363ac2a0dce4b427296a1c3cd65f6cae890 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.jdisc.state;

import com.fasterxml.jackson.databind.JsonNode;

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

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

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

}