← 返回 Skills 市场
kasture-rohit

VCF Log Insight Health Check

作者 Rohit Kasture · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
106
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install vcf-loginsight-health
功能描述
Check the health, uptime, and node status of Aria Operations for Logs (Log Insight) in a VCF environment.
使用说明 (SKILL.md)

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:
    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:
    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.
安全使用建议
This skill appears to do exactly what it says: run two Log Insight API calls and summarize results. Before installing: 1) Confirm the skill will run only in a trusted environment (it executes curl and will transmit your API token to LOGINSIGHT_HOST). 2) Avoid using a high-privilege API token; create a scoped token with minimum needed permissions and rotate/expire it. 3) If possible, avoid or justify the use of curl -k; prefer a valid TLS certificate on the Log Insight endpoint to prevent MITM risk. 4) Treat LOGINSIGHT_API_TOKEN as sensitive — do not paste it into chats or logs. 5) Verify the skill source (the GitHub homepage) if you need higher assurance about authorship. If you accept those caveats, the skill is coherent with its stated purpose.
功能分析
Type: OpenClaw Skill Name: vcf-loginsight-health Version: 1.0.1 The skill bundle is designed to check the health and node status of VMware Aria Operations for Logs (Log Insight) via its REST API. It uses standard curl commands in SKILL.md to query endpoints defined by user-provided environment variables (LOGINSIGHT_HOST, LOGINSIGHT_API_TOKEN). The logic is transparent, aligns with the stated purpose, and contains no evidence of data exfiltration or unauthorized execution.
能力评估
Purpose & Capability
Name, description, required binaries (curl, jq), and required environment variables (LOGINSIGHT_HOST, LOGINSIGHT_API_TOKEN) all match the stated purpose of querying Log Insight APIs. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
Instructions are narrowly scoped to two API calls (/api/v1/health and /api/v1/cluster/nodes) and summarizing results. A notable detail: curl is invoked with -k (insecure) which disables TLS certificate verification; this is sometimes necessary for appliances with self-signed certs but is a security risk (MITM exposure). The SKILL.md does not instruct reading other files or unrelated environment variables.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk by an installer. This is the lowest-risk install model.
Credentials
Only LOGINSIGHT_HOST and LOGINSIGHT_API_TOKEN are required and the primary credential is the API token — these are appropriate and proportionate for querying the service. No unrelated secrets or broad credential access is requested.
Persistence & Privilege
Skill is not always-enabled and does not request persistent system privileges or modify other skills' configuration. It uses exec at runtime to call curl, which is expected for this purpose.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install vcf-loginsight-health
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /vcf-loginsight-health 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Added homepage field to skill metadata. - Updated version to 1.0.1. - No functional changes to logic or usage.
v1.0.0
Initial release of vcf-loginsight-health - Provides health checks for Aria Operations for Logs (Log Insight) clusters in VMware Cloud Foundation (VCF) environments. - Verifies required credentials (`LOGINSIGHT_HOST`, `LOGINSIGHT_API_TOKEN`) and required tools (`curl`, `jq`). - Fetches overall cluster health and detailed node status, including uptime. - Reports summarized, human-readable health and node status, highlighting any errors or disconnected nodes.
元数据
Slug vcf-loginsight-health
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

VCF Log Insight Health Check 是什么?

Check the health, uptime, and node status of Aria Operations for Logs (Log Insight) in a VCF environment. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 106 次。

如何安装 VCF Log Insight Health Check?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install vcf-loginsight-health」即可一键安装,无需额外配置。

VCF Log Insight Health Check 是免费的吗?

是的,VCF Log Insight Health Check 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

VCF Log Insight Health Check 支持哪些平台?

VCF Log Insight Health Check 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 VCF Log Insight Health Check?

由 Rohit Kasture(@kasture-rohit)开发并维护,当前版本 v1.0.1。

💬 留言讨论