aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/DummyMetric.java
blob: 1cdac87f3df451f6821bc0d0b421c35df4eb5b05 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.server;

import com.yahoo.jdisc.Metric;

import java.util.Map;

/**
 * @author Einar M R Rosenvinge
 * @since 5.1.20
 */
class DummyMetric implements Metric {

    @Override
    public void set(String key, Number val, Context ctx) {
    }

    @Override
    public void add(String key, Number val, Context ctx) {
    }

    @Override
    public Context createContext(Map<String, ?> properties) {
        return DummyContext.INSTANCE;
    }

    private static class DummyContext implements Context {
        private static final DummyContext INSTANCE = new DummyContext();
    }

}