<?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: TA Meraki: how do I fix the bug I found in my splunkd.log? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446682#M54974</link>
    <description>&lt;P&gt;I pushed out a new release into the repo:&lt;BR /&gt;
&lt;A href="https://github.com/AlaskaSSO/TA-meraki/releases/tag/v1.1.2"&gt;https://github.com/AlaskaSSO/TA-meraki/releases/tag/v1.1.2&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If it looks good I'll push it up to the splunk app store.&lt;/P&gt;</description>
    <pubDate>Tue, 20 Aug 2019 21:31:23 GMT</pubDate>
    <dc:creator>myron_davis</dc:creator>
    <dc:date>2019-08-20T21:31:23Z</dc:date>
    <item>
      <title>TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446675#M54967</link>
      <description>&lt;P&gt;In the props.conf  of the TA  on line 65 is the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EVAL-lease_scope = if(len(lease_scope_subnet)=&amp;gt;1,src."/".lease_scope_subnet,null())
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Looking through my splunkd.log, I see the below error. Sadly my regex-fu isn't that good; what is wrong, and how would I fix it?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;WARN  CalcFieldProcessor - Invalid eval expression for 'EVAL-lease_scope' in stanza [meraki]: The expression is malformed. An unexpected character is reached at '&amp;gt;1,src."/".lease_scope_subnet,null())
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Sep 2018 19:24:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446675#M54967</guid>
      <dc:creator>jcooperFossil</dc:creator>
      <dc:date>2018-09-07T19:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446676#M54968</link>
      <description>&lt;P&gt;hello there,&lt;/P&gt;

&lt;P&gt;see what it tries to do, &lt;BR /&gt;
create your on expression for &lt;CODE&gt;lease_scope&lt;/CODE&gt;&lt;BR /&gt;
create local folder in the TA and add  new &lt;CODE&gt;props.conf&lt;/CODE&gt; with the correction&lt;BR /&gt;
make sure you ally the configuration the correct &lt;CODE&gt;[stanza]&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;please share your solution with us so others can enjoy too! &lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 19:44:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446676#M54968</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2018-09-07T19:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446677#M54969</link>
      <description>&lt;P&gt;I have no idea what it is trying to do (which is why I posted this question). I'm just trying to clean up errors in the logs.&lt;BR /&gt;
Thanks for replying though.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 19:51:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446677#M54969</guid>
      <dc:creator>jcooperFossil</dc:creator>
      <dc:date>2018-09-07T19:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446678#M54970</link>
      <description>&lt;P&gt;It is just a syntax error in your greater than or equal to expression. Swap the &amp;gt; and = signs around.&lt;BR /&gt;
You can recreate the problem in SPL by just doing this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval test = 2
| eval test2 = if(len(test) =&amp;gt; 1, "yes", null())
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;See it error and then see it happy with:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval test = 2
| eval test2 = if(len(test) &amp;gt;= 1, "yes", null())
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 08 Sep 2018 17:25:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446678#M54970</guid>
      <dc:creator>worshamn</dc:creator>
      <dc:date>2018-09-08T17:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446679#M54971</link>
      <description>&lt;P&gt;Thanks Worshamm!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 14:36:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446679#M54971</guid>
      <dc:creator>jcooperFossil</dc:creator>
      <dc:date>2018-09-10T14:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446680#M54972</link>
      <description>&lt;P&gt;I'll investigate.  That was one I never caught... sorry.&lt;/P&gt;

&lt;P&gt;The purpose was for the DHCP tag under the common information model "Sessions"&lt;/P&gt;

&lt;P&gt;DHCP    lease_scope string  The consecutive range of possible IP addresses that the DHCP server can lease to clients on a subnet. A lease_scope typically defines a single physical subnet on your network to which DHCP services are offered.&lt;/P&gt;

&lt;P&gt;I thought I tested it against several different pieces of data.  But I missed that one :(.&lt;/P&gt;

&lt;P&gt;After testing it I'll upload a new package.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:22:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446680#M54972</guid>
      <dc:creator>myron_davis</dc:creator>
      <dc:date>2020-09-29T21:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446681#M54973</link>
      <description>&lt;P&gt;A co-worker of mine just discovered that we're seeing the same error in version 1.0.6.&lt;BR /&gt;
Just wondering if that is fixed in later versions?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 20:46:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446681#M54973</guid>
      <dc:creator>jmantor</dc:creator>
      <dc:date>2019-08-20T20:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: TA Meraki: how do I fix the bug I found in my splunkd.log?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446682#M54974</link>
      <description>&lt;P&gt;I pushed out a new release into the repo:&lt;BR /&gt;
&lt;A href="https://github.com/AlaskaSSO/TA-meraki/releases/tag/v1.1.2"&gt;https://github.com/AlaskaSSO/TA-meraki/releases/tag/v1.1.2&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If it looks good I'll push it up to the splunk app store.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 21:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TA-Meraki-how-do-I-fix-the-bug-I-found-in-my-splunkd-log/m-p/446682#M54974</guid>
      <dc:creator>myron_davis</dc:creator>
      <dc:date>2019-08-20T21:31:23Z</dc:date>
    </item>
  </channel>
</rss>

