forked from chaos-mesh/chaos-mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpchaos.go
147 lines (126 loc) · 3.67 KB
/
httpchaos.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright 2021 Chaos Mesh Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package debug
import (
"context"
"fmt"
"strings"
"github.com/hasura/go-graphql-client"
"github.com/chaos-mesh/chaos-mesh/api/v1alpha1"
"github.com/chaos-mesh/chaos-mesh/pkg/chaosctl/common"
ctrlclient "github.com/chaos-mesh/chaos-mesh/pkg/ctrl/client"
)
type httpDebugger struct {
client *ctrlclient.CtrlClient
}
func HTTPDebug(client *ctrlclient.CtrlClient) Debugger {
return &httpDebugger{
client: client,
}
}
func (d *httpDebugger) Collect(ctx context.Context, namespace, chaosName string) ([]*common.ChaosResult, error) {
var results []*common.ChaosResult
var name *graphql.String
if chaosName != "" {
n := graphql.String(chaosName)
name = &n
}
var query struct {
Namespace []struct {
HTTPChaos []struct {
Name string
Podhttp []struct {
Namespace string
Name string
Spec *v1alpha1.PodHttpChaosSpec
Pod struct {
Iptables []string
Processes []struct {
Pid string
Command string
Fds []struct {
Fd, Target string
}
}
}
}
} `graphql:"httpchaos(name: $name)"`
} `graphql:"namespace(ns: $namespace)"`
}
variables := map[string]interface{}{
"namespace": graphql.String(namespace),
"name": name,
}
err := d.client.QueryClient.Query(ctx, &query, variables)
if err != nil {
return nil, err
}
if len(query.Namespace) == 0 {
return results, nil
}
for _, httpChaos := range query.Namespace[0].HTTPChaos {
result := &common.ChaosResult{
Name: string(httpChaos.Name),
}
for _, podhttpchaos := range httpChaos.Podhttp {
podResult := common.PodResult{
Name: string(podhttpchaos.Name),
}
podResult.Items = append(podResult.Items, common.ItemResult{Name: "iptables list", Value: strings.Join(podhttpchaos.Pod.Iptables, "\n")})
for _, process := range podhttpchaos.Pod.Processes {
var fds []string
for _, fd := range process.Fds {
fds = append(fds, fmt.Sprintf("%s -> %s", fd.Fd, fd.Target))
}
podResult.Items = append(podResult.Items, common.ItemResult{
Name: fmt.Sprintf("file descriptors of PID: %s, COMMAND: %s", process.Pid, process.Command),
Value: strings.Join(fds, "\n"),
})
}
output, err := common.MarshalChaos(podhttpchaos.Spec)
if err != nil {
return nil, err
}
podResult.Items = append(podResult.Items, common.ItemResult{Name: "podhttpchaos", Value: output})
result.Pods = append(result.Pods, podResult)
}
results = append(results, result)
}
return results, nil
}
func (d *httpDebugger) List(ctx context.Context, namespace string) ([]string, error) {
var query struct {
Namespace []struct {
HTTPChaos []struct {
Name string
} `graphql:"httpchaos"`
} `graphql:"namespace(ns: $namespace)"`
}
variables := map[string]interface{}{
"namespace": graphql.String(namespace),
}
err := d.client.QueryClient.Query(ctx, &query, variables)
if err != nil {
return nil, err
}
if len(query.Namespace) == 0 {
return nil, nil
}
var names []string
for _, httpChaos := range query.Namespace[0].HTTPChaos {
names = append(names, string(httpChaos.Name))
}
return names, nil
}