Linux-rt-users archive mirror
 help / color / mirror / Atom feed
From: John Kacur <jkacur@redhat.com>
To: RT <linux-rt-users@vger.kernel.org>
Cc: Clark Williams <williams@redhat.com>,
	Daniel Bristot de Oliveria <bristot@redhat.com>,
	Juri Lelli <juri.lelli@redhat.com>,
	Kate Carcia Poulin <kcarcia@redhat.com>,
	John Kacur <jkacur@redhat.com>
Subject: [PATCH] rteval: Generate raw histogram data for an existing timerlat report
Date: Mon, 29 Apr 2024 10:48:50 -0400	[thread overview]
Message-ID: <20240429144850.58585-1-jkacur@redhat.com> (raw)

Generate raw histogram data for an existing timerlat report.

Signed-off-by: John Kacur <jkacur@redhat.com>
---
 rteval/rteval_histogram_raw.xsl | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/rteval/rteval_histogram_raw.xsl b/rteval/rteval_histogram_raw.xsl
index 038419bf03b7..00b2be34f305 100644
--- a/rteval/rteval_histogram_raw.xsl
+++ b/rteval/rteval_histogram_raw.xsl
@@ -12,15 +12,26 @@
 
     <!-- Extract overall system histogram data -->
     <xsl:apply-templates select="Measurements/Profile/cyclictest/system/histogram/bucket">
-      <xsl:with-param name="label" select="'system'"/> 
+      <xsl:with-param name="label" select="'system'"/>
       <xsl:sort select="Measurements/Profile/cyclictest/core/histogram/bucket/@index" data-type="number"/>
     </xsl:apply-templates>
 
+    <xsl:apply-templates select="Measurements/Profile/timerlat/system/histogram/bucket">
+      <xsl:with-param name="label" select="'system'"/>
+      <xsl:sort select="Measurements/Profile/timerlat/core/histogram/bucket/@index" data-type="number"/>
+    </xsl:apply-templates>
+
     <!-- Extract per cpu core histogram data -->
     <xsl:apply-templates select="Measurements/Profile/cyclictest/core/histogram/bucket">
       <xsl:sort select="Measurements/Profile/cyclictest/core/@id" data-type="number"/>
       <xsl:sort select="Measurements/Profile/cyclictest/core/histogram/bucket/@index" data-type="number"/>
     </xsl:apply-templates>
+
+    <xsl:apply-templates select="Measurements/Profile/timerlat/core/histogram/bucket">
+      <xsl:sort select="Measurements/Profile/timerlat/core/@id" data-type="number"/>
+      <xsl:sort select="Measurements/Profile/timerlat/core/histogram/bucket/@index" data-type="number"/>
+    </xsl:apply-templates>
+
   </xsl:template>
   <!--                              -->
   <!-- End of main report framework -->
@@ -43,4 +54,20 @@
     <xsl:text>&#10;</xsl:text>
   </xsl:template>
 
+  <xsl:template match="/rteval/Measurements/Profile/timerlat/*/histogram/bucket">
+    <xsl:param name="label"/>
+    <xsl:choose>
+      <!-- If we don't have a id tag in what should be a 'core' tag, use the given label -->
+      <xsl:when test="../../@id"><xsl:value-of select="../../@id"/></xsl:when>
+      <xsl:otherwise><xsl:value-of select="$label"/></xsl:otherwise>
+    </xsl:choose>
+    <xsl:text>&#09;</xsl:text>
+
+    <xsl:value-of select="@index"/>
+    <xsl:text>&#09;</xsl:text>
+
+    <xsl:value-of select="@value"/>
+    <xsl:text>&#10;</xsl:text>
+  </xsl:template>
+
 </xsl:stylesheet>
-- 
2.44.0


                 reply	other threads:[~2024-04-29 14:49 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20240429144850.58585-1-jkacur@redhat.com \
    --to=jkacur@redhat.com \
    --cc=bristot@redhat.com \
    --cc=juri.lelli@redhat.com \
    --cc=kcarcia@redhat.com \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=williams@redhat.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 read-only IMAP folder(s) and NNTP newsgroup(s).