aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/state/MetricSnapshot.java
blob: f284e7a2985d28ddd51abf3b2f868bbb78cf1692 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// 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 java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

/**
 * A snapshot of the metrics of this system in a particular time interval.
 *
 * @author Simon Thoresen Hult
 */
public final class MetricSnapshot implements Iterable<Map.Entry<MetricDimensions, MetricSet>> {

    private final Map<MetricDimensions, MetricSet> data;
    private final long fromMillis;
    private final long toMillis;

    public MetricSnapshot(long from, long to, TimeUnit unit, Map<MetricDimensions, MetricSet> data) {
        this.fromMillis = unit.toMillis(from);
        this.toMillis = unit.toMillis(to);
        this.data = data;
    }

    MetricSnapshot() {
        this(0, 0, TimeUnit.MILLISECONDS, new HashMap<>());
    }

    MetricSnapshot(long from, long to, TimeUnit unit) {
        this(from, to, unit, new HashMap<>());
    }

    private static MetricSnapshot createWithMetrics(Map<MetricDimensions, MetricSet> data) {
        return new MetricSnapshot(0, 0, TimeUnit.MILLISECONDS, data);
    }

    public long getFromTime(TimeUnit unit) {
        return unit.convert(fromMillis, TimeUnit.MILLISECONDS);
    }

    public long getToTime(TimeUnit unit) {
        return unit.convert(toMillis, TimeUnit.MILLISECONDS);
    }

    /** Returns all the metrics in this snapshot. */
    @Override
    public Iterator<Map.Entry<MetricDimensions, MetricSet>> iterator() {
        return data.entrySet().iterator();
    }

    void add(MetricDimensions dim, String key, Number val) {
        metricSet(dim).add(key, val);
    }

    void set(MetricDimensions dim, String key, Number val) {
        metricSet(dim).set(key, val);
    }

    void add(MetricSnapshot snapshot) {
        for (Map.Entry<MetricDimensions, MetricSet> entry : snapshot) {
            MetricSet metricSet = data.get(entry.getKey());
            if (metricSet != null) {
                metricSet.add(entry.getValue());
            } else {
                data.put(entry.getKey(), entry.getValue());
            }
        }
    }

    /** Returns a metric set from this snapshot for a given set of dimensions */
    public MetricSet metricSet(MetricDimensions dim) {
        MetricSet metricSet = data.get(dim);
        if (metricSet == null) {
            data.put(dim, metricSet = new MetricSet());
        }
        return metricSet;
    }

    /**
     * Create a new snapshot instance where Gauge metrics are preserved
     * with the last-values they have in this snapshot instance.
     */
    public MetricSnapshot createSnapshot() {
        Map<MetricDimensions, MetricSet> newData = new HashMap<>();
        for (Map.Entry<MetricDimensions, MetricSet> entry : data.entrySet()) {
            MetricSet newSet = entry.getValue().partialClone();
            if ( ! newSet.isEmpty()) {
                newData.put(entry.getKey(), newSet);
            }
        }
        return createWithMetrics(newData);
    }

}