[systemd-devel] [PATCH] systemd-analyze: print hostname and kernelversion at the top of the plot

Koen Kooi koen at dominion.thruhere.net
Tue May 10 11:27:44 PDT 2011


Signed-off-by: Koen Kooi <koen at dominion.thruhere.net>
---
 src/systemd-analyze |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/systemd-analyze b/src/systemd-analyze
index 4f3e478..49a2727 100755
--- a/src/systemd-analyze
+++ b/src/systemd-analyze
@@ -110,7 +110,7 @@ elif sys.argv[1] == 'blame':
                 sys.stdout.write("%6lums %s\n" % ((aet - ixt) / 1000, name))
 
 elif sys.argv[1] == 'plot':
-        import cairo
+        import cairo, os
 
         initrd_time, start_time, finish_time = acquire_start_time()
         data = acquire_time_data()
@@ -160,6 +160,9 @@ elif sys.argv[1] == 'plot':
         context.stroke()
         context.restore()
 
+        banner = "Running on %s (%s %s)" % (os.uname()[1], os.uname()[2], os.uname()[3])
+        draw_text(context, 0, -15, banner, hcenter = 0, vcenter = 1)
+
         for x in range(0, (finish_time - start_time)/10000, 100):
                 draw_text(context, x, -5, "%lus" % (x/100), vcenter = 0, hcenter = 0)
 
-- 
1.6.6.1



More information about the systemd-devel mailing list