admin / Synapse-Cortex
publicSelf Hosted ITSM Tool with RBAC/Tenanting and MFA
Synapse-Cortex / Synapse-Cortexv2 / playbooks / find-largest-files-directories-linux.json
1554 B · main
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 | { "name": "Find Largest Files & Directories (Linux)", "enabled": true, "allowed_target_os": [ "linux" ], "required_approval_level": "human_in_the_loop", "forbidden_commands": [], "graph_json": { "nodes": [ { "id": "start", "type": "start", "data": {}, "position": { "x": 250, "y": 0 } }, { "id": "cmd_df", "type": "command", "data": { "label": "Show filesystem usage", "command": "df -h" }, "position": { "x": 250, "y": 130 } }, { "id": "cmd_dirs", "type": "command", "data": { "label": "Top 20 largest directories", "command": "du -ahx / 2>/dev/null | sort -rh | head -20" }, "position": { "x": 250, "y": 260 } }, { "id": "cmd_files", "type": "command", "data": { "label": "Files larger than 500 MB", "command": "find / -xdev -type f -size +500M 2>/dev/null" }, "position": { "x": 250, "y": 390 } } ], "edges": [ { "id": "e_start_cmd_df", "source": "start", "target": "cmd_df" }, { "id": "e_cmd_df_cmd_dirs", "source": "cmd_df", "target": "cmd_dirs" }, { "id": "e_cmd_dirs_cmd_files", "source": "cmd_dirs", "target": "cmd_files" } ] } } |