Skip to content

Commit 548fcf1

Browse files
committed
List Largest Files
1 parent b3a4d07 commit 548fcf1

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed
Loading
Loading

docs/.vuepress/sidebar-menus/learning.ts

+1
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ export default [{
249249
collapsible: true,
250250
children: [
251251
{ link: '/learning/solutions/storage-management/index.md', text: 'Solution Summary' },
252+
{ link: '/learning/solutions/storage-management/storage-list-largest-files.md', text: 'List Largest Files' },
252253
]
253254
}
254255
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# List Largest Files in Directory
2+
3+
This documentation provides details on how to use a Rundeck job to list the largest files by file size in a specified directory and its subdirectories. This job is useful for identifying large files that may be consuming significant disk space.
4+
5+
## Job Description
6+
7+
This job will:
8+
- List the largest files by file size in the current directory and its subdirectories.
9+
10+
### Assumptions
11+
12+
- The job assumes the node is a Linux endpoint with `find`, `du`, `sort`, and `head` installed.
13+
- The default start directory is the Runner Execution folder or the home folder of the authenticated user on remote nodes.
14+
15+
### Notes
16+
17+
- No nodes are selected by default. Change Target Nodes and select the endpoint to run against.
18+
- The job can **take a long time to run** if the directory has a lot of files in it.
19+
20+
## Configuration
21+
22+
### Job Options
23+
24+
- **Start Directory:** The path where the scan will start. The default is the current execution directory (`.`).
25+
- **Number of Results:** Choose how many results should be returned in the list. Some dropdown options are provided, but any number can be specified.
26+
27+
![job-options](/assets/img/storage-largest-files-job.png)<br>
28+
29+
## Successful Execution
30+
31+
![success-output](/assets/img/storage-list-largest-output.png)<br>

0 commit comments

Comments
 (0)