-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlogging.go
81 lines (64 loc) · 1.33 KB
/
logging.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
package main
import (
"fmt"
"os"
"runtime"
"strconv"
"github.com/alecthomas/log4go"
)
type LogItem struct {
Message string
}
var Logs []LogItem
func saveLogs() {
logFile := log4go.NewFileLogWriter("stack.log", false)
logFile.SetFormat("%d %t - %M (%S)")
logFile.SetRotate(false)
logFile.SetRotateSize(0)
logFile.SetRotateDaily(true)
logStack := make(log4go.Logger)
logStack.AddFilter("file", log4go.DEBUG, logFile)
for i := range Logs {
fmt.Println(Logs[i].Message)
logStack.Info(Logs[i].Message)
}
}
func goDetails(done chan bool) {
i := 0
for {
var message string
stackBuf := make([]byte, 1024)
stack := runtime.Stack(stackBuf, false)
stack++
_, callerFile, callerLine, ok := runtime.Caller(0)
message = "Goroutinge from " + string(callerLine) + "" + string(callerFile) + " stack:" + string(stackBuf)
openGoroutine := runtime.NumGoroutine()
if ok == true {
message = message + callerFile
}
message = message + strconv.FormatInt(int64(openGoroutine), 10) + " goroutine active"
li := LogItem{Message: message}
Logs = append(Logs, li)
if i == 20 {
done <- true
break
}
i++
}
}
func main() {
done := make(chan bool)
go goDetails(done)
for i := 0; i < 10; i++ {
go goDetails(done)
}
for {
select {
case d := <-done:
if d == true {
saveLogs()
os.Exit(1)
}
}
}
}