<?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 How to use a scheduled report as base for dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408740#M26820</link>
    <description>&lt;P&gt;Trying to use a scheduled report as the base for a dashboard because the dashboard users won't have access to the index. Both the report and dashboard exist in the same app and I believe permissions are applied correctly. I've read through a couple of answered questions on this forum, but it's not making sense to me. I've tried all the suggested solutions, but still get a blank dashboard. Happy to share my source if needed.&lt;/P&gt;</description>
    <pubDate>Mon, 15 Apr 2019 21:00:38 GMT</pubDate>
    <dc:creator>reynlds</dc:creator>
    <dc:date>2019-04-15T21:00:38Z</dc:date>
    <item>
      <title>How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408740#M26820</link>
      <description>&lt;P&gt;Trying to use a scheduled report as the base for a dashboard because the dashboard users won't have access to the index. Both the report and dashboard exist in the same app and I believe permissions are applied correctly. I've read through a couple of answered questions on this forum, but it's not making sense to me. I've tried all the suggested solutions, but still get a blank dashboard. Happy to share my source if needed.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 21:00:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408740#M26820</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-15T21:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408741#M26821</link>
      <description>&lt;P&gt;I'm assuming that since you said you have a blank dashboard and not a message that no artifacts were found, that all of the permissions are set up correctly.&lt;/P&gt;

&lt;P&gt;One of the pitfalls of using a scheduled search (with &lt;CODE&gt;loadjob&lt;/CODE&gt;) is that the time picker is applied to jobs themselves and not the results of the job. So if your dashboard is looking for data from the previous month and the scheduled search results are from an hour ago, that will not be in the range of the time picker. &lt;/P&gt;

&lt;P&gt;There is a workaround though. In your dashboard XML, add these lines to your time picker: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;change&amp;gt;
         &amp;lt;eval token="time.earliest_epoch"&amp;gt;if(isnum('earliest'),'earliest',relative_time(now(),'earliest')&amp;lt;/eval&amp;gt;
         &amp;lt;eval token="time.latest_epoch"&amp;gt;if(isnum('latest'),'latest',relative_time(now(),'latest')&amp;lt;/eval&amp;gt;
       &amp;lt;/change&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then add something like this to your panel searches, after invoking &lt;CODE&gt;loadjob&lt;/CODE&gt;:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          | search _time&amp;gt;=$time.earliest_epoch$ AND _time&amp;lt;$time.latest_epoch$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Apr 2019 00:30:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408741#M26821</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-16T00:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408742#M26822</link>
      <description>&lt;P&gt;Maybe it's best if I simply include the xml:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;My Authentication Activity Dashboard&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
    &amp;lt;input type="text" token="username"&amp;gt;
      &amp;lt;label&amp;gt;Username&amp;lt;/label&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="event_code"&amp;gt;
      &amp;lt;label&amp;gt;Event Type&amp;lt;/label&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All Authentication Activity&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="0"&amp;gt;Login Succeeded&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="3"&amp;gt;Logout Succeeded&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="4"&amp;gt;Session Expired&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="1"&amp;gt;Invalid Username&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="2"&amp;gt;Invalid Password&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;initialValue&amp;gt;*&amp;lt;/initialValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;event&amp;gt;
        &amp;lt;search base="My_Auth_Log_Report"&amp;gt;
          &amp;lt;query&amp;gt;fields *&amp;lt;/query&amp;gt;duser=$username$ evtcode=$event_code$&amp;lt;/search&amp;gt;
      &amp;lt;/event&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>Tue, 16 Apr 2019 12:43:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408742#M26822</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-16T12:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408743#M26823</link>
      <description>&lt;P&gt;Does your time input have a default value?&lt;/P&gt;

&lt;P&gt;Also, I'm not sure what &lt;CODE&gt;duser=$username$ evtcode=$event_code$&lt;/CODE&gt; is doing outside your query tag so I've moved it inside.&lt;/P&gt;

&lt;P&gt;Give this a try:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;form&amp;gt;
   &amp;lt;label&amp;gt;My Authentication Activity Dashboard&amp;lt;/label&amp;gt;
   &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
     &amp;lt;input type="text" token="username"&amp;gt;
       &amp;lt;label&amp;gt;Username&amp;lt;/label&amp;gt;
     &amp;lt;/input&amp;gt;
     &amp;lt;input type="dropdown" token="event_code"&amp;gt;
       &amp;lt;label&amp;gt;Event Type&amp;lt;/label&amp;gt;
       &amp;lt;choice value="*"&amp;gt;All Authentication Activity&amp;lt;/choice&amp;gt;
       &amp;lt;choice value="0"&amp;gt;Login Succeeded&amp;lt;/choice&amp;gt;
       &amp;lt;choice value="3"&amp;gt;Logout Succeeded&amp;lt;/choice&amp;gt;
       &amp;lt;choice value="4"&amp;gt;Session Expired&amp;lt;/choice&amp;gt;
       &amp;lt;choice value="1"&amp;gt;Invalid Username&amp;lt;/choice&amp;gt;
       &amp;lt;choice value="2"&amp;gt;Invalid Password&amp;lt;/choice&amp;gt;
       &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
       &amp;lt;initialValue&amp;gt;*&amp;lt;/initialValue&amp;gt;
     &amp;lt;/input&amp;gt;
     &amp;lt;input type="time" token="field1"&amp;gt;
       &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
               &amp;lt;change&amp;gt;
         &amp;lt;eval token="time.earliest_epoch"&amp;gt;if(isnum('earliest'),'earliest',relative_time(now(),'earliest')&amp;lt;/eval&amp;gt;
         &amp;lt;eval token="time.latest_epoch"&amp;gt;if(isnum('latest'),'latest',relative_time(now(),'latest')&amp;lt;/eval&amp;gt;
       &amp;lt;/change&amp;gt;
     &amp;lt;/input&amp;gt;
   &amp;lt;/fieldset&amp;gt;
   &amp;lt;row&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;event&amp;gt;
         &amp;lt;search base="My_Auth_Log_Report"&amp;gt;
           &amp;lt;query&amp;gt;fields * |search duser=$username$ evtcode=$event_code$
               | search _time&amp;amp;gt;=$time.earliest_epoch$ AND _time&amp;amp;lt;$time.latest_epoch$&amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
       &amp;lt;/event&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>Tue, 16 Apr 2019 12:51:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408743#M26823</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-16T12:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408744#M26824</link>
      <description>&lt;P&gt;What is the time field called in My_Auth_Log_Report, and what do the values look like?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:06:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408744#M26824</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2020-09-30T00:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408745#M26825</link>
      <description>&lt;P&gt;The column is called "Time", but the field is "timestamp". Here are some sample entries:&lt;/P&gt;

&lt;P&gt;Apr 02 2019 07:21:28.737 CDT&lt;BR /&gt;&lt;BR /&gt;
Apr 02 2019 12:36:51.684 CDT&lt;BR /&gt;&lt;BR /&gt;
Apr 02 2019 14:30:02.823 CDT&lt;/P&gt;

&lt;P&gt;Splunk's never had issues extracting this field for anything else. I made the changes you provided above, but the dashboard panel is still blank.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 13:23:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408745#M26825</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-16T13:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408746#M26826</link>
      <description>&lt;P&gt;You have to convert Time into epoch time:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          &amp;lt;search base="My_Auth_Log_Report"&amp;gt;
            &amp;lt;query&amp;gt;fields * |search duser=$username$ evtcode=$event_code$
                | eval epoch_time=strptime(Time, "%b %d %Y %X.%3Q %Z")
                | search epoch_time&amp;amp;gt;=$time.earliest_epoch$ AND epoch_time&amp;amp;lt;$time.latest_epoch$
             &amp;lt;/query&amp;gt;
         &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Another thing you can try when your dashboard is blank is to try "Open in Search" (lower right corner of dashboard panel) to see how tokens are being passed to your search.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 13:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408746#M26826</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-16T13:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408747#M26827</link>
      <description>&lt;P&gt;Is this the whole XML? I don't see where the base search My_Auth_Log_Report is defined.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:06:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408747#M26827</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2020-09-30T00:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408748#M26828</link>
      <description>&lt;P&gt;the base search for the report is very basic:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=auth_idx source="*auth-log*"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Apr 2019 17:13:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408748#M26828</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-16T17:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408749#M26829</link>
      <description>&lt;P&gt;@reynlds if someone does not have access to the data in the index, why would you want to expose it to such users? You can use scheduled search with collect command to move the data from current index to a new one to which user has access and then create dashboard for the same. Refer to documentation: &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Collect#1._Put_.22download.22_events_into_an_index_named_.22download_count.22"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Collect#1._Put_.22download.22_events_into_an_index_named_.22download_count.22&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 17:30:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408749#M26829</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-16T17:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408750#M26830</link>
      <description>&lt;P&gt;It was suggested by our Splunk admin(s) that this is the best way to do it, since they don't want to expose the full index (all sources) to the end users. If there is a way to setup a role with only the access needed for the source, I could bypass this whole scheduled report setup, but they've said that is not possible in our current environment. Using a scheduled report as a base for the search in the dashboard was all that was offered.&lt;/P&gt;

&lt;P&gt;I read through the link you provided, but am unclear as to whether the collect index is created on-the-fly, or if I'll need them to create it for me.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 18:37:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408750#M26830</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-16T18:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408751#M26831</link>
      <description>&lt;P&gt;Tried the "open in search" and it did nothing. I also tried the inspector and it opened a window that said "unknown SID". Looks like it's not even progressing to the point of starting.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 20:23:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408751#M26831</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-16T20:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408752#M26832</link>
      <description>&lt;P&gt;Now I think we're getting to the root of the problem. As it is, the dashboard is looking to find a base search called My_Auth_Log_Report and is not finding one. Base searches (post-process searches) and scheduled searches are two different things. Read more about base searches here: &lt;A href="https://answers.splunk.com/answers/239159/multiple-base-searches-in-a-dasboard-with-post-pro.html" target="_blank"&gt;https://answers.splunk.com/answers/239159/multiple-base-searches-in-a-dasboard-with-post-pro.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;For a scheduled search, you need to use the &lt;CODE&gt;loadjob&lt;/CODE&gt; command to load the results of the scheduled search. Assuming that My_Auth_Log_Report is the name of your saved search, do you get anything if you replace yourusername and appname and run this command in a search window? &lt;CODE&gt;| loadjob savedsearch="yourusername:appname:My_Auth_Log_Report"&lt;/CODE&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:10:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408752#M26832</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2020-09-30T00:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408753#M26833</link>
      <description>&lt;P&gt;Running it alone in a search window shows all events (Huzzah!!!). However, they are in the "stats" tab and not the "events" tab. In the dashboard, still nothing...here is a snippet detailing the Search stanza (FYI...the app is called "search"):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;search&amp;gt;
  &amp;lt;query&amp;gt;| loadjob savedsearch="MyUsername:search:My_Auth_Log_Query" | fields * | search duser=$username$ evtcode=$event_code$
         | eval epoch_time=strptime(Time, "%b %d %Y %X.%3Q %Z")
         | search epoch_time&amp;amp;gt;=$time.earliest_epoch$ AND epoch_time&amp;amp;lt;$time.latest_epoch$
  &amp;lt;/query&amp;gt;
&amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Apr 2019 13:16:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408753#M26833</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-17T13:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408754#M26834</link>
      <description>&lt;P&gt;Update:  looks like the actual event is being used in the _raw field. Just need to split the _raw out into the 17 individual fields that are separated by a pipe. Pretty sure I'll have to use "rex" in some fashion.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 13:35:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408754#M26834</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-17T13:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408755#M26835</link>
      <description>&lt;P&gt;Can you add a table statement to &lt;CODE&gt;index=auth_idx source="*auth-log*"&lt;/CODE&gt; to indicate the fields you need in your dashboard?&lt;/P&gt;

&lt;P&gt;Do you get results in the dashboard if you remove the inputs like username, eventcode,  and time?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 13:53:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408755#M26835</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-17T13:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408756#M26836</link>
      <description>&lt;P&gt;@niketnilay , isn't access to a source something that can be configured in a role under restricted search terms?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 13:54:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408756#M26836</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-17T13:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408757#M26837</link>
      <description>&lt;P&gt;I don't think it would make a difference as those that will be using the dashboard won't have access to the index. Also I'm trying to get this built in search instead of fumbling in the dashboard all the time. Just need to break out the individual fields that are in the _raw string and separated by pipe delimiters.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 16:58:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408757#M26837</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-17T16:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408758#M26838</link>
      <description>&lt;P&gt;Each source contains a certain level of sensitive data. The end users only need access to one source, but Splunk admins assure me that the only way to get access to that source with a traditional method (search directly in the dashboard/panel) is to give them read access to the entire index. Our plan was to use a scheduled search to limit the amount of data that is "searchable" and make that report/dashboard available to a limit number.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 19:20:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408758#M26838</guid>
      <dc:creator>reynlds</dc:creator>
      <dc:date>2019-04-17T19:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a scheduled report as base for dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408759#M26839</link>
      <description>&lt;P&gt;[Updated] Removed answer for using index for access management as the approach suggested by Splunk Admin is also correct. @martin_mueller confirmed the same.&lt;/P&gt;

&lt;P&gt;You can create a saved search and give read only access to the user. For the following example Report name is: &lt;CODE&gt;"Your Report Name Goes Here"&lt;/CODE&gt;&lt;BR /&gt;
Then use the dashboard as following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Your Dashboard&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;event&amp;gt;
        &amp;lt;title&amp;gt;Pull Results from Report&amp;lt;/title&amp;gt;
        &amp;lt;search ref="Your Report Name Goes Here"&amp;gt;&amp;lt;/search&amp;gt;
        &amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/event&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 18 Apr 2019 00:30:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-a-scheduled-report-as-base-for-dashboard/m-p/408759#M26839</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-18T00:30:43Z</dc:date>
    </item>
  </channel>
</rss>

