summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/admin/MonitoringSystem.java
blob: de95c9a8d9ab630d19722bda72673ae98fb3ae1f (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 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.admin;

/**
 * Interface for different monitoring services
 *
 * @author <a href="mailto:musum@yahoo-inc.com">Harald Musum</a>
 */
public interface MonitoringSystem {
    /**
     * @return Snapshot interval in minutes
     */
    public Integer getInterval();

    /**
     * @return Snapshot interval in seconds.
     */
    public Integer getIntervalSeconds();

    /**
     * @return the monitoring cluster name
     */
    public String getClustername();
}