-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello.go
112 lines (87 loc) · 2.06 KB
/
hello.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
package main
import (
"fmt"
"net/http"
"os"
"strconv"
"time"
)
const monitoramentos = 2
const delay = 5
func main() {
exibeIntroducao()
registraLog("https://www.alura.com.br", false)
for {
exibeMenu()
comando := leComando()
switch comando {
case 1:
iniciarMonitoramento()
case 2:
fmt.Println("Exibindo Logs...")
imprimeLogs()
case 0:
fmt.Println("Saindo do programa")
os.Exit(0)
default:
fmt.Println("Não conheço este comando")
os.Exit(-1)
}
}
}
func exibeIntroducao() {
nome := "Adenilson"
versao := 1.2
fmt.Println("Olá, sr.", nome)
fmt.Println("Este programa está na versão", versao)
}
func exibeMenu() {
fmt.Println("1- Iniciar Monitoramento")
fmt.Println("2- Exibir Logs")
fmt.Println("0- Sair do Programa")
}
func leComando() int {
var comandoLido int
fmt.Scan(&comandoLido)
fmt.Println("O comando escolhido foi", comandoLido)
fmt.Println("")
return comandoLido
}
func iniciarMonitoramento() {
fmt.Println("Monitorando...")
sites := []string{"https://random-status-code.herokuapp.com/", "https://www.alura.com.br", "https://www.caelum.com.br"}
for i := 0; i < monitoramentos; i++ {
for i, site := range sites {
fmt.Println("Testando site", i, ":", site)
testaSite(site)
}
time.Sleep(delay * time.Second)
fmt.Println("")
}
fmt.Println("")
}
func testaSite(site string) {
resp, _ := http.Get(site)
if resp.StatusCode == 200 {
fmt.Println("Site:", site, "foi carregado com sucesso!")
registraLog(site, true)
} else {
fmt.Println("Site:", site, "esta com problemas. Status Code:", resp.StatusCode)
registraLog(site, false)
}
}
func registraLog(site string, status bool) {
arquivo, err := os.OpenFile("log_txt", os.O_CREATE|os.O_RDWR|os.O_APPEND, 0666)
if err != nil {
fmt.Println(err)
}
arquivo.WriteString(time.Now().Format("02/01/2006 15:04:05") + site + "- online: " + strconv.FormatBool(status) + "\n")
fmt.Println(arquivo)
}
func imprimeLogs() {
arquivo, err := os.ReadFile("log.txt")
if err != nil {
fmt.Println("Ocorreu um erro:", err)
}
fmt.Println(string(arquivo))
}