aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/NodeMetricsHttpFetcher.java
blob: 0993cd73b72ab1463496a941f8a4fea4b92460c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.autoscale;

import java.util.ArrayList;
import java.util.Collection;

/**
 * Fetches node metrics over the metrics/v2 API
 *
 * @author bratseth
 */
public class NodeMetricsHttpFetcher implements NodeMetrics {

    @Override
    public Collection<Metric> fetchMetrics(String hostname) {
        return new ArrayList<>();
    }

}