Check the health, uptime, and node status of Aria Operations for Logs (Log Insight) in a VCF environment.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add Lord1Egypt/awesome-skill-forge --skill vcf-loginsight-health --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vcf Loginsight Health?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lord1egypt-vcf-loginsight-health)More formats (shields.io, HTML) on the badges page.
---
name: vcf-loginsight-health
description: Check the health, uptime, and node status of Aria Operations for Logs (Log Insight) in a VCF environment.
version: 1.0.1
homepage: https://github.com/kasture-rohit/vcf-openclaw-skills
metadata:
openclaw:
requires:
env:
- LOGINSIGHT_HOST
- LOGINSIGHT_API_TOKEN
bins:
- curl
- jq
primaryEnv: LOGINSIGHT_API_TOKEN
emoji: ""
---
# VCF Log Insight Health Check
When the user asks to check the health of the Log Insight or Aria Operations for Logs cluster, follow these steps:
1. **Verify Credentials:** Ensure `LOGINSIGHT_HOST` and `LOGINSIGHT_API_TOKEN` are available in the environment.
2. **Fetch Cluster Health:** Use the `exec` tool to run the following command to check the cluster status:
```bash
curl -s -k -X GET "https://$LOGINSIGHT_HOST/api/v1/health" \
-H "Authorization: Bearer $LOGINSIGHT_API_TOKEN" \
-H "Accept: application/json" | jq '.'
```
3. **Fetch Node Status:** Use the `exec` tool to run the following command to check individual node uptime and status:
```bash
curl -s -k -X GET "https://$LOGINSIGHT_HOST/api/v1/cluster/nodes" \
-H "Authorization: Bearer $LOGINSIGHT_API_TOKEN" \
-H "Accept: application/json" | jq '.nodes[] | {id, ip, status, uptime}'
```
4. **Report to User:** Summarize the JSON output into a clean, readable table detailing the overall health and the status of each node. Point out any errors or disconnected nodes explicitly.Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!