<?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: Need help making a swimlane for All Privileged Authentication Attempts in Security</title>
    <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426528#M10061</link>
    <description>&lt;P&gt;ES, I'm just making a swimlane search. &lt;A href="https://docs.splunk.com/Documentation/ES/5.3.0/Admin/Createswimlanesearches"&gt;https://docs.splunk.com/Documentation/ES/5.3.0/Admin/Createswimlanesearches&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Aug 2019 23:52:55 GMT</pubDate>
    <dc:creator>MikeVenable</dc:creator>
    <dc:date>2019-08-05T23:52:55Z</dc:date>
    <item>
      <title>Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426526#M10059</link>
      <description>&lt;P&gt;I'm trying to make a Swimlane search to use the Authentication Datamodel, and the Privileged Authentication Dataset, and only return users entered into the identity investigator.&lt;/P&gt;

&lt;P&gt;This is what I have so far. Thanks! &lt;/P&gt;

&lt;P&gt;| tstats &lt;CODE&gt;summariesonly&lt;/CODE&gt; values(Authentication.action) as action,values(Authentication.app) as app,values(Authentication.src) as src,values(Authentication.dest) as dest,values(Authentication.user) as user,count from datamodel=Authentication.Authentication where $constraints$ by _time span=$span$&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 07:09:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426526#M10059</guid>
      <dc:creator>MikeVenable</dc:creator>
      <dc:date>2019-08-03T07:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426527#M10060</link>
      <description>&lt;P&gt;Which app are you using ? Are you on &lt;A href="https://splunkbase.splunk.com/app/3708/"&gt;https://splunkbase.splunk.com/app/3708/&lt;/A&gt; ?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 08:36:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426527#M10060</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-08-04T08:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426528#M10061</link>
      <description>&lt;P&gt;ES, I'm just making a swimlane search. &lt;A href="https://docs.splunk.com/Documentation/ES/5.3.0/Admin/Createswimlanesearches"&gt;https://docs.splunk.com/Documentation/ES/5.3.0/Admin/Createswimlanesearches&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 23:52:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426528#M10061</guid>
      <dc:creator>MikeVenable</dc:creator>
      <dc:date>2019-08-05T23:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426529#M10062</link>
      <description>&lt;P&gt;This search pulls all Authentication attempts from the Authentication datamodel,  &lt;/P&gt;

&lt;P&gt;| tstats summariesonly values(Authentication.action) as action,values(Authentication.app) as app,values(Authentication.src) as src,values(Authentication.dest) as dest,values(Authentication.user) as user,count from datamodel=Authentication.Authentication where $constraints$ by _time span=$span$&lt;/P&gt;

&lt;P&gt;I just need this search refined to only pull Privileged Authentication Attempts, from the Privileged_Authentication dataset from the authentication datamodel but just changing datamodel=Authentication.Authentication to datamodel=Authentication.Privileged_Authentication doesn't work, because I get the error &lt;STRONG&gt;Error in 'DataModelCache': Invalid or unaccelerable root object for datamodel&lt;/STRONG&gt; &lt;/P&gt;

&lt;P&gt;The $constraints$ should be the same because the dataset Inherits the datamodel constraints. Or atleast that's how I understand it... &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 01:38:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426529#M10062</guid>
      <dc:creator>MikeVenable</dc:creator>
      <dc:date>2020-09-30T01:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426530#M10063</link>
      <description>&lt;P&gt;Are you using this in the &lt;CODE&gt;$contraints$&lt;/CODE&gt; variable  : &lt;CODE&gt;(nodename = Authentication.Privileged_Authentication)&lt;/CODE&gt; ?&lt;/P&gt;

&lt;P&gt;Your search should look like this : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... datamodel=Authentication where (nodename = Authentication.Privileged_Authentication) ...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 06 Aug 2019 05:57:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426530#M10063</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-08-06T05:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426531#M10064</link>
      <description>&lt;P&gt;Yeah we tried this &lt;/P&gt;

&lt;P&gt;| tstats &lt;CODE&gt;summariesonly&lt;/CODE&gt; values(Authentication.action) as action,values(Authentication.app) as app,values(Authentication.src) as src,values(Authentication.dest) as dest,values(Authentication.user) as user,values(Authentication.tag) as tag,count from datamodel=Authentication  where (nodename = Authentication.Privileged_Authentication $constraints$ by _time span=$span$)&lt;/P&gt;

&lt;P&gt;It "Works" as in when you search for it via search it will return results, but it still wont return any swimlane results...&lt;/P&gt;

&lt;P&gt;Does swimlane have to be tstats?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 19:19:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426531#M10064</guid>
      <dc:creator>MikeVenable</dc:creator>
      <dc:date>2019-08-06T19:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need help making a swimlane for All Privileged Authentication Attempts</title>
      <link>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426532#M10065</link>
      <description>&lt;P&gt;Got it to work, I just had to turn off acceleration since we were filtering with WHERE, and search filters can not be applied to accelerated datamodels! Thanks for the help. Below is the finale SPL.&lt;/P&gt;

&lt;P&gt;| tstats &lt;CODE&gt;summariesonly&lt;/CODE&gt; values(Authentication.action) as action,values(Authentication.app) as app,values(Authentication.src) as src,values(Authentication.dest) as dest,values(Authentication.user) as user,values(Authentication.tag) as tag,count from datamodel=Authentication  where nodename = Authentication.Privileged_Authentication $constraints$ by _time span=$span$&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 19:59:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Need-help-making-a-swimlane-for-All-Privileged-Authentication/m-p/426532#M10065</guid>
      <dc:creator>MikeVenable</dc:creator>
      <dc:date>2019-08-06T19:59:19Z</dc:date>
    </item>
  </channel>
</rss>

