aboutsummaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src/main/java/ai/vespa/metricsproxy/node/ServiceHealthGatherer.java
blob: f9106b60ab22341c97adc0f8bac339fa63326e64 (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
34
35
36
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.metricsproxy.node;

import ai.vespa.metricsproxy.metric.HealthMetric;
import ai.vespa.metricsproxy.metric.model.ConsumerId;
import ai.vespa.metricsproxy.metric.model.DimensionId;
import ai.vespa.metricsproxy.metric.model.MetricsPacket;
import ai.vespa.metricsproxy.service.VespaServices;

import java.time.Instant;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

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

    protected static List<MetricsPacket.Builder> gatherServiceHealthMetrics(VespaServices vespaServices)  {
        return vespaServices.getVespaServices()
                .stream()
                .map(service -> {
                    HealthMetric healt = service.getHealth();
                    return new MetricsPacket.Builder(service.getMonitoringName())
                            .timestamp(Instant.now().getEpochSecond())
                            .statusMessage(healt.getStatus().status)
                            .statusCode(healt.getStatus().code)
                            .putDimension(DimensionId.toDimensionId("instance"), service.getInstanceName())
                            .putDimension(DimensionId.toDimensionId("metrictype"), "health")
                            .addConsumers(Set.of(ConsumerId.toConsumerId("Vespa")));
                })
                .collect(Collectors.toList());
    }

}