aboutsummaryrefslogtreecommitdiffstats
path: root/application-model/src/main/java/com/yahoo/vespa/applicationmodel/ServiceStatus.java
blob: 7d06f4b7127400514e4facfa259d6db463eeea64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.applicationmodel;

/**
 * @author oyving
 */
public enum ServiceStatus {
    UP,
    DOWN,

    /** The status has not yet been probed or has expired.  A status of UP or DOWN is expected shortly. */
    UNKNOWN,

    /** The service is not monitored for health, and will never get any other status than NOT_CHECKED. */
    NOT_CHECKED
}