aboutsummaryrefslogtreecommitdiffstats
path: root/application-model/src/main/java/com/yahoo/vespa/applicationmodel/ServiceStatus.java
blob: 1cdbd0298a371b6040eedb7337b585a7d654e074 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. 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
}