forked from reusee/taobao-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.go
48 lines (41 loc) · 956 Bytes
/
web.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
package taobao
import (
"encoding/json"
"net/http"
_ "net/http/pprof"
)
type TraceInfo struct {
What string
Entries []*Entry
}
func StartWeb() {
http.Handle("/", http.FileServer(http.Dir("./web")))
http.HandleFunc("/jobs.json", func(w http.ResponseWriter, r *http.Request) {
var infos []TraceInfo
jobTraceSet.Dump(w, func(trace *Trace) bool {
return !trace.Flag("done")
}, func(t *Trace) {
infos = append(infos, TraceInfo{
What: t.what,
Entries: t.Entries(),
})
})
bs, err := json.Marshal(infos)
ce(err, "marshal")
w.Write(bs)
})
http.HandleFunc("/done_jobs.json", func(w http.ResponseWriter, r *http.Request) {
var infos []TraceInfo
jobTraceSet.Dump(w, func(trace *Trace) bool {
return trace.Flag("done")
}, func(t *Trace) {
infos = append(infos, TraceInfo{
What: t.what,
Entries: t.Entries(),
})
})
bs, err := json.Marshal(infos)
ce(err, "marshal")
w.Write(bs)
})
}