<?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: Creating report search issues in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606434#M210917</link>
    <description>&lt;P&gt;Sure no problem. Don't forget to mark the above as answered so that we can close the thread.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Javier&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jul 2022 08:02:20 GMT</pubDate>
    <dc:creator>javiergn</dc:creator>
    <dc:date>2022-07-21T08:02:20Z</dc:date>
    <item>
      <title>Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606420#M210907</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am trying to create an efficient way to pull out certain win events for my report but I am not sure it would return the results I want. It truncates some of the results. I might be doing something wrong. Please see the code that I am currently running and suggest an improvement. Thank you all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;index=mbda_windows_server sourcetype=XmlWinEventLog EventCode=4718 OR 4728 OR 4729 OR 4730 OR 4732 OR 4733 OR 4756 OR 4757 OR 4762 OR 4796 OR 5136&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| dedup src_user, MemberSid, Group_Domain, Group_Name, host, _time&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| convert timeformat="%d/%m/%Y %H:%M" ctime(_time)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| rename src_user AS Login, MemberSid AS Account, Group_Domain AS Domain, Group_Name AS Group, host AS Host, _time AS Min_NormDateMin, name AS EventName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| table Login, Account, Domain, Group, Host, Min_NormDateMin, EventCode, EventName | sort EventCode&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 07:20:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606420#M210907</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T07:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606422#M210909</link>
      <description>&lt;P&gt;Hi, the first line is wrong, try using one of the following two:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=mbda_windows_server sourcetype=XmlWinEventLog EventCode IN (4718, 4728, 4729, 4730, 4732, 4733, 4756, 4757, 4762, 4796, 5136)

index=mbda_windows_server sourcetype=XmlWinEventLog (EventCode=4718 OR EventCode=4728 OR EventCode=4729 OR EventCode=4730 OR EventCode=4732 OR EventCode=4733 OR EventCode=4756 OR EventCode=4757 OR EventCode=4762 OR EventCode=4796 OR EventCode=5136)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 21 Jul 2022 07:24:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606422#M210909</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2022-07-21T07:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606424#M210910</link>
      <description>&lt;P&gt;How can I remove the duplicates efficiently as not all events contain the same fields and these events will be dropped? I need to remove the duplicates anyway.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 07:27:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606424#M210910</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T07:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606425#M210911</link>
      <description>&lt;P&gt;Thanks for the swift reply. Please let me know how to remove duplicates that do not have the same fields. I would like to avoid dropping events because of this? Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 07:29:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606425#M210911</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T07:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606428#M210913</link>
      <description>&lt;P&gt;If I understand correctly you want to remove duplicates based on a field with different names across certain events. If so simply create a field that is common across them with coalesce, as in:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval myfield = coalesce(fieldname1, fieldname2, fieldname3, ...)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then use dedup based on myfield.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 07:35:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606428#M210913</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2022-07-21T07:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606433#M210916</link>
      <description>&lt;P&gt;Thanks for the help,&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/113132"&gt;@javiergn&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:00:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606433#M210916</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T08:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606434#M210917</link>
      <description>&lt;P&gt;Sure no problem. Don't forget to mark the above as answered so that we can close the thread.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Javier&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:02:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606434#M210917</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2022-07-21T08:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606435#M210918</link>
      <description>&lt;P&gt;Also, I wanted to know what would be the best way to automatically email the report results to me scheduled every day at 10 AM?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:02:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606435#M210918</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T08:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606438#M210919</link>
      <description>&lt;P&gt;Run the search, then click on "Save As" &amp;gt; Alert and chose your schedule and within "Trigger Actions" select "Send email". &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-07-21 at 10.04.46.png" style="width: 390px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20616i2A6243DD6F2CD851/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-07-21 at 10.04.46.png" alt="Screenshot 2022-07-21 at 10.04.46.png" /&gt;&lt;/span&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-07-21 at 10.05.16.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20617i031E2EA846BAF587/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-07-21 at 10.05.16.png" alt="Screenshot 2022-07-21 at 10.05.16.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:06:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606438#M210919</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2022-07-21T08:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606445#M210923</link>
      <description>&lt;P&gt;I did that yesterday, but no report laded into my email box. Do I need to configure something else?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:17:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606445#M210923</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T08:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606449#M210925</link>
      <description>&lt;P&gt;You have to configure the email notification settings:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.0.0/Alert/Emailnotification" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.0.0/Alert/Emailnotification&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:27:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606449#M210925</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2022-07-21T08:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Creating report search issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606454#M210930</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/113132"&gt;@javiergn&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:36:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-report-search-issues/m-p/606454#M210930</guid>
      <dc:creator>DanAlexander</dc:creator>
      <dc:date>2022-07-21T08:36:50Z</dc:date>
    </item>
  </channel>
</rss>

