-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow_test.go
71 lines (66 loc) · 1.47 KB
/
window_test.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
package cpuprofile
import (
"context"
"fmt"
"runtime/pprof"
"testing"
"time"
)
func matrixTranspose(ctx context.Context, label, labelValue string) {
matrix := make([][]int, 100)
for i := range matrix {
matrix[i] = make([]int, 100)
}
ctx = pprof.WithLabels(ctx, pprof.Labels(label, labelValue))
pprof.SetGoroutineLabels(ctx)
for {
for i := 0; i < 100; i++ {
for j := 0; j < i; j++ {
t := matrix[i][j]
matrix[i][j] = matrix[j][i]
matrix[j][i] = t
}
}
select {
case <-ctx.Done():
return
default:
continue
}
}
}
func startNMatrixT(ctx context.Context, num int, isCancel bool, cancelTime time.Duration, label, labelValue string) {
newCtx := ctx
var cancel context.CancelFunc
if isCancel {
newCtx, cancel = context.WithCancel(newCtx)
}
for i := 0; i < num; i++ {
go matrixTranspose(newCtx, label, labelValue)
}
if isCancel {
go func() {
time.Sleep(cancelTime)
cancel()
}()
}
}
func TestWindowProfile(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
StartCPUProfiler(ctx, time.Second)
EnableWindowAggregator(30)
startNMatrixT(ctx, 4, true, 40*time.Second, "task", "A")
startNMatrixT(ctx, 2, true, 60*time.Second, "task", "B")
startNMatrixT(ctx, 1, true, 60*time.Second, "task", "C")
for i := 0; i < 10; i++ {
time.Sleep(10 * time.Second)
go func() {
data := GetWindowData()
for label, mp := range data {
fmt.Println(label, *mp)
}
fmt.Println(data.TopN(2))
}()
}
}