xiejun
2024-11-01 80b6cbfc9c861469146318d0b3dd5f8b8b525b8a
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
package org.springblade.core.prometheus.data;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Getter;
 
import java.util.List;
import java.util.Map;
 
/**
 * model details see https://www.consul.io/api/health.html#list-nodes-for-service
 *
 * @author consul
 */
@Getter
@Builder
public class ServiceHealth {
 
    @JsonProperty("Node")
    private Node node;
 
    @JsonProperty("Service")
    private Service service;
 
    @JsonProperty("Checks")
    private List<Check> checks;
 
    @Getter
    @Builder
    public static class Node {
 
        @JsonProperty("Node")
        private String name;
 
        @JsonProperty("Address")
        private String address;
 
        @JsonProperty("Meta")
        private Map<String, String> meta;
    }
 
    @Getter
    @Builder
    public static class Service {
 
        @JsonProperty("ID")
        private String id;
 
        @JsonProperty("Service")
        private String name;
 
        @JsonProperty("Tags")
        private List<String> tags;
 
        @JsonProperty("Address")
        private String address;
 
        @JsonProperty("Meta")
        private Map<String, String> meta;
 
        @JsonProperty("Port")
        private int port;
    }
 
    @Getter
    @Builder
    public static class Check {
 
        @JsonProperty("Node")
        private String node;
 
        @JsonProperty("CheckID")
        private String checkId;
 
        @JsonProperty("Name")
        private String name;
 
        @JsonProperty("Status")
        private String status;
    }
}