<?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: Spl in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599742#M208746</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/148334"&gt;@tread_splunk&lt;/a&gt;&amp;nbsp;Looking perfect and while I am selecting it is showing the same date and same timeframe comparison.&lt;/P&gt;&lt;P&gt;But here when I am slecting the any timeframe the time is looking like in yellow highlighted. How can I chnage it in human readable format.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uagraw01_0-1653914299238.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19863iE8E2A0E4E78877AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="uagraw01_0-1653914299238.png" alt="uagraw01_0-1653914299238.png" /&gt;&lt;/span&gt;&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>Mon, 30 May 2022 12:36:16 GMT</pubDate>
    <dc:creator>uagraw01</dc:creator>
    <dc:date>2022-05-30T12:36:16Z</dc:date>
    <item>
      <title>How can we use dynamic token to compare x hours vs last 1 week ago?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599719#M208736</link>
      <description>&lt;P&gt;Hello Splunkers!!&lt;/P&gt;
&lt;P&gt;Below is the search where we are comparing the last 3 hours vs 1 week ago data. How can we use dynamic token here? So when they select 2 hours it will compare 2 hours vs last 1 week ago.&lt;/P&gt;
&lt;P&gt;How can we use token here in place of -3h&amp;nbsp; :&amp;nbsp;((earliest=@m-3h latest=@m) OR (earliest=@m-1w-3h latest=@m-1w))&lt;/P&gt;
&lt;P&gt;index=ecomm_sfcc_prod sourcetype=sfcc_logs source="/mnt/webdav/*.log" "Order created successfully" ((earliest=@m-3h latest=@m) OR (earliest=@m-1w-3h latest=@m-1w))&lt;BR /&gt;| eval time=date_hour.":".date_minute&lt;BR /&gt;| eval date=date_month.":".date_mday&lt;BR /&gt;| chart count by time date&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 05:09:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599719#M208736</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-31T05:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599731#M208740</link>
      <description>&lt;P&gt;Not sure you can tokens for that.&amp;nbsp; Will wait and see what response you get.&amp;nbsp; The following looks like it works for me...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=blah AND
[| makeresults 
    | addinfo 
    | eval last_week_min=info_min_time-(60*60*24*7), last_week_max=info_max_time-(60*60*24*7) 
    | eval search="(earliest&amp;gt;".last_week_min." latest&amp;lt;".last_week_max.") OR (earliest&amp;gt;".info_min_time." latest&amp;lt;".info_max_time.")"]&lt;/LI-CODE&gt;&lt;P&gt;Choose the time range you want from the time picker (last 5 mins, last 3hrs, or a time range) and then the subquery returns the earliest / latest combination for that period AND the same period a week ago (i.e. 60*60*24*7 secs ago).&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 11:29:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599731#M208740</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2022-05-30T11:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599733#M208741</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/148334"&gt;@tread_splunk&lt;/a&gt;&amp;nbsp; Thanks for your response. In your query how can we compare two time frame dynamically.&lt;/P&gt;&lt;P&gt;Like : 3 hours ago vs 1 week ago&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;24 hours vs 48 hours ago&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6 hours vs 1 week ago.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Means when user select any time frame than both will chnage&lt;/P&gt;&lt;P&gt;Please see&amp;nbsp; below screenshot:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uagraw01_0-1653910903339.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19861i9EBC9AD309BA8C67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="uagraw01_0-1653910903339.jpeg" alt="uagraw01_0-1653910903339.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 11:39:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599733#M208741</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-30T11:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599734#M208742</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=ecomm_sfcc_prod sourcetype=sfcc_logs source="/mnt/webdav/*.log" "Order created successfully" ((earliest=@m-$hours$h latest=@m) OR (earliest=@m-1w-$hours$h latest=@m-1w))
| eval time=date_hour.":".date_minute
| eval date=date_month.":".date_mday
| chart count by time date&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 30 May 2022 12:07:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599734#M208742</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-05-30T12:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599742#M208746</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/148334"&gt;@tread_splunk&lt;/a&gt;&amp;nbsp;Looking perfect and while I am selecting it is showing the same date and same timeframe comparison.&lt;/P&gt;&lt;P&gt;But here when I am slecting the any timeframe the time is looking like in yellow highlighted. How can I chnage it in human readable format.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uagraw01_0-1653914299238.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19863iE8E2A0E4E78877AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="uagraw01_0-1653914299238.png" alt="uagraw01_0-1653914299238.png" /&gt;&lt;/span&gt;&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>Mon, 30 May 2022 12:36:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599742#M208746</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-30T12:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599743#M208747</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;Thanks for your response let me check with this approach. However you are constructor of this query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 12:37:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599743#M208747</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-30T12:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599813#M208774</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used the below approach in the dshboard but when I am passing the token "period_tok" in the panels like as suggested it is not working properly. I am getting the error like " Invalid value"@m-60m@m" . How can fix this issue.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IMG_20220531_123816__01.jpg" style="width: 2804px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19866iE1EFE6F4FCB9DC27/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IMG_20220531_123816__01.jpg" alt="IMG_20220531_123816__01.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 07:12:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599813#M208774</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-31T07:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599816#M208780</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70277"&gt;@uagraw01&lt;/a&gt;&amp;nbsp;What human readable format do you want?&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 07:24:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599816#M208780</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2022-05-31T07:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599821#M208782</link>
      <description>&lt;P&gt;You shouldn't have two&amp;nbsp;@ symbols in the time - remove these from the token option values&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 07:34:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599821#M208782</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-05-31T07:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599825#M208784</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/148334"&gt;@tread_splunk&lt;/a&gt;&amp;nbsp;Actually when I am selecting any time frame I am not getting the exact timeframe of data.&lt;/P&gt;&lt;P&gt;Ex : If I have select 2 hours :- then should compare last 2 hours vs last week&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If I am using the below query :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=ecomm_sfcc_prod sourcetype=sfcc_logs source="/mnt/webdav/*.log"&lt;BR /&gt;[| makeresults&lt;BR /&gt;| addinfo&lt;BR /&gt;| eval last_week_min=info_min_time-(60*60*24*7), last_week_max=info_max_time-(60*60*24*7)&lt;BR /&gt;| eval search="(earliest&amp;gt;".last_week_min." latest&amp;lt;".last_week_max.") OR (earliest&amp;gt;".info_min_time." latest&amp;lt;".info_max_time.")"]&lt;BR /&gt;| eval time=date_hour.":".date_minute&lt;BR /&gt;| eval date=date_month.":".date_mday&lt;BR /&gt;| chart count by time date&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 07:48:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599825#M208784</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-31T07:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599840#M208791</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; I have made the changes but it is still throwing me the same error.&lt;BR /&gt;Below are the things I have attached for dashboard &amp;amp; the query. Please check at once&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dashboard :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;form version="1.1"&amp;gt;&lt;BR /&gt;&amp;lt;label&amp;gt;Order Flow Dashboard by payment type&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;description&amp;gt;M&amp;amp;amp;A |&amp;lt;/description&amp;gt;&lt;BR /&gt;&amp;lt;fieldset submitButton="true"&amp;gt;&lt;BR /&gt;&amp;lt;input type="radio" token="period_tok"&amp;gt;&lt;BR /&gt;&amp;lt;label&amp;gt;Select a time range&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;choice value="-60m"&amp;gt;Last 60 Minute&amp;lt;/choice&amp;gt;&lt;BR /&gt;&amp;lt;choice value="-6h"&amp;gt;Last 6 hours&amp;lt;/choice&amp;gt;&lt;BR /&gt;&amp;lt;choice value="-3d"&amp;gt;Last 3 Days&amp;lt;/choice&amp;gt;&lt;BR /&gt;&amp;lt;default&amp;gt;Last 24 Hours&amp;lt;/default&amp;gt;&lt;BR /&gt;&amp;lt;!-- set condition based on the label defined by &amp;lt;choice&amp;gt; --&amp;gt;&lt;BR /&gt;&amp;lt;!-- Within each condition, specify a custom label for display --&amp;gt;&lt;BR /&gt;&amp;lt;!-- Capture the selected value in the token, earliest_tok --&amp;gt;&lt;BR /&gt;&amp;lt;change&amp;gt;&lt;BR /&gt;&amp;lt;condition label="Last 24 Hours"&amp;gt;&lt;BR /&gt;&amp;lt;set token="date_label"&amp;gt;Yesterday&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;set token="earliest_tok"&amp;gt;$value$&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;/condition&amp;gt;&lt;BR /&gt;&amp;lt;condition label="Last 7 Days"&amp;gt;&lt;BR /&gt;&amp;lt;set token="date_label"&amp;gt;Last week&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;set token="earliest_tok"&amp;gt;$value$&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;/condition&amp;gt;&lt;BR /&gt;&amp;lt;condition label="Last 30 Days"&amp;gt;&lt;BR /&gt;&amp;lt;set token="date_label"&amp;gt;Last month&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;set token="earliest_tok"&amp;gt;$value$&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;/condition&amp;gt;&lt;BR /&gt;&amp;lt;/change&amp;gt;&lt;BR /&gt;&amp;lt;/input&amp;gt;&lt;BR /&gt;&amp;lt;/fieldset&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query used in the panels:&lt;BR /&gt;&lt;BR /&gt;index=ecomm_sfcc_prod sourcetype=sfcc_logs source="/mnt/webdav/*.log" "Order created successfully" ((earliest=@m-$earliest_tok$ latest=@m) OR (earliest=@m-1w-$earliest_tok$ latest=@m-1w))&lt;BR /&gt;| eval time=date_hour.":".date_minute&lt;BR /&gt;| eval date=date_month.":".date_mday&lt;BR /&gt;| chart count by time date&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 08:35:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599840#M208791</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-31T08:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599843#M208794</link>
      <description>&lt;P&gt;Your token value has a leading minus and you have a minus in the search so you will end up with two adjacent minus signs! Remove one of them.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 08:38:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599843#M208794</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-05-31T08:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599849#M208798</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; Issue persist the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think issue only with this search criteria.&lt;/P&gt;&lt;P&gt;I am using : (earliest=@m-($earliest_tok$) latest=@m) OR (earliest=@m-1w-($earliest_tok$)&lt;/P&gt;&lt;P&gt;I have tried this also but no luck :&lt;/P&gt;&lt;P&gt;(earliest=@m-("$form.earliest_tok$") latest=@m) OR (earliest=@m-1w-("$form.earliest_tok$")&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 08:53:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599849#M208798</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-31T08:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599854#M208802</link>
      <description>&lt;P&gt;Why did you add brackets?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(earliest=@m$earliest_tok$ latest=@m) OR (earliest=@m-1w$earliest_tok$)&lt;/LI-CODE&gt;&lt;P&gt;or change the values in the option e.g.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;choice value="60m"&amp;gt;Last 60 Minute&amp;lt;/choice&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;and use:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(earliest=@m-$earliest_tok$ latest=@m) OR (earliest=@m-1w-$earliest_tok$)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 31 May 2022 09:00:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599854#M208802</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-05-31T09:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Spl</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599858#M208804</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;Thanks for fixing this. I am almost done with this approach , corrected the labels in the set tokens in the dashboard. Now after selecting the choices it is giving me the results. But I have only one concern. In the below screen when I am selecting the last 60 min comparison to last week. I have received some fishy timeframe results. In the graph you can see 9:19 am IST. It should be around 1:45 PM IST rater than this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uagraw01_0-1653989192106.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19870i050F563E5E6C98F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="uagraw01_0-1653989192106.png" alt="uagraw01_0-1653989192106.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 09:25:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-we-use-dynamic-token-to-compare-x-hours-vs-last-1-week/m-p/599858#M208804</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-05-31T09:25:37Z</dc:date>
    </item>
  </channel>
</rss>

