azure/log-analytics-workspace-queryer
Uses REST API to query Log Analytics workspaces. Use this skill when you need to query a Log Analytics workspace, for example, to check if the table exists in the workspace, or to validate an ASIM parser.
npx skills add https://github.com/Azure/Azure-Sentinel --skill log-analytics-workspace-queryer
This skill requires two inputs. This information should come from another skill and you do not need to ask the user for it.
Execute the PowerShell script at scripts/queryLogAnalytics.ps1 (relative to this skill's directory) by passing the workspace ID and KQL query as parameters:
.\scripts\queryLogAnalytics.ps1 -WorkspaceId "<workspaceId>" -Query "<KQL query>"
Return the full query output to the calling skill. The calling skill is responsible for interpreting and filtering the results (e.g., filtering for Error or Warning patterns during ASIM validation).
Take azure/log-analytics-workspace-queryer from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.