<?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 use Lookup table to analyze events? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656243#M111155</link>
    <description>&lt;P&gt;I meant dns_query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Aug 2023 10:52:22 GMT</pubDate>
    <dc:creator>waJesu</dc:creator>
    <dc:date>2023-08-31T10:52:22Z</dc:date>
    <item>
      <title>How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656135#M111139</link>
      <description>&lt;P&gt;I created a lookup table for blacklisted DNS queries. I need a query that uses the lookup table to see if domains in the lookup table are present in events in my environment.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 16:57:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656135#M111139</guid>
      <dc:creator>waJesu</dc:creator>
      <dc:date>2023-08-30T16:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656138#M111140</link>
      <description>&lt;P&gt;This is a bit vague.&lt;/P&gt;&lt;P&gt;What fields and values do you have in your lookup table?&lt;/P&gt;&lt;P&gt;What corresponding fields do you have in your events?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 17:41:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656138#M111140</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-08-30T17:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656139#M111141</link>
      <description>&lt;P&gt;Assuming you have a "domain" field in both the lookup file and an index, this should get you started.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=foo [ | inputlookup denieddomains.csv | field domain | format ]&lt;/LI-CODE&gt;&lt;P&gt;The subsearch (inside square brackets) fetches the contents of the lookup table (I made up a name - replace it with your own), extracts only the "domain" field, then formats the results into a search string which is then returned to the main search for execution.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 17:45:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656139#M111141</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-08-30T17:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656242#M111154</link>
      <description>&lt;P&gt;The lookup table has a single field "DNS" with all the blocklisted dns requests e.g. bliss.com, sugar.plux.net etc.. The corresponding field in the events could be dns_queries&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 10:51:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656242#M111154</guid>
      <dc:creator>waJesu</dc:creator>
      <dc:date>2023-08-31T10:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656243#M111155</link>
      <description>&lt;P&gt;I meant dns_query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 10:52:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656243#M111155</guid>
      <dc:creator>waJesu</dc:creator>
      <dc:date>2023-08-31T10:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656246#M111156</link>
      <description>&lt;P&gt;I tried this and it did not return results.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 10:56:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656246#M111156</guid>
      <dc:creator>waJesu</dc:creator>
      <dc:date>2023-08-31T10:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656247#M111157</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=foo [ | inputlookup denieddomains.csv | field DNS | rename DNS as dns_query | format ]&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 31 Aug 2023 11:04:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656247#M111157</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-08-31T11:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656412#M111164</link>
      <description>&lt;P&gt;It worked. Thank you very much. May you please explain to me what each part of the query does so that next time I can create personal queries of the same kind.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 11:06:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656412#M111164</guid>
      <dc:creator>waJesu</dc:creator>
      <dc:date>2023-09-01T11:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656415#M111166</link>
      <description>&lt;P&gt;The subsearch retrieves the DNS names from the lookup and renames the field so that it matches the field name used in the events. The format essentially expands to something like this&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=foo (( dns_query="value1") OR (dns_query="value2"))&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 01 Sep 2023 11:14:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656415#M111166</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-09-01T11:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Lookup table to analyze events?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656664#M111197</link>
      <description>&lt;P&gt;Thank you. I really appreciate.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 10:50:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-use-Lookup-table-to-analyze-events/m-p/656664#M111197</guid>
      <dc:creator>waJesu</dc:creator>
      <dc:date>2023-09-05T10:50:54Z</dc:date>
    </item>
  </channel>
</rss>

