<?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: Not getting any data in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101367#M26188</link>
    <description>&lt;P&gt;Have you tried doing the search bit by bit?  Where does it fail for you?&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jul 2012 16:22:07 GMT</pubDate>
    <dc:creator>gnovak</dc:creator>
    <dc:date>2012-07-17T16:22:07Z</dc:date>
    <item>
      <title>Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101366#M26187</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index="Server" (CategoryString="Account Management" OR TaskCategory="Security Group Management" ) (Message="Security Enabled*" OR Message="A member was added to a*") ( EventCode=632 OR EventCode=636 OR EventCode=4728 OR EventCode=4732) | top member, group, caller, name, host, Security_ID | fields member, group, caller, name, host, Security_ID| eval caller = if(isnull(Account_Name), Caller_User_Name, mvindex(Account_Name,0)) | eval member = if(isnull(Account_Name), Member_Name, mvindex(Account_Name,1)) | eval group = if(isnull(Target_Account_Name), Group_Name, Target_Account_Name) | search group="*Domain Admins" OR “*Administrators” OR “*ACCOUNT OPERATORS” OR “*Enterprise Admins” OR “*Schema Admins”|  rename _time AS Time member AS Username group AS Group caller AS "Action by" name AS "Description" host AS "DC" Security_ID AS "Initiator Details" | convert timeformat="%m/%d/%Y %H:%M:%S %p" ctime(Time)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am having a hard time figuring out why no information is being displayed through the top and fields command.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:09:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101366#M26187</guid>
      <dc:creator>Michael_Schyma1</dc:creator>
      <dc:date>2012-07-17T16:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101367#M26188</link>
      <description>&lt;P&gt;Have you tried doing the search bit by bit?  Where does it fail for you?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:22:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101367#M26188</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-07-17T16:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101368#M26189</link>
      <description>&lt;P&gt;| fields member, group, caller, name, host, Security_ID|&lt;/P&gt;

&lt;P&gt;Try putting a space after Security_ID and the |&lt;/P&gt;

&lt;P&gt;Does that do anything?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:30:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101368#M26189</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-07-17T16:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101369#M26190</link>
      <description>&lt;P&gt;&lt;CODE&gt;top&lt;/CODE&gt; is a command that transforms the search results, so if it gets raw input, it will not pass on that raw input to the commands coming after it in the search pipeline. So, once you've run &lt;CODE&gt;top field1&lt;/CODE&gt; for instance, the information available to the rest of the commands will &lt;EM&gt;only&lt;/EM&gt; be the results produced by top (values for &lt;CODE&gt;field1&lt;/CODE&gt;, &lt;CODE&gt;count&lt;/CODE&gt; and &lt;CODE&gt;percent&lt;/CODE&gt;). So, when you run &lt;CODE&gt;rename _time AS Time&lt;/CODE&gt; for instance, that doesn't make sense because at that stage in the search pipeline the &lt;CODE&gt;_time&lt;/CODE&gt; field doesn't exist anymore.&lt;/P&gt;

&lt;P&gt;Perhaps you could explain a bit more what you want to accomplish with your search?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:37:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101369#M26190</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-07-17T16:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101370#M26191</link>
      <description>&lt;P&gt;I just want to display all of the feilds, i do not even need the top function yet.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:48:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101370#M26191</guid>
      <dc:creator>Michael_Schyma1</dc:creator>
      <dc:date>2012-07-17T16:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101371#M26192</link>
      <description>&lt;P&gt;at the top command&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:49:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101371#M26192</guid>
      <dc:creator>Michael_Schyma1</dc:creator>
      <dc:date>2012-07-17T16:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101372#M26193</link>
      <description>&lt;P&gt;Then why are you using it?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:50:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101372#M26193</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-07-17T16:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101373#M26194</link>
      <description>&lt;P&gt;because i was going to add it in eventually, but i cant even get the feilds to display&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:50:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101373#M26194</guid>
      <dc:creator>Michael_Schyma1</dc:creator>
      <dc:date>2012-07-17T16:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101374#M26195</link>
      <description>&lt;P&gt;Well perhaps remove it? &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:52:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101374#M26195</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-07-17T16:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101375#M26196</link>
      <description>&lt;P&gt;I did lol but i still dont see the fields displaying in my chart below the search&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:53:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101375#M26196</guid>
      <dc:creator>Michael_Schyma1</dc:creator>
      <dc:date>2012-07-17T16:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting any data</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101376#M26197</link>
      <description>&lt;P&gt;What chart? What kind of output are you expecting? I don't see any charting commands in your search (besides top that I guess could count as a charting command)&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:57:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Not-getting-any-data/m-p/101376#M26197</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-07-17T16:57:12Z</dc:date>
    </item>
  </channel>
</rss>

