<?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: Web Data Model no referrer in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301936#M160256</link>
    <description>&lt;P&gt;yes its accelerated. It works fine. The only problem is excluding from the results URL's that people have been referred to.&lt;/P&gt;

&lt;P&gt;I only want to see when people have browsed straight to the site in question rather than referrals which produces too much noise.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jul 2017 10:10:54 GMT</pubDate>
    <dc:creator>jacqu3sy</dc:creator>
    <dc:date>2017-07-10T10:10:54Z</dc:date>
    <item>
      <title>Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301934#M160254</link>
      <description>&lt;P&gt;Can anyone help with the following please. Im looking to run a tstats query against the Web Data Model but exclude results where a user has been referrered to a destination.&lt;/P&gt;

&lt;P&gt;If I run this directly against the index, it runs fine, but returns nothing when running it against the DM.&lt;/P&gt;

&lt;P&gt;Query:&lt;/P&gt;

&lt;P&gt;| tstats &lt;CODE&gt;summariesonly&lt;/CODE&gt; count from datamodel=Web where Web.dest=&lt;EM&gt;kali&lt;/EM&gt; AND Web.http_method=POST NOT Web.category="Web Ads/Analytics" NOT Web.http_user_agent="Mozilla/5.0 Zoom.App" NOT Web.http_referrer="*"&lt;/P&gt;

&lt;P&gt;The other NOT statements work fine, but the NOT against Web.http_referrer just returns no results. I have tried using != instead of the NOT but I get the same problem.&lt;/P&gt;

&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:49:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301934#M160254</guid>
      <dc:creator>jacqu3sy</dc:creator>
      <dc:date>2020-09-29T14:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301935#M160255</link>
      <description>&lt;P&gt;Is the datamodel accelerated? If not, tstats wont work because it only works on indexed fields within tsidx files.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2017 10:02:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301935#M160255</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2017-07-10T10:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301936#M160256</link>
      <description>&lt;P&gt;yes its accelerated. It works fine. The only problem is excluding from the results URL's that people have been referred to.&lt;/P&gt;

&lt;P&gt;I only want to see when people have browsed straight to the site in question rather than referrals which produces too much noise.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2017 10:10:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301936#M160256</guid>
      <dc:creator>jacqu3sy</dc:creator>
      <dc:date>2017-07-10T10:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301937#M160257</link>
      <description>&lt;P&gt;As a tangientially related query, any idea what generates that particular user agent?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 11:05:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301937#M160257</guid>
      <dc:creator>sheamus69</dc:creator>
      <dc:date>2018-02-20T11:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301938#M160258</link>
      <description>&lt;P&gt;Looking at your query, I think the issue lies with the fact the the http_referrer field should be populated with something, even if it is "unknown", which I believe is what the datamodel autopopulates into an empty field. The code below should fix that?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats summariesonly count from datamodel=Web where Web.dest=kali AND Web.http_method=POST NOT Web.category="Web Ads/Analytics" NOT Web.http_user_agent="Mozilla/5.0 Zoom.App" NOT Web.http_referrer="unknown"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Feb 2018 11:14:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301938#M160258</guid>
      <dc:creator>sheamus69</dc:creator>
      <dc:date>2018-02-20T11:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301939#M160259</link>
      <description>&lt;P&gt;Yeah you could use this search to see too&lt;/P&gt;

&lt;P&gt;| tstats values(http_referrer) from datamodel=Web&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 13:31:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301939#M160259</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2018-02-20T13:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301940#M160260</link>
      <description>&lt;P&gt;Wouldn't that be &lt;/P&gt;

&lt;P&gt;| tstats values(Web.http_referrer) from datamodel=Web&lt;/P&gt;

&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 14:05:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301940#M160260</guid>
      <dc:creator>sheamus69</dc:creator>
      <dc:date>2018-02-20T14:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Web Data Model no referrer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301941#M160261</link>
      <description>&lt;P&gt;Sure &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ... my phone really doesn’t like it when I try typing that though.  Was hoping someone would comment like you did.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 14:29:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Web-Data-Model-no-referrer/m-p/301941#M160261</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2018-02-20T14:29:46Z</dc:date>
    </item>
  </channel>
</rss>

