<?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: TrackMe App: how to adjust &amp;quot;max allowed lagging value&amp;quot; depending on the priority? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539960#M64876</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This should just work fine for high priority too, most likely these entities you are looking at (those in high priority) have a the override lagging class field set to true:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="guilmxm_0-1613397121368.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12949iD89E53960764E5A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="guilmxm_0-1613397121368.png" alt="guilmxm_0-1613397121368.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You can check this out the following way too:&lt;/P&gt;&lt;P&gt;For data sources:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And for data hosts:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_host_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;You could change (bulk change) this the following way:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For data sources:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"
| eval data_override_lagging_class="false"
| outputlookup key_field=keyid trackme_data_source_monitoring&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And for data hosts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_host_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"
| eval data_override_lagging_class="false"
| outputlookup key_field=keyid trackme_host_monitoring&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course if there are some entities that should override lagging classes, you need to either exclude these from the commands above, or check it out within the UI.&lt;BR /&gt;&lt;BR /&gt;Then after you run the trackers (or wait a bit) and this should be applied.&lt;BR /&gt;&lt;BR /&gt;Let me know&lt;BR /&gt;&lt;BR /&gt;Guihem&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Feb 2021 13:57:47 GMT</pubDate>
    <dc:creator>guilmxm</dc:creator>
    <dc:date>2021-02-15T13:57:47Z</dc:date>
    <item>
      <title>TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/528123#M64101</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Do you know if there is a way to modify the data source maximal allowed lagging value automatically depending of its priority? For example 600 seconds for 'high', 3600 for 'medium' and 86400 for 'low'.&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 14:06:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/528123#M64101</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2020-11-05T14:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/528448#M64130</link>
      <description>&lt;P&gt;&lt;BR /&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This actually looks a good idea for an enhancement request, in the future feel free to open an issue in GitHub:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/guilhemmarchand/trackme/issues" target="_blank"&gt;https://github.com/guilhemmarchand/trackme/issues&lt;/A&gt;&lt;/P&gt;&lt;P&gt;To answer your question, given that TrackMe stores everything in KVstore based lookups, this is very straightforward, you would create a report in TrackMe that you schedule to run on the schedule of your choice (the schedule cost will be near null), for example for data sources:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| eval data_max_lag_allowed=case(priority="low", 86400, priority="medium", 3600, priority="high", 600)
| outputlookup append=t key_field=keyid trackme_data_source_monitoring
| stats c&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Schedule this as a new report, say "TrackMe - custom lagging policy maintenance", and this will update the lagging value based on your rule.&lt;BR /&gt;&lt;BR /&gt;Note that with this, any change operated in the UI regarding the lagging max value would be overriden by your rule.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;The following search would maintain this for all data sources / hosts in one operation:&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| eval data_max_lag_allowed=case(priority="low", 86400, priority="medium", "3600", priority="high", 600)
| outputlookup append=t key_field=keyid trackme_data_source_monitoring
| stats c
| inputlookup append=t trackme_host_monitoring | eval keyid=_key | where isnull(c) | fields - c
| eval data_max_lag_allowed=case(priority="low", 86400, priority="medium", "3600", priority="high", 600)
| outputlookup append=t key_field=keyid trackme_data_source_monitoring
| stats c&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;I will most certainly look at extending the lagging class feature to add a class to be created based on the priority.&lt;BR /&gt;&lt;BR /&gt;Let me know if you have any question.&lt;BR /&gt;&lt;BR /&gt;Guihem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Nov 2020 20:21:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/528448#M64130</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2020-11-08T20:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/528488#M64135</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103"&gt;@guilmxm&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Awesome. We'll certainly implement those reports.&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 07:59:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/528488#M64135</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2020-11-09T07:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/531400#M64316</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;TrackMe 1.2.27 was published today and allows you to create builtin lagging classes based on the priority for data sources:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://trackme.readthedocs.io/en/latest/userguide.html#lagging-classes" target="_blank"&gt;https://trackme.readthedocs.io/en/latest/userguide.html#lagging-classes&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Let me know if you have any question.&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Guilhem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2020 21:13:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/531400#M64316</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2020-11-30T21:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/533130#M64436</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103"&gt;@guilmxm&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;Great news, glad to hear it.&lt;BR /&gt;Thanks for the update!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Dec 2020 12:53:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/533130#M64436</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2020-12-15T12:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539883#M64874</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103"&gt;@guilmxm&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We’ve set up the lagging classes definitions based on priorities, but it looks like we have an issue with it. We configured 4 lagging classes in total: 3 for data sources and 1 for data hosts.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lagging classes conf.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12936i365502563DC74E81/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lagging classes conf.png" alt="Lagging classes conf.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It works great for ‘medium’ and ‘low’ priorities, but not for ‘high’: the value of 'data_max_lag_allowed' does not change (for data sources as well as for data hosts).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lagging classes sourcetype.png" style="width: 933px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12937iBFD00F9E50C6C7BA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lagging classes sourcetype.png" alt="Lagging classes sourcetype.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We’ve tried recreate ‘high’ lagging classes, change their order, we’ve checked their the orthography as well, but nothing seems to be useful.&lt;/P&gt;&lt;P&gt;Do you have an idea what could be the issue’s root cause?&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 09:20:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539883#M64874</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2021-02-15T09:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539960#M64876</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This should just work fine for high priority too, most likely these entities you are looking at (those in high priority) have a the override lagging class field set to true:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="guilmxm_0-1613397121368.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12949iD89E53960764E5A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="guilmxm_0-1613397121368.png" alt="guilmxm_0-1613397121368.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You can check this out the following way too:&lt;/P&gt;&lt;P&gt;For data sources:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And for data hosts:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_host_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;You could change (bulk change) this the following way:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For data sources:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"
| eval data_override_lagging_class="false"
| outputlookup key_field=keyid trackme_data_source_monitoring&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And for data hosts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_host_monitoring | eval keyid=_key
| search priority="high" AND data_override_lagging_class="true"
| eval data_override_lagging_class="false"
| outputlookup key_field=keyid trackme_host_monitoring&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course if there are some entities that should override lagging classes, you need to either exclude these from the commands above, or check it out within the UI.&lt;BR /&gt;&lt;BR /&gt;Then after you run the trackers (or wait a bit) and this should be applied.&lt;BR /&gt;&lt;BR /&gt;Let me know&lt;BR /&gt;&lt;BR /&gt;Guihem&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 13:57:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539960#M64876</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2021-02-15T13:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539992#M64878</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103"&gt;@guilmxm&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;P&gt;Actually, the “override lagging classes” option was the first thing we checked. And for all data sources and data hosts it’s set to “false”. Here’s the search you provided for data sources:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data_override_lagging_class_true.png" style="width: 583px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12951iBBA78C4029249957/image-size/large?v=v2&amp;amp;px=999" role="button" title="data_override_lagging_class_true.png" alt="data_override_lagging_class_true.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And the same for 'false':&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data_override_lagging_class_false.png" style="width: 590px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12952iB645E2FAC235ABA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="data_override_lagging_class_false.png" alt="data_override_lagging_class_false.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 16:28:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539992#M64878</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2021-02-15T16:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539997#M64879</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Hum it's actually weird, there should have been a value, remember which which version you're one?&lt;BR /&gt;Might have been a thing that was fixed later on, the macro define a default value in case the field would null.&lt;BR /&gt;&lt;BR /&gt;Can you run:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup trackme_data_source_monitoring | eval keyid=_key
| eval data_override_lagging_class=if(isnull(data_override_lagging_class), "false", data_override_lagging_class)
| outputlookup trackme_data_source_monitoring key_field=keyid&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Then run the tracker and verify? This would fix any null value and set to false (the default)&lt;BR /&gt;This is safe to do, only this value will get updated and this won't change a thing for other entities.&lt;BR /&gt;&lt;BR /&gt;If this fixes the issue you can apply for data hosts too.&lt;BR /&gt;&lt;BR /&gt;I will check how it is expected in TrackMe logic too &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 17:04:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/539997#M64879</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2021-02-15T17:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/540225#M64895</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103" target="_blank"&gt;@guilmxm&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;It didn’t fly &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We executed the provided request but it doesn’t changed a thing. We also tried to rewrite the “data_override_lagging_class” value from Lookup editor App, but it wasn’t helpful.&lt;/P&gt;&lt;P&gt;The TrackMe version we use in our test environment is 1.2.28&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 10:38:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/540225#M64895</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2021-02-17T10:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/540242#M64897</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Ok, I will check this out deeply and verify, then share some additional things to verify.&lt;BR /&gt;First you can please upgrade the app to its latest version, especially since you are in testing, there has been many bug fixes since &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;Then eventually please verify after the update is the behaviior persists and let me know&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 13:17:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/540242#M64897</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2021-02-17T13:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/540350#M64905</link>
      <description>&lt;P&gt;Hi @&lt;A href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103" target="_blank"&gt;guilmxm&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;Yes, sure. I’ll ask our Tool team to update the app to its last version.&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2021 08:54:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/540350#M64905</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2021-02-18T08:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/541982#M65007</link>
      <description>&lt;P&gt;Hi @&lt;A href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103" target="_blank"&gt;guilmxm&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;I asked our Tool Team update TrackMe version. We also performed a few tests.&lt;/P&gt;&lt;P&gt;Good news, there is no more issue with “unapplied” lagging classes for data source.&lt;/P&gt;&lt;P&gt;Unfortunately, there are few bad news as well.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;We still face the same issue with hosts&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 512px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13149i52A3617A25DF0915/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13150iECE2B465FE0C5E92/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 472px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13151i1C89C7FE9ACF8621/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.png" style="width: 474px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13152i5493E253D427ABEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.png" alt="4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Second issue, It looks like after the update the loading time is waaay higher than before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We also discovered one more thing we’d like to ask you about. We you logical groups a lot and we’d like to be able to create lagging classes based on it. My colleague from Toole Team just create a feature request related to it: &lt;A href="https://github.com/guilhemmarchand/trackme/issues/272" target="_blank"&gt;https://github.com/guilhemmarchand/trackme/issues/272&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.S. N’hésitez pas à nous répondre en français si vous le préférez&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 14:43:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/541982#M65007</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2021-03-02T14:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/542019#M65008</link>
      <description>&lt;P&gt;Bonjour&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/39901"&gt;@woodentree&lt;/a&gt;&amp;nbsp;!&lt;BR /&gt;&lt;BR /&gt;Ha ha my keyboard doesn't have any of the French things I'd need not to become mad quickly enough lol&lt;BR /&gt;&lt;BR /&gt;So, to answer, great the data sources issue is fixed, ole!&lt;BR /&gt;&lt;BR /&gt;Then, regarding:&lt;BR /&gt;&lt;BR /&gt;- Data hosts&lt;BR /&gt;&lt;BR /&gt;This I think is actually working, the thing is that for hosts it behaves a little bit differently and it cannot be lower the higher value between all the sourcetypes idenfitied for the host.&lt;BR /&gt;&lt;BR /&gt;The reason is specific to data hosts, which can behave on a per sourcetype, or globally (the global alerting mode) so I had to come with a compromise.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;The proof in image:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="guilmxm_0-1614706804412.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13154iD868F00E03C3E3B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="guilmxm_0-1614706804412.png" alt="guilmxm_0-1614706804412.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="guilmxm_1-1614706838267.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13155i347D25553450DFDD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="guilmxm_1-1614706838267.png" alt="guilmxm_1-1614706838267.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Because the default is 3600 secs,&amp;nbsp; to go bellow this value, this would mean that the sourcetypes themselves go bellow this value, data hosts will take whatever the biggest value.&lt;BR /&gt;&lt;BR /&gt;Let me know your thinking, I know this part is a bit tricky.&lt;BR /&gt;&lt;BR /&gt;- Loading performance:&lt;BR /&gt;&lt;BR /&gt;Gotcha, it's in my plan to work on this and review the UI globally, which will take time, thus there shouldn't have been such an increase so I will investigate!&lt;BR /&gt;&lt;BR /&gt;Received for the Git issue, in da back log!&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Guilhem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 17:46:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/542019#M65008</guid>
      <dc:creator>guilmxm</dc:creator>
      <dc:date>2021-03-02T17:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: TrackMe App: how to adjust "max allowed lagging value" depending on the priority?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/542097#M65016</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/122103"&gt;@guilmxm&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok, got it for data host. Yep, it's a bit tricky, but it makes sense after the explanation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help and for your engagement!&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 08:29:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/TrackMe-App-how-to-adjust-quot-max-allowed-lagging-value-quot/m-p/542097#M65016</guid>
      <dc:creator>woodentree</dc:creator>
      <dc:date>2021-03-03T08:29:05Z</dc:date>
    </item>
  </channel>
</rss>

