Install
openclaw skills install @kasture-rohit/vcf-loginsight-sddc-errorsExtract recent critical SDDC Manager and vCenter error logs from Aria Operations for Logs to assist with VCF troubleshooting.
openclaw skills install @kasture-rohit/vcf-loginsight-sddc-errorsWhen the user asks to find recent errors, investigate failures, or troubleshoot SDDC Manager workflows, follow these steps:
LOGINSIGHT_HOST and LOGINSIGHT_API_TOKEN are available in the environment.exec tool to run the following command. This queries the Log Insight API for recent log entries containing the keyword "error" specifically originating from SDDC Manager or related VCF components:
curl -s -k -X GET "https://$LOGINSIGHT_HOST/api/v1/events?keyword=error&limit=10" \
-H "Authorization: Bearer $LOGINSIGHT_API_TOKEN" \
-H "Accept: application/json" | jq '.events[]? | {timestamp, source, text}'