frontend: add the abilities to customized timeout time (#51)
* main.go: add timeout setting * lgproxy.go: use timeout setting when querying server * README.md: add new timeout setting
This commit is contained in:
parent
950c018b18
commit
348295b9aa
@ -68,6 +68,7 @@ Usage: all configuration is done via commandline parameters or environment varia
|
|||||||
| --net-specific-mode | BIRDLG_NET_SPECIFIC_MODE | apply network-specific changes for some networks, use "dn42" for BIRD in dn42 network |
|
| --net-specific-mode | BIRDLG_NET_SPECIFIC_MODE | apply network-specific changes for some networks, use "dn42" for BIRD in dn42 network |
|
||||||
| --protocol-filter | BIRDLG_PROTOCOL_FILTER | protocol types to show in summary tables (comma separated list); defaults to all if not set |
|
| --protocol-filter | BIRDLG_PROTOCOL_FILTER | protocol types to show in summary tables (comma separated list); defaults to all if not set |
|
||||||
| --name-filter | BIRDLG_NAME_FILTER | protocol names to hide in summary tables (RE2 syntax); defaults to none if not set |
|
| --name-filter | BIRDLG_NAME_FILTER | protocol names to hide in summary tables (RE2 syntax); defaults to none if not set |
|
||||||
|
| --time-out | BIRDLG_TIMEOUT | time before request timed out, in seconds; defaults to 120 if not set |
|
||||||
|
|
||||||
Example: the following command starts the frontend with 2 BIRD nodes, with domain name "gigsgigscloud.dn42.lantian.pub" and "hostdare.dn42.lantian.pub", and proxies are running on port 8000 on both nodes.
|
Example: the following command starts the frontend with 2 BIRD nodes, with domain name "gigsgigscloud.dn42.lantian.pub" and "hostdare.dn42.lantian.pub", and proxies are running on port 8000 on both nodes.
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ func batchRequest(servers []string, endpoint string, command string) []string {
|
|||||||
}
|
}
|
||||||
url := "http://" + hostname + ":" + strconv.Itoa(setting.proxyPort) + "/" + url.PathEscape(endpoint) + "?q=" + url.QueryEscape(command)
|
url := "http://" + hostname + ":" + strconv.Itoa(setting.proxyPort) + "/" + url.PathEscape(endpoint) + "?q=" + url.QueryEscape(command)
|
||||||
go func(url string, i int) {
|
go func(url string, i int) {
|
||||||
client := http.Client{Timeout: 120 * time.Second}
|
client := http.Client{Timeout: time.Duration(setting.timeOut) * time.Second}
|
||||||
response, err := client.Get(url)
|
response, err := client.Get(url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ch <- channelData{i, "request failed: " + err.Error() + "\n"}
|
ch <- channelData{i, "request failed: " + err.Error() + "\n"}
|
||||||
|
@ -25,6 +25,7 @@ type settingType struct {
|
|||||||
telegramBotName string
|
telegramBotName string
|
||||||
protocolFilter []string
|
protocolFilter []string
|
||||||
nameFilter string
|
nameFilter string
|
||||||
|
timeOut int
|
||||||
}
|
}
|
||||||
|
|
||||||
var setting settingType
|
var setting settingType
|
||||||
@ -45,6 +46,7 @@ func main() {
|
|||||||
telegramBotName: "",
|
telegramBotName: "",
|
||||||
protocolFilter: []string{},
|
protocolFilter: []string{},
|
||||||
nameFilter: "",
|
nameFilter: "",
|
||||||
|
timeOut: 120,
|
||||||
}
|
}
|
||||||
|
|
||||||
if env := os.Getenv("BIRDLG_SERVERS"); env != "" {
|
if env := os.Getenv("BIRDLG_SERVERS"); env != "" {
|
||||||
@ -99,6 +101,12 @@ func main() {
|
|||||||
if env := os.Getenv("BIRDLG_NAME_FILTER"); env != "" {
|
if env := os.Getenv("BIRDLG_NAME_FILTER"); env != "" {
|
||||||
settingDefault.nameFilter = env
|
settingDefault.nameFilter = env
|
||||||
}
|
}
|
||||||
|
if env := os.Getenv("BIRDLG_TIMEOUT"); env != "" {
|
||||||
|
var err error
|
||||||
|
if settingDefault.timeOut, err = strconv.Atoi(env); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
serversPtr := flag.String("servers", strings.Join(settingDefault.servers, ","), "server name prefixes, separated by comma")
|
serversPtr := flag.String("servers", strings.Join(settingDefault.servers, ","), "server name prefixes, separated by comma")
|
||||||
domainPtr := flag.String("domain", settingDefault.domain, "server name domain suffixes")
|
domainPtr := flag.String("domain", settingDefault.domain, "server name domain suffixes")
|
||||||
@ -117,6 +125,7 @@ func main() {
|
|||||||
protocolFilterPtr := flag.String("protocol-filter", strings.Join(settingDefault.protocolFilter, ","),
|
protocolFilterPtr := flag.String("protocol-filter", strings.Join(settingDefault.protocolFilter, ","),
|
||||||
"protocol types to show in summary tables (comma separated list); defaults to all if not set")
|
"protocol types to show in summary tables (comma separated list); defaults to all if not set")
|
||||||
nameFilterPtr := flag.String("name-filter", settingDefault.nameFilter, "protocol name regex to hide in summary tables (RE2 syntax); defaults to none if not set")
|
nameFilterPtr := flag.String("name-filter", settingDefault.nameFilter, "protocol name regex to hide in summary tables (RE2 syntax); defaults to none if not set")
|
||||||
|
timeOutPtr := flag.Int("time-out", settingDefault.timeOut, "time before request timed out, in seconds; defaults to 120 if not set")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
if *serversPtr == "" {
|
if *serversPtr == "" {
|
||||||
@ -164,6 +173,7 @@ func main() {
|
|||||||
*telegramBotNamePtr,
|
*telegramBotNamePtr,
|
||||||
protocolFilter,
|
protocolFilter,
|
||||||
*nameFilterPtr,
|
*nameFilterPtr,
|
||||||
|
*timeOutPtr,
|
||||||
}
|
}
|
||||||
|
|
||||||
ImportTemplates()
|
ImportTemplates()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user