From: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
To: y.karadz@gmail.com
Cc: rostedt@goodmis.org, linux-trace-devel@vger.kernel.org
Subject: [RFC PATCH v2 3/3] trace-cruncher: perf example
Date: Fri, 8 Apr 2022 13:03:39 +0300 [thread overview]
Message-ID: <20220408100339.594358-4-tz.stoyanov@gmail.com> (raw)
In-Reply-To: <20220408100339.594358-1-tz.stoyanov@gmail.com>
Example python program for using trace-cruncher to collect performance
statistics of a given process.
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
---
examples/perf_sampling.py | 53 +++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
create mode 100755 examples/perf_sampling.py
diff --git a/examples/perf_sampling.py b/examples/perf_sampling.py
new file mode 100755
index 0000000..6219bff
--- /dev/null
+++ b/examples/perf_sampling.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python3
+
+"""
+SPDX-License-Identifier: CC-BY-4.0
+
+Copyright 2022 VMware Inc, Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
+"""
+
+import sys
+import time
+import shutil
+
+import tracecruncher.perfpy as perf
+
+def SortKey(sample):
+ return sample.time()
+
+if __name__ == "__main__":
+ if len(sys.argv) < 2:
+ print('Usage: ', sys.argv[0], ' [PROCESS]')
+ sys.exit(1)
+
+ # Create perf sample object for the given process
+ if sys.argv[1].isdigit():
+ p = perf.sampler_instance(pid=int(sys.argv[1]), freq=99)
+ else:
+ file = shutil.which(sys.argv[1])
+ if file is None:
+ print('Cannot find ', sys.argv[1], ' in the system')
+ sys.exit(1)
+ p = perf.sampler_instance(command=file, argv=sys.argv[1:], freq=99)
+
+ print('Start collecting performance data, press ctrl+c to stop')
+ # Start collecting performance traces
+ p.enable(wait=True)
+
+ # Get collected samples
+ samples = p.get_samples()
+ # Sort the list based on the timestamp
+ samples.sort(key=SortKey)
+ time = 0
+ ip_count = 0
+ for s in samples:
+ # Print PID, TID, time and trace depth of each sample
+ if time == 0:
+ time = s.time()
+ print("{0} {1} ({2}), +{3}:".format(s.ip(), s.tid(), s.tid_comm(), s.time() - time))
+ ips = s.stack()
+ ip_count += len(ips)
+ for ip in reversed(ips):
+ # Print stack trace of the sample
+ print("\t{0}".format(ip))
+ print("\nCollected {0} samples, {1} ip traces".format(len(samples), ip_count))
\ No newline at end of file
--
2.35.1
prev parent reply other threads:[~2022-04-08 10:04 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-08 10:03 [RFC PATCH v2 0/3] trace-cruncher: Initial support for perf Tzvetomir Stoyanov (VMware)
2022-04-08 10:03 ` [RFC PATCH v2 1/3] trace-cruncher: Logic for resolving address to function name Tzvetomir Stoyanov (VMware)
2022-04-08 10:03 ` [RFC PATCH v2 2/3] trace-cruncher: Support for perf Tzvetomir Stoyanov (VMware)
2022-04-14 12:58 ` Yordan Karadzhov
2022-04-15 11:35 ` Tzvetomir Stoyanov
2022-04-08 10:03 ` Tzvetomir Stoyanov (VMware) [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220408100339.594358-4-tz.stoyanov@gmail.com \
--to=tz.stoyanov@gmail.com \
--cc=linux-trace-devel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=y.karadz@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).