<?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 I assign src_ip to all event codes those are having same Logon_ID? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495022#M99922</link>
    <description>&lt;P&gt;yes but some events having only Logon_Id so for those need to assign src_ip as well&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 03:54:12 GMT</pubDate>
    <dc:creator>90509</dc:creator>
    <dc:date>2020-09-30T03:54:12Z</dc:date>
    <item>
      <title>How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495020#M99920</link>
      <description>&lt;P&gt;I would like to assign src_ip to all events who is having same logon_id. but the src_ip coming only to EventCode=4624.&lt;BR /&gt;
could you please let me know&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:54:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495020#M99920</guid>
      <dc:creator>90509</dc:creator>
      <dc:date>2020-09-30T03:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495021#M99921</link>
      <description>&lt;P&gt;EventCode=4624 has both src_ip and logon_id?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:47:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495021#M99921</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-09-30T03:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495022#M99922</link>
      <description>&lt;P&gt;yes but some events having only Logon_Id so for those need to assign src_ip as well&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:54:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495022#M99922</guid>
      <dc:creator>90509</dc:creator>
      <dc:date>2020-09-30T03:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495023#M99923</link>
      <description>&lt;P&gt;Do I need to perform any join operations&lt;/P&gt;

&lt;P&gt;I have tried this but it's not working &lt;BR /&gt;
index=wineventlog EventCode=*&lt;BR /&gt;
| where Logon_ID !="0x0"&lt;BR /&gt;
|stats count by src_ip,Logon_ID,EventCode&lt;BR /&gt;
|join&lt;BR /&gt;
[ search index="wineventlog" EventCode=4624&lt;BR /&gt;
| where Logon_ID !="0x0"&lt;BR /&gt;
|stats count by src_ip,Logon_ID,EventCode]&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:54:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495023#M99923</guid>
      <dc:creator>90509</dc:creator>
      <dc:date>2020-09-30T03:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495024#M99924</link>
      <description>&lt;P&gt;Updated:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=wineventlog EventCode=* Logon_ID!="0x0"
| eventstats values(src_ip) as src_ip by Logon_ID
| stats values(EventCode) as EventCode by Logon_ID src_ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hi, @90509 &lt;BR /&gt;
How about this?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 11:57:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495024#M99924</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-23T11:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495025#M99925</link>
      <description>&lt;P&gt;I appreciate your help but I need want the table like &lt;/P&gt;

&lt;P&gt;suppose if take one logon_ID for that Logon_ID having number of event codes like EventCode=4624 or 4625 0r 4672 or 4648, so in this scenario all the events codes having same Logon_Id but for EventCode=4624 only having src_ip. so need to fetch the results along with src_ip assigning the Events or EventCodes having same Logon_ID.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:54:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495025#M99925</guid>
      <dc:creator>90509</dc:creator>
      <dc:date>2020-09-30T03:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495026#M99926</link>
      <description>&lt;P&gt;from according your query if there is no src_ip for any eventcodes which is not populating but I want all event codes who is having same Logon_ID will be assigned with same src_ip.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:54:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495026#M99926</guid>
      <dc:creator>90509</dc:creator>
      <dc:date>2020-09-30T03:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I assign src_ip to all event codes those are having same Logon_ID?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495027#M99927</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;How Do I assign src_ip to all event codes those are having same Logon_ID?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I think it has nothing to do with the table display.&lt;BR /&gt;
I updated the answer, but I'm not sure.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:48:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-Do-I-assign-src-ip-to-all-event-codes-those-are-having-same/m-p/495027#M99927</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-09-30T03:48:00Z</dc:date>
    </item>
  </channel>
</rss>

