forked from superfly/flyctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_monitoring.go
129 lines (120 loc) · 2.22 KB
/
resource_monitoring.go
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package api
import "context"
func (c *Client) GetAppStatus(ctx context.Context, appName string, showCompleted bool) (*AppStatus, error) {
query := `
query($appName: String!, $showCompleted: Boolean!) {
appstatus:app(name: $appName) {
id
name
deployed
status
hostname
version
appUrl
organization {
slug
}
deploymentStatus {
id
status
version
description
placedCount
promoted
desiredCount
healthyCount
unhealthyCount
}
platformVersion
allocations(showCompleted: $showCompleted) {
id
idShort
version
latestVersion
status
desiredStatus
totalCheckCount
passingCheckCount
warningCheckCount
criticalCheckCount
createdAt
updatedAt
canary
region
restarts
healthy
privateIP
taskName
checks {
status
output
name
}
}
}
}
`
req := c.NewRequest(query)
req.Var("appName", appName)
req.Var("showCompleted", showCompleted)
ctx = ctxWithAction(ctx, "get_app_status")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
return &data.AppStatus, nil
}
func (c *Client) GetAllocationStatus(ctx context.Context, appName string, allocID string, logLimit int) (*AllocationStatus, error) {
query := `
query($appName: String!, $allocId: String!, $logLimit: Int!) {
app(name: $appName) {
allocation(id: $allocId) {
id
idShort
version
latestVersion
status
desiredStatus
totalCheckCount
passingCheckCount
warningCheckCount
criticalCheckCount
createdAt
updatedAt
canary
region
restarts
privateIP
taskName
checks {
status
output
name
serviceName
}
events {
timestamp
type
message
}
recentLogs(limit: $logLimit) {
id
level
timestamp
message
}
}
}
}
`
req := c.NewRequest(query)
req.Var("appName", appName)
req.Var("allocId", allocID)
req.Var("logLimit", logLimit)
ctx = ctxWithAction(ctx, "get_allocation_status")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
return data.App.Allocation, nil
}