Generate raw histogram data for an existing timerlat report. Signed-off-by: John Kacur <jkacur@xxxxxxxxxx> --- 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> </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>	</xsl:text> + + <xsl:value-of select="@index"/> + <xsl:text>	</xsl:text> + + <xsl:value-of select="@value"/> + <xsl:text> </xsl:text> + </xsl:template> + </xsl:stylesheet> -- 2.44.0