Copilot
Sign in
Update Profile
Preferences
Change Password
My runbooks
Shared with me
Sign out
link
copy
reject
agent:
Select a proxy
Select LLM
gpt-4.1
gpt-4o
llama3-3-70b-instruct
deepseek
Cpxt7BiFk8RmbmJWxzzA
No space left on the device
No space left on the device
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Checks for disk utilization and returns an error if it crossed a given threshold.
inputs
Select type
String
Integer
Float
Boolean
Array
Object / Dictionary
Dropdown
File
required
outputs
import shutil u = shutil.disk_usage("/") utilization = 100 * u.used / u.total if utilization > threshold: context.log("ERROR", "Disk usage too high")
copied
Linux
disk