-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-analyzer.json
More file actions
54 lines (54 loc) · 1.43 KB
/
test-analyzer.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
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
{
"program": {
"name": "Network Connectivity Troubleshooting",
"version": "1.0",
"tools": ["ip"],
"procedures": [
{
"id": "check_network_interface",
"name": "Check Network Interface",
"scope": "local",
"variables": {},
"steps": [
{
"id": "check_network_interface_step_1",
"type": "command",
"tool": "ip",
"command": "ip addr show",
"parameters": {
"args": ["addr", "show"]
},
"expected_output": "interface_list",
"assign_to": null,
"description": "Check interface status with"
},
{
"id": "check_network_interface_step_2",
"type": "command",
"tool": "ip",
"command": "ip link set eth0 up",
"parameters": {
"args": ["link", "set", "eth0", "up"]
},
"expected_output": "status",
"assign_to": null,
"description": "If interface is down, bring it up with"
}
],
"output": {}
}
],
"execution_order": ["check_network_interface"],
"global_memory": {},
"error_handling": {
"on_tool_error": "continue",
"on_condition_error": "abort",
"timeout": 30000
}
},
"options": {
"include_confidence": true,
"extract_entities": true,
"generate_graph": true
}
}