#!/bin/bash # description: export perf data to a postgresql database # args: [database name] [columns] [calls] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 3 ] ; then echo "usage: export-to-postgresql-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-postgresql.py $dbname $columns $calls t'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/scripts/decode_stacktrace.sh
AgeCommit message (Expand)Author
2025-11-09scripts/decode_stacktrace.sh: fix build ID and PC source parsingCarlos Llamas
2025-09-21scripts/decode_stacktrace.sh: code: preserve alignmentMatthieu Baerts (NGI0)
2025-09-21scripts/decode_stacktrace.sh: symbol: preserve alignmentMatthieu Baerts (NGI0)
2025-09-21scripts/decode_stacktrace.sh: symbol: avoid trailing whitespacesMatthieu Baerts (NGI0)
2025-01-12scripts/decode_stacktrace.sh: fix decoding of lines with an additional infoLuca Ceresoli
2024-11-05scripts/decode_stacktrace.sh: remove trailing spaceBreno Leitao
2024-09-01scripts/decode_stacktrace.sh: add '-h' flagLuca Ceresoli
2024-09-01scripts/decode_stacktrace.sh: clarify command lineLuca Ceresoli
2024-09-01scripts/decode_stacktrace.sh: remove find_module recursion and improve error ...Luca Ceresoli
2024-09-01scripts/decode_stacktrace.sh: nix-ifyKent Overstreet
2024-06-24scripts/decode_stacktrace.sh: better support to ARM32 module stack traceXiong Nandi
2024-06-24scripts/decode_stacktrace.sh: wrap nm with UTIL_PREFIX and UTIL_SUFFIXXiong Nandi