<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do display only the total row ? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169249#M48351</link>
    <description>&lt;P&gt;Total is not a field. it added by addtolcol command.&lt;/P&gt;

&lt;P&gt;I need to display column names row and total row&lt;/P&gt;</description>
    <pubDate>Wed, 24 Dec 2014 11:05:41 GMT</pubDate>
    <dc:creator>rsathish47</dc:creator>
    <dc:date>2014-12-24T11:05:41Z</dc:date>
    <item>
      <title>How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169247#M48349</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I would like to diplay only the row please help &lt;/P&gt;

&lt;P&gt;ser Captured    Processe   Co1  col3  col4   .. .. ..&lt;BR /&gt;
Serv01  482     84107&lt;BR /&gt;
Serv02  497     84162&lt;BR /&gt;
Serv03  482     84150&lt;BR /&gt;
Serv04  457         84087&lt;BR /&gt;
Serv05  500     84175&lt;BR /&gt;
Serv06  494     84206&lt;BR /&gt;
Total   2912    504887 .. . . .. . . . .. &lt;/P&gt;

&lt;P&gt;I need&lt;/P&gt;

&lt;P&gt;ser Captured    Processe     Co11  col13  col14   .. .. ..&lt;BR /&gt;
Total   2912    504887       .. . . .. .. . . &lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 10:02:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169247#M48349</guid>
      <dc:creator>rsathish47</dc:creator>
      <dc:date>2014-12-24T10:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169248#M48350</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
Not sure to understand your table.&lt;BR /&gt;
Is this from your logs or the result of a search?&lt;/P&gt;

&lt;P&gt;If it's a result of a search, try:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Your search | fields + Total
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;'Total' is the name of the field you want to display.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 10:48:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169248#M48350</guid>
      <dc:creator>bgaignon</dc:creator>
      <dc:date>2014-12-24T10:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169249#M48351</link>
      <description>&lt;P&gt;Total is not a field. it added by addtolcol command.&lt;/P&gt;

&lt;P&gt;I need to display column names row and total row&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 11:05:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169249#M48351</guid>
      <dc:creator>rsathish47</dc:creator>
      <dc:date>2014-12-24T11:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169250#M48352</link>
      <description>&lt;P&gt;Filter search result rows using &lt;CODE&gt;where&lt;/CODE&gt;:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;...your search... | where ser="Total"&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 12:42:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169250#M48352</guid>
      <dc:creator>aweitzman</dc:creator>
      <dc:date>2014-12-24T12:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169251#M48353</link>
      <description>&lt;P&gt;Consider replacing &lt;CODE&gt;... | addcoltotals&lt;/CODE&gt; with &lt;CODE&gt;... | stats sum(*) as *&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Dec 2014 04:20:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169251#M48353</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-12-25T04:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169252#M48354</link>
      <description>&lt;P&gt;Thanks aweitzman .. It works&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2014 07:27:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169252#M48354</guid>
      <dc:creator>rsathish47</dc:creator>
      <dc:date>2014-12-29T07:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do display only the total row ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169253#M48355</link>
      <description>&lt;P&gt;Thank You Martin it also works&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2014 07:30:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-display-only-the-total-row/m-p/169253#M48355</guid>
      <dc:creator>rsathish47</dc:creator>
      <dc:date>2014-12-29T07:30:29Z</dc:date>
    </item>
  </channel>
</rss>

