<?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: data extraction from log without any links between them in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656277#M226676</link>
    <description>&lt;P&gt;In the olden days, I would have said computers are dumb, they can only do what you tell them to do, but with advances in AI this is becoming less true. Having said that, Splunk still requires you to tell it what to do and it can automate what you are doing. So, how would you as a human determine how these events are related?&lt;/P&gt;</description>
    <pubDate>Thu, 31 Aug 2023 14:29:58 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2023-08-31T14:29:58Z</dc:date>
    <item>
      <title>data extraction from log without any links between them</title>
      <link>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656267#M226672</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;I have logs with the below pattern&lt;/P&gt;&lt;P&gt;08/31/2023 8:00:00:476 am ........ count=0&lt;/P&gt;&lt;P&gt;08/31/2023 8:00:00:376 am ........ process started&lt;/P&gt;&lt;P&gt;08/31/2023 8:00:00:376 am...... XXX Process&lt;/P&gt;&lt;P&gt;I need the process name and the count to be displayed together but I dont have any common values/names/strings to match them.&lt;/P&gt;&lt;P&gt;I have 4 similar process and the count together in the logs..is there a way on how we can match them together.&lt;/P&gt;&lt;P&gt;Any help is much appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 13:13:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656267#M226672</guid>
      <dc:creator>Devi13</dc:creator>
      <dc:date>2023-08-31T13:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: data extraction from log without any links between them</title>
      <link>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656277#M226676</link>
      <description>&lt;P&gt;In the olden days, I would have said computers are dumb, they can only do what you tell them to do, but with advances in AI this is becoming less true. Having said that, Splunk still requires you to tell it what to do and it can automate what you are doing. So, how would you as a human determine how these events are related?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 14:29:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656277#M226676</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-08-31T14:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: data extraction from log without any links between them</title>
      <link>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656339#M226696</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/257602"&gt;@Devi13&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I suppose that at least you have the host where logs coming from and the sourcetype,&lt;/P&gt;&lt;P&gt;in addition, can you say that the first event is "count=0" and the last event is "XXX Process"?&lt;/P&gt;&lt;P&gt;if this is true, this is one of the few situation to use the transaction command:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index sourcetype=your_sourcetype ("count=0" OR "process started" OR "Process")
| transaction host startswith="count=0" endswith="Process"
| table Process count&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 21:43:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656339#M226696</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-08-31T21:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: data extraction from log without any links between them</title>
      <link>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656364#M226708</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It's just like&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;said. There must be some way. how you can combine those events which belongs to one transaction. With your current example there haven't been any information about that. When you can found some common information which are on all of those then you can you try e.g.&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;'s &amp;nbsp;way to combine those together.&lt;/P&gt;&lt;P&gt;I assume that there could be outputs from several process on one or more nodes which generates those log events? If there is only one node and only one process at time, then you can use&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;'s example as is.&lt;/P&gt;&lt;P&gt;Best way to continue this is ask that developer add some unique transaction id (e.g uuidgen -&amp;gt; B49A0412-3EBB-4377-A026-D8E43EC9F7F1 different output on every run) on logs which we could use to combine transactions together.&lt;/P&gt;&lt;P&gt;r. Ismo&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 06:32:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656364#M226708</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2023-09-01T06:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: data extraction from log without any links between them</title>
      <link>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656371#M226711</link>
      <description>&lt;P&gt;Thank you so much all for your inputs, we were able to get the data from another set of logs.&lt;/P&gt;&lt;P&gt;Thank you so muchh!!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 07:21:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/data-extraction-from-log-without-any-links-between-them/m-p/656371#M226711</guid>
      <dc:creator>Devi13</dc:creator>
      <dc:date>2023-09-01T07:21:45Z</dc:date>
    </item>
  </channel>
</rss>

