<?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: Passing a token to a saved report in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/572111#M46970</link>
    <description>&lt;P&gt;Did you get this resolved? I'm having the exact same issue.&lt;/P&gt;&lt;P&gt;- a ref="&amp;lt;reportname&amp;gt;" works fine with the restricted read permissions (no access to index data) but I cannot pass tokens to the report&lt;/P&gt;&lt;P&gt;- a &amp;lt;query&amp;gt;| savedsearch &amp;lt;reportname&amp;gt; tokens=$tokens$ works fine for results but cannot run as report owner&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How does one run as the report owner and still pass in tokens?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 23 Oct 2021 15:47:57 GMT</pubDate>
    <dc:creator>KenKoch1</dc:creator>
    <dc:date>2021-10-23T15:47:57Z</dc:date>
    <item>
      <title>Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410167#M26925</link>
      <description>&lt;P&gt;Is there a way to pass a token from my dashboard (field1) text field that will have a username to a saved report (DSN Test Report)?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;`&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;DSN Test&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="true"&amp;gt;
    &amp;lt;input type="text" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="field2"&amp;gt;
      &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-7d@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;DSN Test&amp;lt;/title&amp;gt;
        &amp;lt;search ref="DSN Test Report"&amp;gt;
          &amp;lt;earliest&amp;gt;$field2.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$field2.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Jan 2019 15:45:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410167#M26925</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-16T15:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410168#M26926</link>
      <description>&lt;P&gt;Here is the report and yes I know it will work if I make it a inline search in the dashboard, but you can't set dashboards to run as the "Owner" which is what I need it to do. The report I can set to run as owner.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main EventCode=4740 Account_Name=$field1$ 
| eval Account_Name2=mvindex(Account_Name,1), mytime=_time
| convert timeformat="%m-%d-%Y %I:%M:%S %p" ctime(mytime) 
| dedup _time 
| table Account_Name2, Caller_Computer_Name, mytime 
| rename Account_Name2 AS "Account Locked Out", Caller_Computer_Name AS "Lockout Location", mytime AS "Date/Time"
| sort _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Jan 2019 16:00:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410168#M26926</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-16T16:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410169#M26927</link>
      <description>&lt;P&gt;@MikeMefford &lt;/P&gt;

&lt;P&gt;Can you please try  &lt;CODE&gt;savedsearch&lt;/CODE&gt; command?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;         &amp;lt;search&amp;gt;
 &amp;lt;query&amp;gt;| savedsearch "DSN Test Report" param1="value1"&amp;lt;/query&amp;gt;
           &amp;lt;earliest&amp;gt;$field2.earliest$&amp;lt;/earliest&amp;gt;
           &amp;lt;latest&amp;gt;$field2.latest$&amp;lt;/latest&amp;gt;
           &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 14:05:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410169#M26927</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2019-01-17T14:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410170#M26928</link>
      <description>&lt;P&gt;Thanks for your reply!&lt;/P&gt;

&lt;P&gt;So I made the change to my dashboard:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;search&amp;gt;
              &amp;lt;query&amp;gt;| savedsearch "DSN Test Report" Account_Name=$field1$&amp;lt;/query&amp;gt;
              &amp;lt;earliest&amp;gt;$field2.earliest$&amp;lt;/earliest&amp;gt;
              &amp;lt;latest&amp;gt;$field2.latest$&amp;lt;/latest&amp;gt;
              &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And also changed the saved search:&lt;BR /&gt;
    index=main EventCode=4740 Account_Name=$field1$&lt;/P&gt;

&lt;P&gt;I get the following message when I run it:&lt;BR /&gt;
Error in 'savedsearch' command: Encountered the following error while building a search for saved search 'DSN Test Report': Error while replacing variable name='field1'. Could not find variable in the argument map.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 17:53:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410170#M26928</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-17T17:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410171#M26929</link>
      <description>&lt;P&gt;your saved search should be like below(same as yours no change)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=main EventCode=4740 Account_Name=$field1$ 
 | eval Account_Name2=mvindex(Account_Name,1), mytime=_time
 | convert timeformat="%m-%d-%Y %I:%M:%S %p" ctime(mytime) 
 | dedup _time 
 | table Account_Name2, Caller_Computer_Name, mytime 
 | rename Account_Name2 AS "Account Locked Out", Caller_Computer_Name AS "Lockout Location", mytime AS "Date/Time"
 | sort _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;when you call the saved search in dashboard it should be like below, as field1 is the parameter name of teh saved search&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;search&amp;gt;
               &amp;lt;query&amp;gt;| savedsearch "DSN Test Report" field1="$form.field1$"&amp;lt;/query&amp;gt;
               &amp;lt;earliest&amp;gt;$field2.earliest$&amp;lt;/earliest&amp;gt;
               &amp;lt;latest&amp;gt;$field2.latest$&amp;lt;/latest&amp;gt;
               &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Jan 2019 18:09:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410171#M26929</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-17T18:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410172#M26930</link>
      <description>&lt;P&gt;Thank you very much! That is what I was wanting, but I'm still having an issue. I'm able to run the dashboard and get results, but my user is unable to get results (No Results). I've set the permissions on the saved search (report) to give their role "Read" access and to run the report as "Owner". Which is the way I have all their other reports set.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 20:24:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410172#M26930</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-17T20:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410173#M26931</link>
      <description>&lt;P&gt;From that user session try to run the saved search query by passing the account name and see whether its returning data. It may not be permission related, it may be query related.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 08:01:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410173#M26931</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-18T08:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410174#M26932</link>
      <description>&lt;P&gt;So I had the user run the saved search and they did get results. I did it a couple different ways 1. I totally removed the Account_Name= 2. I hardcoded a username in the Account_Name="???????" and on both they got results. Then I had them try the dashboard with it hard coded and they got "No Results". &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:50:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410174#M26932</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2020-09-29T22:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410175#M26933</link>
      <description>&lt;P&gt;sdchakraborty did you have any other ideas on my issue I'm having? I did some testing on your recommendations and posted the results above. Once again thank you for your help on this.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 15:51:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410175#M26933</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-22T15:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410176#M26934</link>
      <description>&lt;P&gt;Sorry I missed the email notification...Can you check whether you are running the search and dashboard from the same app or not? It cloud be permission issue. Also what is the visualization type for that panel? event table or statistical table? for your search it needs to statistical table.&lt;/P&gt;

&lt;P&gt;Sid&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 03:12:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410176#M26934</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-23T03:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410177#M26935</link>
      <description>&lt;P&gt;The report and dashboard are in the same app. Visualization = Statistics Table &lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 14:09:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410177#M26935</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-23T14:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410178#M26936</link>
      <description>&lt;P&gt;Strange....Can you post the code for that dashboard panel?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 14:41:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410178#M26936</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-23T14:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410179#M26937</link>
      <description>&lt;P&gt;Yeah this one has me a little stumped, usually pretty good at finding the issue or code to do what I want.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;DSN Test&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="true"&amp;gt;
    &amp;lt;input type="text" token="account_tok"&amp;gt;
      &amp;lt;label&amp;gt;Account Name&amp;lt;/label&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="date_tok"&amp;gt;
      &amp;lt;label&amp;gt;Date&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-14d@d&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;DSN Test&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| savedsearch "DSN Test" account_tok="$form.account_tok$"&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$date_tok.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$date_tok.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Jan 2019 15:01:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410179#M26937</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-23T15:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410180#M26938</link>
      <description>&lt;P&gt;In your saved search definition you have account_tok as parameter name? Or it is field1? Are you calling the savedsearch in same way I mentioned above right?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 15:23:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410180#M26938</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-23T15:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410181#M26939</link>
      <description>&lt;P&gt;It's account_tok I cleaned up the previous entries a little bit. Here is the saved search now:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main_sec EventCode=4740 Account_Name=$account_tok$
| eval Account_Name2=mvindex(Account_Name,1), mytime=_time
| convert timeformat="%m-%d-%Y %I:%M:%S %p" ctime(mytime) 
| dedup _time 
| table Account_Name2, Caller_Computer_Name, mytime 
| rename Account_Name2 AS "Account Locked Out", Caller_Computer_Name AS "Lockout Location", mytime AS "Date/Time"
| sort _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Jan 2019 15:29:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410181#M26939</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-01-23T15:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410182#M26940</link>
      <description>&lt;P&gt;@sdchakraborty  I'm having the exact same issue. &lt;/P&gt;

&lt;P&gt;It seems like a user can only run a savedsearch as the owner with &lt;CODE&gt;&amp;lt;search ref="test"&amp;gt;&amp;lt;/search&amp;gt;&lt;/CODE&gt;. &lt;/P&gt;

&lt;P&gt;As soon as this is changed to &lt;CODE&gt;&amp;lt;search&amp;gt;&amp;lt;query&amp;gt;| savedsearch "test"&amp;lt;/query&amp;gt;&amp;lt;/search&amp;gt;&lt;/CODE&gt;, the user will always get the &lt;CODE&gt;No results found.&lt;/CODE&gt; answer back which suggests the savedsearch is ran from the user instead of the owner.&lt;/P&gt;

&lt;P&gt;Do you know of a way around that?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 13:16:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410182#M26940</guid>
      <dc:creator>maartendhondt</dc:creator>
      <dc:date>2019-01-29T13:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410183#M26941</link>
      <description>&lt;P&gt;Hi @maartendhondt / @MikeMefford ,&lt;/P&gt;

&lt;P&gt;I will do some analysis on this and update you shortly.&lt;/P&gt;

&lt;P&gt;Sid&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 05:58:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410183#M26941</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-30T05:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410184#M26942</link>
      <description>&lt;P&gt;I just tried and its working for me. I think the issue is happening because of the earliest and latest time you are passing to that search?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;search&amp;gt;
           &amp;lt;query&amp;gt;| savedsearch "DSN Test" account_tok="$form.account_tok$"&amp;lt;/query&amp;gt;
           **&amp;lt;earliest&amp;gt;$date_tok.earliest$&amp;lt;/earliest&amp;gt;
           &amp;lt;latest&amp;gt;$date_tok.latest$&amp;lt;/latest&amp;gt;**
         &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jan 2019 07:00:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410184#M26942</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2019-01-30T07:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410185#M26943</link>
      <description>&lt;P&gt;When you got it working, did you restrict your user to not have access to the index? Only the owner should be allowed to search the index. That's the entire reason why I'm using a savedsearch.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 07:10:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410185#M26943</guid>
      <dc:creator>maartendhondt</dc:creator>
      <dc:date>2019-01-30T07:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a token to a saved report</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410186#M26944</link>
      <description>&lt;P&gt;Did anyone have any other thoughts on this? &lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 15:48:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Passing-a-token-to-a-saved-report/m-p/410186#M26944</guid>
      <dc:creator>MikeMefford</dc:creator>
      <dc:date>2019-02-20T15:48:13Z</dc:date>
    </item>
  </channel>
</rss>

