Kafka consumer lag
Skill lensesio/agentic-engineering-for-apache-kafka/skills/kafka-consumer-lag
Analyse Kafka consumer group lag using the Lenses MCP server. Diagnoses lag causes (throughput bottlenecks, rebalancing, partition skew, stalled consumers) and suggests remediation. Use when user says "check consumer lag", "why are consumers slow", "lag report" or asks about consumer group health or offset progress. Do NOT use for resetting offsets or managing consumer groups.From its SKILL.md
npx -y skills add lensesio/agentic-engineering-for-apache-kafka --skill kafka-consumer-lagAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
7.3 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
Kafka Consumer Lag Analysis
Analyses consumer group lag across all groups and diagnoses potential causes. Consumer lag is the most commonly monitored Kafka metric and the first thing engineers check during incidents.
Target environment: $ARGUMENTS
Workflow
Copy this checklist and track your progress:
Lag Analysis Progress:
- [ ] Step 1: Fetch all consumer groups
- [ ] Step 2: Identify problematic groups
- [ ] Step 3: Diagnose root causes
- [ ] Step 4: Generate report
- Fetch all consumer groups with state and lag info
- Identify problematic groups (high lag, idle, rebalancing)
- Diagnose root causes using partition and throughput data
- Report findings with per-group remediation steps
Step 1: Fetch Consumer Groups
Use the Lenses MCP list_consumer_groups tool to get all consumer groups with:
- Group state (Stable, Rebalancing, Empty, Dead)
- Lag per topic-partition
- Active member count
- Coordinator info
For topic-specific analysis, use list_consumer_groups_by_topic to narrow the scope.
Expected output: List of all consumer groups with state, lag and member count.
Validation: If no consumer groups are returned, report this finding and stop - the cluster may have no active consumers.
Step 2: Identify Problematic Groups
Flag consumer groups in these categories:
Critical
- Groups in Dead or Empty state with committed offsets (consumer has stopped)
- Groups with lag growing over time (compare current lag against partition end offsets using
get_topic_partitions)
Warning
- Groups in Rebalancing state (consumption paused)
- Groups with uneven partition assignment (some consumers have significantly more partitions than others)
- Groups with no committed offsets (consumer may never have started successfully)
Suggestion
- Groups with very high member count relative to partition count (idle consumers)
- Groups consuming from topics with no recent messages (use
get_dataset_message_metricsto check producer throughput)
Step 3: Diagnose Root Causes
For each problematic group, determine the likely cause:
Growing Lag + Stable Producer Rate
- Consumer throughput bottleneck
- Remediation: Scale consumers, increase
max.poll.records, reduce processing time per message, check for synchronous blocking calls
Lag Spikes + Rebalancing
- Rebalancing is pausing consumption
- Remediation: Switch to cooperative sticky assignor, increase
session.timeout.ms, reducemax.poll.interval.msrisk
Single-Partition Lag (others are fine)
- Hot partition / key skew
- Remediation: Review partitioning strategy, check for hot keys, consider custom partitioner
All Partitions Lagging Equally
- Overall consumer slowness
- Remediation: Profile consumer processing, check for external dependencies (database, API calls), increase consumer instances
Zero Lag but Empty Group
- Consumer crashed or was decommissioned
- Remediation: Check consumer process health, restart if needed, clean up stale groups
Step 4: Verify Data Flow
Use the Lenses MCP execute_sql tool to sample recent messages from lagging topics:
SELECT * FROM {topic} LIMIT 5
This confirms the topic has active producers and messages are flowing.
Success Criteria
Quantitative
- Triggers on 90% of lag-related queries (test with 10-20 varied phrasings)
- Completes analysis in under 12 MCP tool calls
- 0 failed MCP calls per run
Qualitative
- Each flagged group has a specific diagnosis and remediation
- Report distinguishes symptom from root cause
- Consistent results when re-run on the same environment
Examples
Example 1: Incident investigation
User says: "Consumers are falling behind, check the lag"
Actions:
- Fetch all consumer groups for the environment
- Sort by total lag descending to find the worst offenders
- Diagnose root causes for each critical group Result: Prioritised report with per-group diagnosis and remediation
Example 2: Topic-specific lag check
User says: "Check consumer lag for orders.payment.completed"
Actions:
- Use
list_consumer_groups_by_topicto get groups consuming from that topic - Check partition-level lag distribution
- Verify data flow with
execute_sqlResult: Focused report on a single topic's consumer groups
Example 3: Stale group cleanup
User says: "Find any dead or empty consumer groups"
Actions:
- Fetch all consumer groups
- Filter for Dead or Empty state with committed offsets
- Report stale groups that can be safely cleaned up Result: List of candidate groups for deletion
Troubleshooting
Consumer groups list is empty
Cause: No consumer groups exist in the environment or permissions are restricted. Solution: Verify consumers are running. Check Lenses agent permissions allow listing consumer groups.
Lag numbers seem incorrect
Cause: Consumer group offsets may be stale if the consumer recently stopped.
Solution: Compare lag against partition end offsets from get_topic_partitions. Note when offsets were last committed.
execute_sql returns no data
Cause: Topic is empty or has very old messages beyond the query window.
Solution: Use get_dataset_message_metrics to check if the topic has recent throughput. An empty topic with lagging consumers indicates a producer issue.
Output Format
## Consumer Lag Report
### Environment: {name}
### Critical (immediate action)
| Consumer Group | Topic | Total Lag | State | Diagnosis | Remediation |
|---------------|-------|-----------|-------|-----------|-------------|
| group-name | topic | 50000 | Stable | Throughput bottleneck | Scale consumers |
### Warning (investigate)
| Consumer Group | Topic | Total Lag | State | Diagnosis | Remediation |
|---------------|-------|-----------|-------|-----------|-------------|
### Suggestion (optimise)
| Consumer Group | Topic | Total Lag | State | Diagnosis | Remediation |
|---------------|-------|-----------|-------|-----------|-------------|
### Summary
- X consumer groups analysed
- Y groups with critical lag
- Z groups with warnings
- Stale/empty groups: N
What ships with it: 1 file
1.8 KB alongside SKILL.md
references/
- test-cases.md1.8 KB
Gives 0 of the 12 instructions most mcp tooling skills give in ~1.3k tokens
Counted across 780 of the 1,136 authors here whose files we hold, read 2026-09-06
- Use Zod for input validationin 34 of 780, across 21 files
- Use stdio for local clientsin 27 of 780, across 10 files
- Restart Claude Code after configurationin 26 of 780, across 23 files
- Verify MCP server connection before using toolsin 23 of 780, across 17 files
- Define input schemas for every toolin 20 of 780, across 11 files
- Use Streamable HTTP for remote clientsin 18 of 780, across 8 files
- Pin SDK version in package.jsonin 17 of 780, across 6 files
- Keep server logic independent of transportin 16 of 780, across 6 files
- Verify SDK methods against official documentationin 15 of 780, across 5 files
- Format evaluation results as an XML filein 15 of 780, across 12 files
- Test servers using the MCP Inspectorin 15 of 780, across 14 files
- Create ten complex and independent evaluation questionsin 14 of 780, across 11 files
Said here and by no other author read
- Fetch all consumer groups with state and lag info
- Identify problematic consumer groups
- Diagnose root causes using partition and throughput data
- Report findings with per-group remediation steps
- Use list_consumer_groups to get group state and lag
- Use list_consumer_groups_by_topic for topic-specific analysis
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.