← Back to list
name: tidb-profiler-analyzer
description: Processes and analyzes TiDB profiler zip packages (CPU or heap) for components like TiDB, TiKV, PD, or TiFlash. It unzips, aggregates the profiler data, and uses

tidb-profiler-analyzer
by hawkingrei
Collect some prompts needed for TiDB development.
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: tidb-profiler-analyzer
description: Processes and analyzes TiDB profiler zip packages (CPU or heap) for components like TiDB, TiKV, PD, or TiFlash. It unzips, aggregates the profiler data, and uses go tool pprof to report on the most time-consuming functions (CPU) or highest memory allocations (heap).
TiDB Profiler Analyzer Skill
Your primary goal is to organize and analyze profiler data from various TiDB component (tidb, pd, tikv, tiflash) .zip archives.
Follow these steps meticulously:
- Unzip all the zip files: Locate and extract the contents of all
.zipfiles present in the current working directory. Each zip file should be unzipped into a separate, appropriately named directory. - Create 'profiler_data' directory: Create a new directory named
'profiler_data'at the root of the current working directory. This directory will house all collected profiler files. - Move profiler files: Recursively search through all the directories created in step 1. Identify and move all files found within these unzipped directories to the newly created
'profiler_data'directory. - Analyze Profiler Data:
a. Identify the type of profiler data in the
'profiler_data'directory (CPU or Heap). You can often infer this from filenames (e.g., containing "cpu" vs "heap"). If unsure, you may need to ask the user. b. Use thego tool pprofto analyze the collected data. * For CPU profiles: Rungo tool pprof -top <path_to_profiler_file>to find the most time-consuming functions. * For Heap profiles: Rungo tool pprof -top --alloc_space <path_to_profiler_file>to find the functions with the most memory allocations. c. Present a summary of the analysis results to the user. - Confirmation and Cleanup: After the analysis is complete, you must prompt the user for confirmation before proceeding with cleanup. If the user approves, delete the original
.zipfiles and the now empty unzipped directories to tidy up the workspace.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon