<?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 Add Picture to Dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168529#M33082</link>
    <description>&lt;P&gt;Hello everyone, I have a problem with dashboards and I hope that someone could help.&lt;/P&gt;
&lt;P&gt;I want to add a picture to my dashboard that I have created based on the search app , how can I do that ?&lt;/P&gt;
&lt;P&gt;These are the steps that I have tried :&lt;/P&gt;
&lt;P&gt;I have created and copied an HTML file + picture in this directory &lt;CODE&gt;C:\Program Files\Splunk\etc\apps\search\appserver\static&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;This is the syntax I have used:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;img src="picture.jpg"/&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And I have created a View tag :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;view&amp;gt;
  &amp;lt;module name="ServerSideInclude"&amp;gt;
    &amp;lt;param name="src"&amp;gt;hello.html&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;but I do not know where to insert this view tag, I have tried to insert it by editing the XML in the dashboard but I couldn't do this.&lt;/P&gt;
&lt;P&gt;I tried to convert the XML to HTML and Add the picture to it but it didn't work .&lt;/P&gt;</description>
    <pubDate>Sat, 06 Jun 2020 21:21:24 GMT</pubDate>
    <dc:creator>KhalidHALBA</dc:creator>
    <dc:date>2020-06-06T21:21:24Z</dc:date>
    <item>
      <title>Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168529#M33082</link>
      <description>&lt;P&gt;Hello everyone, I have a problem with dashboards and I hope that someone could help.&lt;/P&gt;
&lt;P&gt;I want to add a picture to my dashboard that I have created based on the search app , how can I do that ?&lt;/P&gt;
&lt;P&gt;These are the steps that I have tried :&lt;/P&gt;
&lt;P&gt;I have created and copied an HTML file + picture in this directory &lt;CODE&gt;C:\Program Files\Splunk\etc\apps\search\appserver\static&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;This is the syntax I have used:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;img src="picture.jpg"/&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And I have created a View tag :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;view&amp;gt;
  &amp;lt;module name="ServerSideInclude"&amp;gt;
    &amp;lt;param name="src"&amp;gt;hello.html&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;but I do not know where to insert this view tag, I have tried to insert it by editing the XML in the dashboard but I couldn't do this.&lt;/P&gt;
&lt;P&gt;I tried to convert the XML to HTML and Add the picture to it but it didn't work .&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jun 2020 21:21:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168529#M33082</guid>
      <dc:creator>KhalidHALBA</dc:creator>
      <dc:date>2020-06-06T21:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168530#M33083</link>
      <description>&lt;P&gt;The html needs to live in a dashboard, one way or another. For a dashboard, you can write Simple XML or Advanced XML or you can use HTML. The &lt;CODE&gt;&amp;lt;view&amp;gt;&lt;/CODE&gt; tag defines a dashboard in Advanced XML.&lt;/P&gt;

&lt;P&gt;However, I would write this simple XML for a dashboard instead:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
&amp;lt;row&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;HTML Panel Example&amp;lt;/h1&amp;gt;
    &amp;lt;p&amp;gt;The HTML panel displays inline HTML.&amp;lt;/p&amp;gt;
      &amp;lt;img src="picture.jpg"/&amp;gt;
   &amp;lt;/html&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Now you don't need hello.html at all.&lt;/P&gt;

&lt;P&gt;For more info check out the &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Viz/OverviewofSimplifiedXML"&gt;Build Dashboards with Simple XML&lt;/A&gt; section of the manual - or start at the beginning of the manual.&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2014 22:01:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168530#M33083</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-05-16T22:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168531#M33084</link>
      <description>&lt;P&gt;Thank you , your answer solves my problem. &lt;/P&gt;</description>
      <pubDate>Sat, 17 May 2014 02:30:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168531#M33084</guid>
      <dc:creator>KhalidHALBA</dc:creator>
      <dc:date>2014-05-17T02:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168532#M33085</link>
      <description>&lt;P&gt;I have done the xml like above but I dint get the results.&lt;BR /&gt;
Could you please help me out?&lt;BR /&gt;
Im having my picture in /opt/splunk/etc/apps/appserver/static/mylogo.png&lt;BR /&gt;
Then I have mentioned this path in src="..". But no luck&lt;BR /&gt;
Is there any size constraints?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2014 06:28:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168532#M33085</guid>
      <dc:creator>splunkn</dc:creator>
      <dc:date>2014-11-12T06:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168533#M33086</link>
      <description>&lt;P&gt;I too have the same problem. The image is not getting loaded. How do I solve that?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 06:46:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168533#M33086</guid>
      <dc:creator>Ellina</dc:creator>
      <dc:date>2015-09-16T06:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168534#M33087</link>
      <description>&lt;P&gt;There is a minor error in the above example. Its missing the &amp;lt; / html &amp;gt; at the end. The following worked for me no problem.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
 &amp;lt;row&amp;gt;
   &amp;lt;html&amp;gt;
     &amp;lt;img src="picture.jpg"/&amp;gt;
   &amp;lt;/html&amp;gt;
 &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 May 2016 06:17:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168534#M33087</guid>
      <dc:creator>brettadams</dc:creator>
      <dc:date>2016-05-19T06:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168535#M33088</link>
      <description>&lt;P&gt;Thanks - I updated the answer...&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2016 19:35:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168535#M33088</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2016-05-20T19:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168536#M33089</link>
      <description>&lt;P&gt;Hi...&lt;/P&gt;

&lt;P&gt;I am using splunk 6.4.3 I used the code as below but the image is not loading. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row&amp;gt;
   &amp;lt;html&amp;gt;
     &amp;lt;img src="/opt/splunk/Pictures/logo.png"/&amp;gt;
    &amp;lt;/html&amp;gt;
   &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Aug 2016 14:26:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168536#M33089</guid>
      <dc:creator>yasinmoha</dc:creator>
      <dc:date>2016-08-31T14:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168537#M33090</link>
      <description>&lt;P&gt;I downvoted this post because not working in verion 6.5.1&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 04:38:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168537#M33090</guid>
      <dc:creator>hoanlq</dc:creator>
      <dc:date>2016-12-01T04:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168538#M33091</link>
      <description>&lt;P&gt;Hi @hoaniq - I certainly have enough karma to sustain a few downvotes. But since you are new to the forum,  here is a pointer to our discussion on &lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/244111/proper-etiquette-and-timing-for-voting-here-on-ans.html"&gt;https://answers.splunk.com/answers/244111/proper-etiquette-and-timing-for-voting-here-on-ans.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;And although it is true that my answer does not work in 6.5.1, you are going to be very very busy if you intend to downvote every answer since 2014 that is no longer valid.&lt;/P&gt;

&lt;P&gt;But thank you for pointing out that this answer no longer works. It would be even better if you submitted a comment that requested an updated answer - best would be if you submitted updated information about "what no longer works."&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2016 19:50:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168538#M33091</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2016-12-02T19:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168539#M33092</link>
      <description>&lt;P&gt;&lt;STRONG&gt;New answer for 6.5&lt;/STRONG&gt;&lt;BR /&gt;
It is now necessary to place your images in the following directory:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$SPLUNK_HOME/etc/apps/YOURAPP/appserver/static/images
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and refer to it in your HTML like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Lisa Test&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;See if html panels work&amp;lt;/description&amp;gt;
 &amp;lt;row&amp;gt;
   &amp;lt;html&amp;gt;
     &amp;lt;h1&amp;gt;HTML Panel Example&amp;lt;/h1&amp;gt;
     &amp;lt;p&amp;gt;The HTML panel displays inline HTML.&amp;lt;/p&amp;gt;
       &amp;lt;pre&amp;gt;&amp;lt;img src="/static/app/YOURAPP/yourimage.png"/&amp;gt;&amp;lt;/pre&amp;gt;
    &amp;lt;/html&amp;gt;
   &amp;lt;/row&amp;gt;
 &amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you are having problems, test that your image is accessible this way:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&lt;A href="http://yourserver:8000/en-US/static/app/YOURAPP/images/yourimage.png" target="test_blank"&gt;http://yourserver:8000/en-US/static/app/YOURAPP/images/yourimage.png&lt;/A&gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Note that this is case-sensitive (as was mentioned in another comment). If your file is myimage.JPG, then you must use JPG and not jpg in the html.&lt;/P&gt;

&lt;P&gt;So the problem with the earlier answer is that the images subdirectory is now required. I believe that you had more flexibility in where to locate the images in earlier versions of Splunk.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2016 19:55:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168539#M33092</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2016-12-02T19:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168540#M33093</link>
      <description>&lt;P&gt;Oops - maybe the images subdirectory isn't required. My colleague was able to use the appserver/static directory without the images subdirectory.&lt;/P&gt;

&lt;P&gt;But at any rate, test to see if the image is accessible.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2016 01:15:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168540#M33093</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2016-12-03T01:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168541#M33094</link>
      <description>&lt;P&gt;Two more cents for those reading this path through the versions.    If you use a developer tool view (avail in every browser) you'll see that Splunk is looking for the path within the structure of SPlunk. (hidden in the Framework is a relative path) so the /opt/splunk/pictures... is never going to work because /opt is meant to mean "relative to the server" and everything in Splunk is relative to $SPLUNK_HOME and on top of that we've got our own Splunkie path structure (note Lisa has "app" not "apps" so it' isn't the file path) which you must follow. you can add or not add further subdirectories. The best resource to understand how this stuff works is by picking apart the Dashboard Examples App...   which you should download with each version (because it will get upgraded  on splunkbase and is meant to be used with the most current version) &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If you were going to offer pictures to  your users to put in their dashboards you would want to create a new app and put the pictures there. Adding directories to the $SPLUNK_HOME directory is just a bad idea.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 21:33:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168541#M33094</guid>
      <dc:creator>rsennett_splunk</dc:creator>
      <dc:date>2016-12-16T21:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168542#M33095</link>
      <description>&lt;P&gt;Should be possible to use a network link for the image?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 15:34:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168542#M33095</guid>
      <dc:creator>arkonner</dc:creator>
      <dc:date>2017-02-09T15:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168543#M33096</link>
      <description>&lt;P&gt;Here is another example that I hope helps someone else out. I was wrestling with this for a little while because my images were appearing broken on my dashboard after editing the source XML. &lt;/P&gt;

&lt;P&gt;Authentication Dashboard&lt;BR /&gt;
        &lt;ROW&gt;&lt;PANEL&gt;&lt;BR /&gt;
        &lt;IMG src="https://community.splunk.com/static/app/MYAPPNAME//images/password_protected.jpeg" /&gt;&lt;BR /&gt;
       &lt;/PANEL&gt;&lt;/ROW&gt;&lt;BR /&gt;
       &lt;ROW&gt;&lt;BR /&gt;
    &lt;PANEL&gt;&lt;/PANEL&gt;&lt;/ROW&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 13:01:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168543#M33096</guid>
      <dc:creator>Sahrtex23</dc:creator>
      <dc:date>2017-05-23T13:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168544#M33097</link>
      <description>&lt;P&gt;rsennett is onto it, but here's a simplified version:&lt;/P&gt;

&lt;P&gt;The path you put in the code, has &lt;EM&gt;nothing&lt;/EM&gt; to do with reality. Just accept it and go with this in your XML code:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&amp;lt;img src="/static/app/search/images/picture.jpg"/&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;And put the image here:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;/opt/splunk/etc/apps/search/static/images/picture.jpg&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Why this works, I don't know, nor do I care anymore.&lt;BR /&gt;
...that's another two hours of my life I'll never get back, thanks to incomplete, wrong, and convoluted Splunk Community "answers". Hopefully this will save someone else the trouble.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 18:08:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168544#M33097</guid>
      <dc:creator>Michael</dc:creator>
      <dc:date>2017-06-29T18:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168545#M33098</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;if you are placing your image in $SPLUNK_HOME/etc/apps/test/appserver/static/&lt;STRONG&gt;image.png&lt;/STRONG&gt; &lt;BR /&gt;
then html tag would be &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;img src="/static/app/test/image.png"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;if you are placing your image in $SPLUNK_HOME/etc/apps/test/appserver/static/images/image.png&lt;BR /&gt;
then html tag would be &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;img src="/static/app/test/images/image.png"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Mar 2018 06:45:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168545#M33098</guid>
      <dc:creator>thambisetty</dc:creator>
      <dc:date>2018-03-14T06:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168546#M33099</link>
      <description>&lt;P&gt;Thanks a lot Iguinn!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 12:55:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168546#M33099</guid>
      <dc:creator>nkankur</dc:creator>
      <dc:date>2018-03-14T12:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168547#M33100</link>
      <description>&lt;P&gt;Did you figure out the solution? even i am facing the same&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:07:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168547#M33100</guid>
      <dc:creator>manikyasandeepg</dc:creator>
      <dc:date>2018-08-07T13:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add Picture to Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168548#M33101</link>
      <description>&lt;P&gt;Thank you! This worked for me!&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 21:00:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-Picture-to-Dashboard/m-p/168548#M33101</guid>
      <dc:creator>brhicke747</dc:creator>
      <dc:date>2020-05-20T21:00:06Z</dc:date>
    </item>
  </channel>
</rss>

