<?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 [Need Help]  how to expand 'OTHER' column created by stats command in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523714#M147733</link>
    <description>&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;when I use stats command to group and aggregration. For example:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;base query here&amp;gt;&lt;BR /&gt;| bin span=1d _time&lt;BR /&gt;| stats count(eval(autosave=1)) as autosave&lt;BR /&gt;count(eval(autosave=0 OR autosave=1)) as total by _time, DC .&lt;/P&gt;&lt;P&gt;There's a column named 'OTHER' created.&amp;nbsp; I want all the columns displayed, instead of group into 'OTHER' column if the number of columns are many.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that for timechart command there's a parameter useother=false can do this. but I can't find asuch a paramter for stats command , can you help?&lt;/P&gt;</description>
    <pubDate>Thu, 08 Oct 2020 14:39:09 GMT</pubDate>
    <dc:creator>cheriemilk</dc:creator>
    <dc:date>2020-10-08T14:39:09Z</dc:date>
    <item>
      <title>[Need Help]  how to expand 'OTHER' column created by stats command</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523714#M147733</link>
      <description>&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;when I use stats command to group and aggregration. For example:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;base query here&amp;gt;&lt;BR /&gt;| bin span=1d _time&lt;BR /&gt;| stats count(eval(autosave=1)) as autosave&lt;BR /&gt;count(eval(autosave=0 OR autosave=1)) as total by _time, DC .&lt;/P&gt;&lt;P&gt;There's a column named 'OTHER' created.&amp;nbsp; I want all the columns displayed, instead of group into 'OTHER' column if the number of columns are many.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that for timechart command there's a parameter useother=false can do this. but I can't find asuch a paramter for stats command , can you help?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 14:39:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523714#M147733</guid>
      <dc:creator>cheriemilk</dc:creator>
      <dc:date>2020-10-08T14:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: [Need Help]  how to expand 'OTHER' column created by stats command</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523768#M147752</link>
      <description>&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;stats&lt;/FONT&gt; command does NOT produce a field called "OTHER".&amp;nbsp; The only fields returned by &lt;FONT face="courier new,courier"&gt;stats&lt;/FONT&gt; are those named ("autosave", "total", "_time", and "DC" in the example query) in the command.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 17:31:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523768#M147752</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-10-08T17:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: [Need Help]  how to expand 'OTHER' column created by stats command</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523824#M147777</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry that i was just awared that the 'OTHER' column is created by chart command, instead of stats.&lt;/P&gt;&lt;P&gt;| stats count(eval(autosave=1)) as autosave count(eval(autosave=0 OR autosave=1)) as total by _time , DC&lt;BR /&gt;| eval percent=round(autosave * 100 / total,2)&lt;BR /&gt;&lt;FONT face="arial black,avant garde" color="#0000FF"&gt;| chart values(total) as total values(autosave) as autosave values(percent) as percent by _time , DC&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" color="#000000"&gt;How to expand 'OTHER' column?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" color="#000000"&gt;Thanks,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" color="#000000"&gt;Cherie&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 00:47:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523824#M147777</guid>
      <dc:creator>cheriemilk</dc:creator>
      <dc:date>2020-10-09T00:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: [Need Help]  how to expand 'OTHER' column created by stats command</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523825#M147778</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957" target="_blank"&gt;@richgalloway&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I found this useother=false can applied to chart command as well, just like timechart command.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 00:51:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523825#M147778</guid>
      <dc:creator>cheriemilk</dc:creator>
      <dc:date>2020-10-09T00:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: [Need Help]  how to expand 'OTHER' column created by stats command</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523903#M147809</link>
      <description>&lt;P&gt;The chart command has a useother option.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| chart useother=f values(total) as total values(autosave) as autosave values(percent) as percent by _time , DC&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 09 Oct 2020 12:35:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-Help-how-to-expand-OTHER-column-created-by-stats-command/m-p/523903#M147809</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-10-09T12:35:35Z</dc:date>
    </item>
  </channel>
</rss>

