-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
64 lines (56 loc) · 1.12 KB
/
main.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
package main
import (
"io/ioutil"
"log"
"net/http"
"time"
"shtload/utils"
)
var BASE_URL string
func getUrl(url string, data string) ([]byte, string) {
full_url := BASE_URL + url
resp, err := http.Get(full_url)
if err != nil {
log.Println(err)
}
body, err := ioutil.ReadAll(resp.Body)
resp.Body.Close()
return body, resp.Status
}
func benchmarkUrl(url string, method string, data string) {
for {
status := ""
success := 0
failed := 0
start := time.Now()
for {
if method == utils.GET {
_, status = getUrl(url, "")
} else if method == utils.POST {
_, status = getUrl(url, data)
}
finish := time.Now()
elapsed := finish.Sub(start).Seconds()
if status == "200 OK" {
success += 1
} else {
failed += 1
}
if elapsed >= 1 {
break
}
}
log.Println("success:", success, "failed:", failed, "url:", name)
}
}
func main() {
log.Println("starting the shtload...")
confs := utils.ReadConfig()
BASE_URL = confs.Base_Url
for _, url := range confs.Urls {
if url.Method == "get" {
defer benchmarkUrl(url.Name, url.Route, utils.GET, "")
}
}
// defer benchmarkUrl()
}