mcpbeat

Skill Metrics

microsoft/skill-metrics

[Skill] metrics, azure-monitor, aks - Query Azure Monitor metrics for Koji AKS node CPU, memory, disk usage, and pod readiness.

314 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
5305
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/azurelinux --skill skill-metrics

The instruction itself

5 sections, as written by the author

Koji Azure Monitor Metrics

Tools

| Tool | Purpose |

|------|---------|

| monitor_metrics_definitions | Discover available metrics for a resource |

| monitor_metrics_query | Query metric time-series values |

Key metric namespaces

AKS (Microsoft.ContainerService/managedClusters)

| Metric | Description |

|--------|-------------|

| node_cpu_usage_percentage | Node CPU utilization |

| node_memory_working_set_percentage | Node memory utilization |

| kube_pod_status_ready | Pod readiness count |

| node_disk_usage_percentage | Node disk utilization |

Common query patterns

Use aggregation: "Average" and interval: "PT1H" for hourly trends, interval: "PT5M" for granular views.

Example: Query AKS node CPU and memory over the last 24 hours:

  • resource: AKS cluster name from deployment summary
  • metric-names: node_cpu_usage_percentage,node_memory_working_set_percentage
  • metric-namespace: Microsoft.ContainerService/managedClusters
  • aggregation: Average
  • interval: PT1H

How to use it

Copy the folder

Take microsoft/skill-metrics from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.