mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-23 06:30:05 +00:00
* docs: memory profile scripts * chore: typo * chore: comment * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: newline eof --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
7 lines
236 B
Bash
Executable File
7 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Download flamegraph.pl to current directory - this is the flame graph generation tool script
|
|
|
|
curl https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegraph.pl > ./flamegraph.pl
|
|
chmod +x ./flamegraph.pl
|