mirror of https://github.com/ceph/ceph
11 lines
273 B
Bash
Executable File
11 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p traces
|
|
lttng create -o traces librbd
|
|
lttng enable-event -u 'librbd:*'
|
|
lttng add-context -u -t pthread_id
|
|
lttng start
|
|
LD_LIBRARY_PATH=../../src/.libs/ qemu-system-i386 -m 1024 rbd:rbd/my-image:conf=../../src/ceph.conf
|
|
lttng stop
|
|
lttng view > trace.log
|