All Apps and Add-ons

Can i display only certain number of character in a cells of a table?

royimad
Builder

Hello I'm using sideview table and i need to know id i can limit the display of a cells for a certain number of characters?

Code:

<!--  EXAMPLE BEGIN  -->
<module name="Search" layoutPanel="panel_row1_col1" autoRun="True">
  <param name="search">
  index=_internal source="*metrics.log" group="per_sourcetype_thruput" | stats avg(eps) by series | sort - avg(eps)
  </param>
  <param name="earliest">-12h</param>
  <module name="Pager">
    <param name="count">5</param>
    <module name="Table">
      <module name="HTML">
        <param name="html"><![CDATA[
          <h2>Showing eps over time for sourcetype $row.fields.series$</h2>
        ]]></param>
      </module>
      <module name="Search">
        <param name="search">
          index=_internal source="*metrics.log" group="per_sourcetype_thruput" $row.searchTerms$ | timechart max(eps) avg(eps) min(eps)
        </param>
        <param name="earliest">-12h</param>
        <module name="HiddenChartFormatter">
          <param name="charting.chart">line</param>
          <param name="charting.chart.nullValueMode">zero</param>
          <module name="FlashChart"/>
        </module>
      </module>
    </module>
  </module>
</module>
<!--  EXAMPLE END  -->
1 Solution

sowings
Splunk Employee
Splunk Employee

In the past I've done this with a macro, that took the input string and a number as an argument. It truncated the string to "length minus three" and replaced that with "...", if the string was over that length. Otherwise, the string was left alone.

View solution in original post

sowings
Splunk Employee
Splunk Employee

In the past I've done this with a macro, that took the input string and a number as an argument. It truncated the string to "length minus three" and replaced that with "...", if the string was over that length. Otherwise, the string was left alone.

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...