aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/testutils/MockMetricsFetcher.java
blob: 6c6face7ba69507300a8ab3c51331aacd2cdd106 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.testutils;

import com.yahoo.config.provision.ApplicationId;
import com.yahoo.vespa.hosted.provision.autoscale.MetricsFetcher;
import com.yahoo.vespa.hosted.provision.autoscale.MetricsResponse;

import java.util.concurrent.CompletableFuture;

/**
 * @author bratseth
 */
@SuppressWarnings("unused") // Injected in container from test code (services.xml)
public class MockMetricsFetcher implements MetricsFetcher {

    @Override
    public CompletableFuture<MetricsResponse> fetchMetrics(ApplicationId application) {
        return CompletableFuture.completedFuture(MetricsResponse.empty());
    }

    @Override
    public void deconstruct() {}

}