<?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 to Validate Datamodel in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484390#M7940</link>
    <description>&lt;P&gt;Thanks Rehan !  Does SA-cim_Validator also work similar to it ?&lt;/P&gt;</description>
    <pubDate>Wed, 13 Nov 2019 10:18:14 GMT</pubDate>
    <dc:creator>Arpmjdr</dc:creator>
    <dc:date>2019-11-13T10:18:14Z</dc:date>
    <item>
      <title>How to Validate Datamodel</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484388#M7938</link>
      <description>&lt;P&gt;Hi Friends,&lt;/P&gt;

&lt;P&gt;I am using SPLUNK ES 5.3.1 version.I am trying to validate the existing datamodels(Total 32 including cim validation s.o.s) and finding answers for the points mentioned below:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;Whether the DMs are updating properly&lt;/LI&gt;
&lt;LI&gt;whether they contain information that is need to populate the data tables&lt;/LI&gt;
&lt;LI&gt;whether the data sources ingested to splunk are correct and parsed to be consumed by DMs.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;Could you please help me how I shall be able to do this? TIA&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 05:41:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484388#M7938</guid>
      <dc:creator>Arpmjdr</dc:creator>
      <dc:date>2019-11-13T05:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to Validate Datamodel</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484389#M7939</link>
      <description>&lt;P&gt;Hello @Arpmjdr ,&lt;/P&gt;

&lt;P&gt;One such app in Splunk to validate the Datemodel may be "Insight Analyzer" &lt;A href="https://splunkbase.splunk.com/app/4618/"&gt;https://splunkbase.splunk.com/app/4618/&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;Its DataModel Coverage section would give you immense information on the coverage of each Datamodels that you have.&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/7955i808B4F899F2AE00D/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Rehan&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 06:39:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484389#M7939</guid>
      <dc:creator>ralam</dc:creator>
      <dc:date>2019-11-13T06:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to Validate Datamodel</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484390#M7940</link>
      <description>&lt;P&gt;Thanks Rehan !  Does SA-cim_Validator also work similar to it ?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 10:18:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484390#M7940</guid>
      <dc:creator>Arpmjdr</dc:creator>
      <dc:date>2019-11-13T10:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to Validate Datamodel</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484391#M7941</link>
      <description>&lt;P&gt;if you are interested in the DM % complete over time you can create a search to get that data from the REST API endpoint and store it in a lookup I have done it like this:&lt;/P&gt;

&lt;P&gt;Search to get the info from the API endpoint (runs every 5 min):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/admin/summarization by_tstats=t splunk_server=local count=0
| eval datamodel=replace('summary.id',"DM_",""), datamodel=replace(datamodel,'eai:acl.app'."_",'eai:acl.app'."/"), _time=now(), complete='summary.complete'*100
| table _time datamodel complete
| outputlookup dm_complete_info.csv append=t
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Search to cleanup data older than 14 days from the lookup table (runs every day at midnight):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup dm_complete_info.csv
| eval oldest=now()-(14*86400)
| where _time&amp;gt;oldest
| table _time datamodel complete
| outputlookup dm_complete_info.csv
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Search to make a graph of the data:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup dm_complete_info.csv
| where _time&amp;gt;now()-(86400*7)
| chart values(complete) AS complete over _time by datamodel useother=f usenull=f limit=0
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Nov 2019 10:31:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-Validate-Datamodel/m-p/484391#M7941</guid>
      <dc:creator>aholzel</dc:creator>
      <dc:date>2019-11-13T10:31:54Z</dc:date>
    </item>
  </channel>
</rss>

