<?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: Discrepancy in data being pulled from DbConnect app vs the events in Splunk. in Knowledge Management</title>
    <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611107#M8978</link>
    <description>&lt;P&gt;Thanks for responding.&amp;nbsp; The stats latest command will still show us the entries which no longer are in table as it got removed from the main table. For example, if there is a record -X in table at 1pm , and it got removed at 4pm from table. Splunk will still be showing it as our splunk events will be fetching everything.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Aug 2022 07:59:27 GMT</pubDate>
    <dc:creator>juhiacc</dc:creator>
    <dc:date>2022-08-29T07:59:27Z</dc:date>
    <item>
      <title>Why is there a discrepancy in data being pulled from DbConnect app vs the events in Splunk?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611093#M8976</link>
      <description>&lt;P&gt;&lt;SPAN&gt;We have configured DBConnect data from MySQL db under some index at hourly frequency.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Data is being pulled however we see that the count of Splunk events is much higher than the count of rows in its respective table.&lt;BR /&gt;This is due to the fact that the SQL table is real-time in nature and always have the entries updating, whereas, Splunk keeps storing the entries as per the hourly execution frequency. So as a result, Splunk will have historical events too which currently is not present in SQL table.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We need to counter this situation as we plan to build some analytics report on this data so it has to be true and updated in Splunk as well.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 13:21:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611093#M8976</guid>
      <dc:creator>juhiacc</dc:creator>
      <dc:date>2022-08-29T13:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611097#M8977</link>
      <description>&lt;P&gt;Both sources are true in their own way - as you pointed out, one is the real-time state of the data and the other is the historic record of the data.&lt;/P&gt;&lt;P&gt;In order to "counter" this, what are you trying to achieve? Do you just need to find the latest historic event for each and every item?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats latest(*) as * by item_key&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 29 Aug 2022 07:00:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611097#M8977</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-08-29T07:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611107#M8978</link>
      <description>&lt;P&gt;Thanks for responding.&amp;nbsp; The stats latest command will still show us the entries which no longer are in table as it got removed from the main table. For example, if there is a record -X in table at 1pm , and it got removed at 4pm from table. Splunk will still be showing it as our splunk events will be fetching everything.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 07:59:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611107#M8978</guid>
      <dc:creator>juhiacc</dc:creator>
      <dc:date>2022-08-29T07:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611110#M8979</link>
      <description>&lt;P&gt;Can you identify the action which deleted the entry from the events?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats latest(*) as * by item_key
| where action != "delete"&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 29 Aug 2022 08:05:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611110#M8979</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-08-29T08:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611121#M8980</link>
      <description>&lt;P&gt;There is no such column/field as&amp;nbsp; 'action'.&lt;BR /&gt;&lt;BR /&gt;The problem is that the entry will be deleted from the main table if someone performs any DML, but splunk still will be having that entry as part of&amp;nbsp; events.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In short if table has 100 entries, we only want to see 100 entries in Splunk too at that point of time. But if after sometime table has 99 entries (1 row gets deleted) then also we want splunk to show 99 entries to us.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 09:18:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611121#M8980</guid>
      <dc:creator>juhiacc</dc:creator>
      <dc:date>2022-08-29T09:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611124#M8981</link>
      <description>&lt;P&gt;If you are retrieving the data every hour, have you timestamped the entries in splunk so you can identify which events come from which extract?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 09:27:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611124#M8981</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-08-29T09:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611134#M8982</link>
      <description>&lt;P&gt;Yes timestamp of splunk has been matched with the timestamp column of table and data is as old as 2021. So we have to use 'All Time' in Splunk while searching for entire data.&amp;nbsp;&lt;BR /&gt;Thus it brings in that data as well which now may no longer is been present in the table.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 10:46:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611134#M8982</guid>
      <dc:creator>juhiacc</dc:creator>
      <dc:date>2022-08-29T10:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611165#M8983</link>
      <description>&lt;P&gt;Have you checked _indextime to see if it represents the time the dbconnect was done? If so, you might be able to use that to filter the events.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 16:16:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611165#M8983</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-08-29T16:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Discrepancy in data being pulled from DbConnect app vs the events in Splunk.</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611587#M8990</link>
      <description>&lt;P class="lia-align-left"&gt;Sure, Let me try this out and revert.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2022 10:17:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Why-is-there-a-discrepancy-in-data-being-pulled-from-DbConnect/m-p/611587#M8990</guid>
      <dc:creator>juhiacc</dc:creator>
      <dc:date>2022-09-01T10:17:10Z</dc:date>
    </item>
  </channel>
</rss>

