-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
59 lines (47 loc) · 1.3 KB
/
config.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
package main
import (
"os"
"gopkg.in/yaml.v3"
)
type Config struct {
AgentsOfChaos AgentsOfChaos `yaml:"agents_of_chaos"`
}
type AgentsOfChaos struct {
Syscall []SyscallConfig `yaml:"syscall"`
OutgoingNetwork []ProcessOutgoingNetworkConfig `yaml:"outgoing_network"`
IncomingNetwork []SystemIncomingNetworkConfig `yaml:"incoming_network"`
}
type SyscallConfig struct {
Name string `yaml:"name"`
Syscall string `yaml:"syscall"`
RetCode int `yaml:"ret_code"`
Targets []Target `yaml:"targets"`
DelayMs int `yaml:"delay_ms"`
FailureRate int `yaml:"failure_rate"`
}
type ProcessOutgoingNetworkConfig struct {
Name string `yaml:"name"`
Targets []Target `yaml:"targets"`
DelayMs int `yaml:"delay_ms"`
FailureRate int `yaml:"failure_rate"`
}
type SystemIncomingNetworkConfig struct {
Name string `yaml:"name"`
DelayMs int `yaml:"delay_ms"`
FailureRate int `yaml:"failure_rate"`
}
type Target struct {
ProcessName string `yaml:"process_name,omitempty"`
}
func ParseConfig(file string) (*Config, error) {
var config Config
fileBytes, err := os.ReadFile(file)
if err != nil {
return nil, err
}
err = yaml.Unmarshal(fileBytes, &config)
if err != nil {
return nil, err
}
return &config, nil
}