aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/MetricsDb.java
blob: 6fdc87f2448fe9616856ebbce51b1cf7a071d120 (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
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.autoscale;

import com.yahoo.collections.Pair;
import com.yahoo.vespa.hosted.provision.Node;
import com.yahoo.vespa.hosted.provision.NodeList;
import com.yahoo.vespa.hosted.provision.NodeRepository;

import java.time.Clock;
import java.time.Duration;
import java.time.Instant;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * An in-memory time-series database of node metrics.
 *
 * @author bratseth
 */
public interface MetricsDb {

    /** Adds snapshots to this. */
    void add(Collection<Pair<String, MetricSnapshot>> nodeMetrics);

    /**
     * Returns a list with one entry for each hostname containing
     * the snapshots recorded after the given time (or an empty snapshot if none).
     *
     * @param period the duration into the past to return data for
     */
    List<NodeTimeseries> getNodeTimeseries(Duration period, Set<String> hostnames);

    default List<NodeTimeseries> getNodeTimeseries(Duration period, NodeList nodes) {
        return getNodeTimeseries(period, nodes.stream().map(Node::hostname).collect(Collectors.toSet()));
    }

    /** Must be called intermittently (as long as add is called) to gc old data */
    void gc();

    void close();

    static MetricsDb createTestInstance(NodeRepository nodeRepository) {
        return new MemoryMetricsDb(nodeRepository);
    }

}