admission-control
Use when the user asks to "write a validator", "add validation", "implement admission control", "write a mutating webhook", "add a mutation handler", "validate…
Query live Pyroscope profiles with profilecli, analyze them with pprof, and correlate hot functions with checked-out source code. Use when the user asks to investigate a service with a configured Pyroscope server, profilecli, and pprof.
$ npx -y skills add grafana/skills --skill profilecli-insights --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/profilecli-insightsContext preview
The summary Claude sees to decide when to auto-load this skill.
Query live Pyroscope profiles with profilecli, analyze them with pprof, and correlate hot functions with checked-out source code. Use when the user asks to investigate a service with a configured Pyroscope server, profilecli, and pprof.
name: profilecli-insights license: Apache-2.0 compatibility: Requires profilecli and pprof, or Go with go tool pprof, on PATH plus access to a Pyroscope-compatible server. description: > Query live Pyroscope profiles with profilecli, analyze them with pprof, and correlate hot functions with checked-out source code. Use when the user asks to investigate a service with a configured Pyroscope server, profilecli, and pprof. allowed-tools: Bash(profilecli:*) Bash(pprof:*) Bash(go tool pprof:*) Bash(git:*) Bash(mktemp:*) Read Grep Glob
You are a performance analysis assistant. Query a remote Pyroscope continuous profiling server with `profilecli`, then correlate the results with source code in the current repository to provide actionable insights.
Follow these steps in order. Do not skip steps.
Check that `profilecli` is on PATH:
profilecli --version
If it is not found, instruct the user to download it from `https://github.com/grafana/pyroscope/releases/latest/download/`.
Select the command to use for all later profile analysis:
if command -v pprof >/dev/null 2>&1; then PPROF=(pprof) else PPROF=(go tool pprof) fi
Run a series query to validate the connection and discover profile types:
profilecli query series --label-names=__profile_type__ --output json
If this succeeds, parse the JSON output and retain the available `__profile_type__` values. Common types include:
You need these profile types in Step 4.
If the query fails, help the user configure the connection:
`PROFILECLI_URL` is required. Set it to the Pyroscope server URL, such as `http://localhost:4040`, or to a Grafana data source proxy URL when using `PROFILECLI_TOKEN`, such as `https://my-grafana.example.com/api/datasources/proxy/uid/<datasource-uid>`.
`PROFILECLI_TOKEN` is required for Grafana Cloud. It must be a Grafana service account token in `glsa_...` format with the Viewer role. `PROFILECLI_TENANT_ID` is optional for multi-tenant setups.
Then stop and wait for the user to configure the environment and for the initial query to succeed.
List available services and find ones that correlate with the checked-out repository:
profilecli query series --query '{}' --label-names service_repository --label-names service_name --output jsonParse the JSON output for `service_name` and `service_repository`. Compare `service_repository` to `git remote get-url origin`; matching services are most relevant. Match the user's question to one or more service names.
If the question does not clearly map to a service, show the available services, highlight repository matches, and ask the user which service to analyze.
Query the target service with an appropriate type discovered in Step 2. The query must be a valid ProfileQL label selector.
PROFILE="$(mktemp -t profilecli-insights)"
profilecli query profile \
--query '<QUERY>' \
--profile-type <PROFILE_TYPE> \
--from now-1h --to now \
--output "pprof=${PROFILE}" -fIf the output is empty, broaden the range to `--from now-6h` or `--from now-24h`.
Analyze the generated profile:
"${PPROF[@]}" -lines -top -cum "${PROFILE}"Extract the functions with the most flat and cumulative samples. Highlight:
The `pprof -lines -top -cum` output lists functions in this format:
<flat> <flat%> <sum%> <cum> <cum%> <function-name> <source-file>:<line>
For example:
1859.03s 23.50% ... github.com/grafana/pyroscope/pkg/distributor.(*Distributor).PushBatch.func1 github.com/grafana/pyroscope/pkg/distributor/distributor.go:380
Use the source path after the function name to correlate profile frames with this checkout:
1. Normalize the selected service's `service_repository` into its module prefix: remove the URL scheme, any SSH user and host separator, and a trailing `.git`. For example, `https://github.com/grafana/pyroscope.git` becomes `github.com/grafana/pyroscope`. 2. Frames beginning with that module prefix, without an `@version` suffix, are likely in this repository. Third-party Go dependencies typically include `@v...` in their module path. 3. Strip the module prefix from an in-repository frame to get a relative path. For example, `github.com/grafana/pyroscope/pkg/distributor/distributor.go:380` becomes `pkg/distributor/distributor.go` at line 380. 4. If the pprof Build ID includes JSON with a `git_ref`, compare it with `git log --oneline -1`. If they differ, warn that line numbers may be stale. Use `git log --oneline <git_ref>..HEAD -- <file>` to see whether the mapped file changed. If the Build ID has no `git_ref`, note that source alignment cannot be verified. 5. Read a window of about 20 lines before and after the reported source line. Extract the relevant method or function from the fully-qualified function name.
For significant third-party or runtime functions, repo
Public skills for working with Grafana, Prometheus, Loki, Tempo, Pyroscope, k6, and the broader LGTM observability stack. Compatible with Claude Code, Cursor, Codex, and any tool supporting the Agent Skills open standard.
Repo: grafana/skills
Use when the user asks to "write a validator", "add validation", "implement admission control", "write a mutating webhook", "add a mutation handler", "validate…
Use when starting any grafana-app-sdk work — scaffolding a Grafana app, initializing a Grafana App Platform app, picking a deployment mode (standalone operator…
Author CUE kind definitions for grafana-app-sdk apps - schemas, versioning, field constraints, named type definitions, custom routes, and codegen…
Implement reconcilers and watchers for grafana-app-sdk apps — write `TypedReconciler[*MyKind]` reconcile functions, apply generation-based skip patterns, do…
Cut Grafana Cloud Metrics cost by shrinking active-series count with Adaptive Metrics aggregation rules — auto-recommendations from query history, custom…