aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/state/HostLifeGatherer.java
blob: 876c3657b9d821a73bf335e163031ff08812a5df (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
26
27
28
29
30
31
32
33
// Copyright Vespa.ai. 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 com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.yahoo.component.Vtag;

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

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

    private static final ObjectMapper jsonMapper = new ObjectMapper();

    public static JsonNode getHostLifePacket() {
        ObjectNode jsonObject = jsonMapper.createObjectNode();
        jsonObject.put("timestamp", Instant.now().getEpochSecond());
        jsonObject.put("application", "host_life");
        ObjectNode metrics = jsonMapper.createObjectNode();
        metrics.put("alive", 1);
        jsonObject.set("metrics", metrics);
        ObjectNode dimensions = jsonMapper.createObjectNode();
        dimensions.put("vespaVersion", Vtag.currentVersion.toFullString());
        jsonObject.set("dimensions", dimensions);
        return jsonObject;
    }

}