<?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 Finding total number for OOID in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260552#M78158</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I currently have a search that I need a little tweaking to get something else that I want.&lt;/P&gt;

&lt;P&gt;So the current search : &lt;/P&gt;

&lt;P&gt;index=test sourcetype=test "OOID Folder workspace" | lookup client_ooid_to_name OOID OUTPUT clientName | eval Client=clientName . "(" . OOID . ")"  | chart count by Client action  | addtotals | sort 5 -Total&lt;/P&gt;

&lt;P&gt;Looks up the five most active OOIDs by number, maps them to a name which I imported a lookup table for, then displays the count of actions for each OOID.&lt;/P&gt;

&lt;P&gt;What I want to do now is to just get the total number of OOIDS per day, as opposed to finding the count for each one.&lt;/P&gt;

&lt;P&gt;Can anyone lend a hand?&lt;/P&gt;

&lt;P&gt;Thanks in advance for your responses. &lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 09:11:57 GMT</pubDate>
    <dc:creator>splunkman341</dc:creator>
    <dc:date>2020-09-29T09:11:57Z</dc:date>
    <item>
      <title>Finding total number for OOID</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260552#M78158</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I currently have a search that I need a little tweaking to get something else that I want.&lt;/P&gt;

&lt;P&gt;So the current search : &lt;/P&gt;

&lt;P&gt;index=test sourcetype=test "OOID Folder workspace" | lookup client_ooid_to_name OOID OUTPUT clientName | eval Client=clientName . "(" . OOID . ")"  | chart count by Client action  | addtotals | sort 5 -Total&lt;/P&gt;

&lt;P&gt;Looks up the five most active OOIDs by number, maps them to a name which I imported a lookup table for, then displays the count of actions for each OOID.&lt;/P&gt;

&lt;P&gt;What I want to do now is to just get the total number of OOIDS per day, as opposed to finding the count for each one.&lt;/P&gt;

&lt;P&gt;Can anyone lend a hand?&lt;/P&gt;

&lt;P&gt;Thanks in advance for your responses. &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 09:11:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260552#M78158</guid>
      <dc:creator>splunkman341</dc:creator>
      <dc:date>2020-09-29T09:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Finding total number for OOID</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260553#M78159</link>
      <description>&lt;P&gt;How about this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=test sourcetype=test "OOID Folder workspace" | timechart span=1d count(OOID) as OOID_Count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;OR &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=test sourcetype=test "OOID Folder workspace" | lookup client_ooid_to_name OOID OUTPUT clientName | eval Client=clientName . "(" . OOID . ")"| timechart span=1d count(Client) as OOID_Count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:10:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260553#M78159</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-03-23T18:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Finding total number for OOID</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260554#M78160</link>
      <description>&lt;P&gt;Perhaps something like this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=test sourcetype=test "OOID Folder workspace" | stats dc(OOID) | ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or maybe&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=test sourcetype=test "OOID Folder workspace" | timechart span=1d dc(OOID) | ...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:11:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260554#M78160</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-03-23T18:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: Finding total number for OOID</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260555#M78161</link>
      <description>&lt;P&gt;Thanks for your responses guys! All work like a dream! &lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:30:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260555#M78161</guid>
      <dc:creator>splunkman341</dc:creator>
      <dc:date>2016-03-23T18:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Finding total number for OOID</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260556#M78162</link>
      <description>&lt;P&gt;Count gives the number of events with the ooid field. DC is the correct function. &lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2016 19:17:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Finding-total-number-for-OOID/m-p/260556#M78162</guid>
      <dc:creator>landen99</dc:creator>
      <dc:date>2016-03-23T19:17:51Z</dc:date>
    </item>
  </channel>
</rss>

