diff mbox series

rteval: Generate raw histogram data for an existing timerlat report

Message ID 20240429144850.58585-1-jkacur@redhat.com
State New
Headers show
Series rteval: Generate raw histogram data for an existing timerlat report | expand

Commit Message

John Kacur April 29, 2024, 2:48 p.m. UTC
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 mbox series

Patch

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>