SSH ActionsΒΆ
- Get AWS EC2 with low available disk size : This action retrieves the public IP's of AWS EC2 instances that have low available disk space.
- Get AWS EC2 with low free memory size : This action uses SSH to identify AWS EC2 instances with low available memory.
- Get SSH handle : Get SSH handle
- Get hosts with low disk latency : This action checks the disk latency on the provided hosts by running a disk write command and measuring the time taken. If the time taken exceeds a given threshold, the host is flagged as having potential latency issues.
- SCP: Remote file transfer over SSH : Copy files from or to remote host. Files are copied over SCP.
- SSH Execute Remote Command : SSH Execute Remote Command
- SSH Restart Service Using sysctl : SSH Restart Service Using sysctl
- SSH: Locate large files on host : This action scans the file system on a given host and returns a dict of large files. The command used to perform the scan is "find inspect_folder -type f -exec du -sk '{}' + | sort -rh | head -n count"