agent: |
P3B63YoTRl0Cg0m8dynrDo basic health check on a server
Do basic health check on a server
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
inputs
outputs
op = "```\n"
op += "Memory check: \n"
op += _exe(host, "free")
op += "\n\n"
op += "CPU check: \n"
op += _exe(host, "top -b -n 1 | grep Cpu")
op += "\n\n"
op += "Disk check: \n"
op += _exe(host, "df /")
op += "\n"
op += "```"
health_check_summary = op
print(op)
copied