summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/export-to-postgresql-report
blob: cd335b6e2a01479d066ffe398d76723abf5e742c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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
a href='/distro/kernel/commit/arch/Kconfig?id=d5cf50dafc9dd5faa1e61e7021e3496ddf7fd61e'>Kconfig: add some hidden tabs on purposeLinus Torvalds 2024-04-09lib: Add one-byte emulation functionPaul E. McKenney 2024-04-09arch: Select new NEED_TASKS_RCU Kconfig optionPaul E. McKenney 2024-03-23Merge tag 'hardening-v6.9-rc1-fixes' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds 2024-03-21Merge tag 'kbuild-v6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/masa...Linus Torvalds 2024-03-18arch/Kconfig: eliminate needless UTF-8 character in Kconfig helpLiu Song 2024-03-06arch: consolidate existing CONFIG_PAGE_SIZE_*KB definitionsArnd Bergmann 2024-02-25kbuild: Use -fmin-function-alignment when availablePetr Pavlu 2024-01-25scs: add CONFIG_MMU dependency for vfree_atomic()Samuel Holland 2024-01-18Merge tag 'iommu-updates-v6.8' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds 2024-01-09Merge tag 'mm-nonmm-stable-2024-01-09-10-33' of git://git.kernel.org/pub/scm/...Linus Torvalds 2024-01-05mm/mglru: add CONFIG_ARCH_HAS_HW_PTE_YOUNGKinsey Ho 2023-12-12iommu: Change kconfig around IOMMU_SVAJason Gunthorpe 2023-12-10arch: remove ARCH_TASK_STRUCT_ON_STACKHeiko Carstens 2023-12-10arch: remove ARCH_TASK_STRUCT_ALLOCATORHeiko Carstens 2023-12-10arch: remove ARCH_THREAD_STACK_ALLOCATORHeiko Carstens