-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitor.go
145 lines (111 loc) · 2.38 KB
/
monitor.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
package main
import (
"bufio"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"strconv"
"strings"
"time"
)
const monitoramentos = 2
const delay = 5
func main() {
exibeIntroducao()
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 := "Douglas"
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 := leSitesDoArquivo()
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, err := http.Get(site)
if err != nil {
fmt.Println("Ocorreu um erro:", err)
}
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 leSitesDoArquivo() []string {
var sites []string
arquivo, err := os.Open("sites.txt")
if err != nil {
fmt.Println("Ocorreu um erro:", err)
}
leitor := bufio.NewReader(arquivo)
for {
linha, err := leitor.ReadString('\n')
linha = strings.TrimSpace(linha)
sites = append(sites, linha)
if err == io.EOF {
break
}
}
arquivo.Close()
return sites
}
func registraLog(site string, status bool) {
arquivo, err := os.OpenFile("log.txt", os.O_RDWR|os.O_CREATE|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")
arquivo.Close()
}
func imprimeLogs() {
arquivo, err := ioutil.ReadFile("log.txt")
if err != nil {
fmt.Println(err)
}
fmt.Println(string(arquivo))
}