-
Notifications
You must be signed in to change notification settings - Fork 24
/
chaos.go
47 lines (39 loc) · 790 Bytes
/
chaos.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
package main
import (
"context"
"fmt"
"time"
"github.com/slok/goresilience/chaos"
)
func errorOnOddMinute(ctx context.Context) error {
minute := time.Now().Minute()
if minute%2 != 0 {
return fmt.Errorf("error because %d minute is odd", minute)
}
return nil
}
func main() {
var chaosctrl chaos.Injector
chaosctrl.SetLatency(200 * time.Millisecond)
chaosctrl.SetErrorPercent(15)
runner := chaos.New(chaos.Config{
Injector: &chaosctrl,
})
errs := make(chan error)
go func() {
for {
time.Sleep(10 * time.Millisecond)
go func() {
errs <- runner.Run(context.TODO(), func(ctx context.Context) error {
fmt.Printf("[+] good\n")
return nil
})
}()
}
}()
for err := range errs {
if err != nil {
fmt.Printf("[!] err: %s\n", err)
}
}
}