home / skills / openclaw / skills / ping-monitor
This skill performs ICMP health checks using ping to verify host reachability and monitor uptime across networks.
npx playbooks add skill openclaw/skills --skill ping-monitorReview the files below or copy the command above to add this skill to your agents.
---
name: ping-monitor
description: "ICMP health check for hosts, phones, and daemons"
metadata:
{
"openclaw":
{
"emoji": "🏓",
"requires": { "bins": ["ping"] },
"install": [],
},
}
---
# Ping Monitor
ICMP health check for hosts, phones, and daemons. Uses the standard `ping` utility to verify network reachability of any target host.
## Commands
```bash
# Ping a host with default settings
ping-monitor <host>
# Ping a host with a specific count
ping-monitor check <host> --count 3
```
## Install
No installation needed. `ping` is always present on the system.
This skill performs ICMP health checks for hosts, phones, and daemons using the system ping utility. It provides a simple command-line interface to verify network reachability and basic responsiveness of any target address. No additional installation is required if the system ping command is available.
The skill invokes the native ping tool to send ICMP echo requests to the specified target and parses the results to determine reachability and packet loss. You can run a default single check or specify a count to collect multiple samples. It reports success/failure and basic timing statistics so you can detect intermittent outages or high latency.
Does this require installing extra software?
No. It uses the system-provided ping command, so no additional install is needed if ping is present.
Can I use this to monitor services beyond reachability?
Ping checks only verify ICMP-level reachability and basic latency. For application-level health checks, combine with service-specific probes like HTTP or TCP checks.