-
Notifications
You must be signed in to change notification settings - Fork 19
/
structs.go
235 lines (212 loc) · 7.04 KB
/
structs.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
package main
import(
"sync"
)
type Metric struct {
Name string `json:"name"`
Value int `json:"value"`
Timestamp int64 `json:"timestamp"`
}
// Struct to hold the output from the /stats endpoint
type StatsGroup struct {
Pxname string `json:"pxname"`
Svname string `json:"svname"`
Qcur string `json:"qcur"`
Qmax string `json:"qmax"`
Scur string `json:"scur"`
Smax string `json:"smax"`
Slim string `json:"slim"`
Stot string `json:"stot"`
Bin string `json:"bin"`
Bout string `json:"bout"`
Dreq string `json:"dreq"`
Dresp string `json:"dresp"`
Ereq string `json:"ereq"`
Econ string `json:"econ"`
Eresp string `json:"eresp"`
Wretr string `json:"wretr"`
Wredis string `json:"wredis"`
Status string `json:"status"`
Weight string `json:"weight"`
Act string `json:"act"`
Bck string `json:"bck"`
Chkfail string `json:"chkfail"`
Chkdown string `json:"chkdown"`
Lastchg string `json:"lastchg"`
Downtime string `json:"downtime"`
Qlimit string `json:"qlimit"`
Pid string `json:"pid"`
Iid string `json:"iid"`
Sid string `json:"sid"`
Throttle string `json:"throttle"`
Lbtot string `json:"lbtot"`
Tracked string `json:"tracked"`
_Type string `json:"type"`
Rate string `json:"rate"`
Rate_lim string `json:"rate_lim"`
Rate_max string `json:"rate_max"`
Check_status string `json:"check_status"`
Check_code string `json:"check_code"`
Check_duration string `json:"check_duration"`
Hrsp_1xx string `json:"hrsp_1xx"`
Hrsp_2xx string `json:"hrsp_2xx"`
Hrsp_3xx string `json:"hrsp_3xx"`
Hrsp_4xx string `json:"hrsp_4xx"`
Hrsp_5xx string `json:"hrsp_5xx"`
Hrsp_other string `json:"hrsp_other"`
Hanafail string `json:"hanafail"`
Req_rate string `json:"req_rate"`
Req_rate_max string `json:"req_rate_max"`
Req_tot string `json:"req_tot"`
Cli_abrt string `json:"cli_abrt"`
Srv_abrt string `json:"srv_abrt"`
Comp_in string `json:"comp_in"`
Comp_out string `json:"comp_out"`
Comp_byp string `json:"comp_byp"`
Comp_rsp string `json:"comp_rsp"`
Lastsess string `json:"lastsess"`
Last_chk string `json:"last_chk"`
Last_agt string `json:"last_agt"`
Qtime string `json:"qtime"`
Ctime string `json:"ctime"`
Rtime string `json:"rtime"`
Ttime string `json:"ttime"`
}
// struct to hold the output from the /info endpoint
type Info struct {
Name string `json:"Name"`
Version string `json:"Version"`
Release_date string `json:"Release_date"`
Nbproc string `json:"Nbproc"`
Process_num string `json:"Process_num"`
Pid string `json:"Pid"`
Uptime string `json:"Uptime"`
Uptime_sec string `json:"Uptime_sec"`
Memmax_MB string `json:"Memmax_MB"`
Ulimitn string `json:"Ulimit-n"`
Maxsock string `json:"Maxsock"`
Maxconn string `json:"Maxconn"`
Hard_maxconn string `json:"Hard_maxconn"`
CurrConns string `json:"CurrConns"`
CumConns string `json:"CumConns"`
CumReq string `json:"CumReq"`
MaxSslConns string `json:"MaxSslConns"`
CurrSslConns string `json:"CurrSslConns"`
CumSslConns string `json:"CumSslConns"`
Maxpipes string `json:"Maxpipes"`
PipesUsed string `json:"PipesUsed"`
PipesFree string `json:"PipesFree"`
ConnRate string `json:"ConnRate"`
ConnRateLimit string `json:"ConnRateLimit"`
MaxConnRate string `json:"MaxConnRate"`
SessRate string `json:"SessRate"`
SessRateLimit string `json:"SessRateLimit"`
MaxSessRate string `json:"MaxSessRate"`
SslRate string `json:"SslRate"`
SslRateLimit string `json:"SslRateLimit"`
MaxSslRate string `json:"MaxSslRate"`
SslFrontendKeyRate string `json:"SslFrontendKeyRate"`
SslFrontendMaxKeyRate string `json:"SslFrontendMaxKeyRate"`
SslFrontendSessionReuse_pct string `json:"SslFrontendSessionReuse_pct"`
SslBackendKeyRate string `json:"SslBackendKeyRate"`
SslBackendMaxKeyRate string `json:"SslBackendMaxKeyRate"`
SslCacheLookups string `json:"SslCacheLookups"`
SslCacheMisses string `json:"SslCacheMisses"`
CompressBpsIn string `json:"CompressBpsIn"`
CompressBpsOut string `json:"CompressBpsOut"`
CompressBpsRateLim string `json:"CompressBpsRateLim"`
ZlibMemUsage string `json:"ZlibMemUsage"`
MaxZlibMemUsage string `json:"MaxZlibMemUsage"`
Tasks string `json:"Tasks"`
Run_queue string `json:"Run_queue"`
Idle_pct string `json:"Idle_pct"`
node string `json:"node"`
description string `json:"description"`
}
// Main configuration object for load balancers. This contains all variables and is passed to
// the templating engine.
type Config struct {
Frontends [] *Frontend `json:"frontends"`
Backends [] *Backend `json:"backends"`
Services[] *Service `json:"services"`
PidFile string `json:"-"`
Mutex *sync.RWMutex `json:"-"`
templateFile *string `json:"-"`
configFile *string `json:"-"`
}
func (f *Config) SetPid(pid string) {
f.PidFile = pid
}
func (f *Config) GetPid()(string) {
return f.PidFile
}
type Foo struct {
name string
}
func (f *Foo) SetName(name string) {
f.name = name
}
type Service struct {
Name string `json:"name"`
BindPort int `json:"bindPort"`
EndPoint string `json:"endPoint"`
Mode string `json:"mode"`
}
// Defines a single haproxy "backend".
type Backend struct {
Name string `json:"name"`
Mode string `json:"mode"`
BackendServers [] *BackendServer `json:"servers"`
Options ProxyOptions `json:"options"`
ProxyMode bool `json:"proxyMode"`
}
// Defines a single haproxy "frontend".
type Frontend struct {
Name string `json:"name"`
Mode string `json:"mode"`
BindPort int `json:"bindPort"`
BindIp string `json:"bindIp"`
UnixSock string `json:"unixSock"`
SockProtocol string `json:"sockProtocol"`
Options ProxyOptions `json:"options"`
DefaultBackend string `json:"defaultBackend"`
ACLs [] *ACL `json:"acls"`
HttpSpikeLimit SpikeLimit `json:"httpSpikeLimit,omitempty"`
TcpSpikeLimit SpikeLimit `json:"tcpSpikeLimit,omitempty"`
}
type ProxyOptions struct {
AbortOnClose bool `json:"abortOnClose"`
AllBackups bool `json:"allBackups"`
CheckCache bool `json:"checkCache"`
ForwardFor bool `json:"forwardFor"`
HttpClose bool `json:"httpClose"`
HttpCheck bool `json:"httpCheck"`
SslHelloCheck bool `json:"sslHelloCheck"`
TcpKeepAlive bool `json:"tcpKeepAlive"`
TcpLog bool `json:"tcpLog"`
TcpSmartAccept bool `json:"tcpSmartAccept"`
TcpSmartConnect bool `json:"tcpSmartConnect"`
}
// Defines a server which exists in a backend.
type BackendServer struct {
Name string `json:"name"`
Host string `json:"host"`
Port int `json:"port"`
UnixSock string `json:"unixSock"`
Weight int `json:"weight"`
MaxConn int `json:"maxconn"`
Check bool `json:"check"`
CheckInterval int `json:"checkInterval"`
}
// Defines an ACL
type ACL struct {
Name string `json:"name"`
Backend string `json:"backend"`
Pattern string `json:"pattern"`
}
// Defines a rate limiting setup
type SpikeLimit struct {
SampleTime string `json:"sampleTime,omitempty"`
ExpiryTime string `json:"expiryTime,omitempty"`
Rate int `json:"rate,omitempty"`
}