summaryrefslogtreecommitdiffstats
path: root/hosted-api/src/main/java/ai/vespa/hosted/api/DeploymentLog.java
blob: a42072fffd8f1067754c4696d56fedb0b7012d93 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package ai.vespa.hosted.api;

import java.time.Instant;
import java.util.List;
import java.util.OptionalLong;

import static java.util.Comparator.comparing;
import static java.util.stream.Collectors.toUnmodifiableList;

/**
 * A list of {@link Entry} items from a deployment job.
 *
 * @author jonmv
 */
public class DeploymentLog {

    private final List<Entry> entries;
    private final boolean active;
    private final Status status;
    private final OptionalLong last;

    public DeploymentLog(List<Entry> entries, boolean active, Status status, OptionalLong last) {
        this.entries = entries.stream().sorted(comparing(Entry::at)).collect(toUnmodifiableList());
        this.active = active;
        this.status = status;
        this.last = last;
    }

    public List<Entry> entries() {
        return entries;
    }

    public boolean isActive() {
        return active;
    }

    public Status status() {
        return status;
    }

    public OptionalLong last() {
        return last;
    }


    public static class Entry {

        private final Instant at;
        private final String level;
        private final String message;

        public Entry(Instant at, String level, String message) {
            this.at = at;
            this.level = level;
            this.message = message;
        }

        public Instant at() {
            return at;
        }

        public String level() {
            return level;
        }

        public String message() {
            return message;
        }

    }


    public enum Status {
        running,
        aborted,
        error,
        testFailure,
        outOfCapacity,
        installationFailed,
        deploymentFailed,
        success;
    }

}