<?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: Help creating a dashboard in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197420#M39224</link>
    <description>&lt;P&gt;Great, i was able to use that information to finalize what I wanted.  Not exactly how I wanted it to appear, but it is a good start.&lt;/P&gt;</description>
    <pubDate>Fri, 21 Mar 2014 16:23:36 GMT</pubDate>
    <dc:creator>jaywv6299</dc:creator>
    <dc:date>2014-03-21T16:23:36Z</dc:date>
    <item>
      <title>Help creating a dashboard</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197418#M39222</link>
      <description>&lt;P&gt;I have vmware view data going into splunk and i currently send alerts to an email group if a pooled image (TotalVMs&amp;gt;1) has less then 3 vms available (availableVMs is &amp;lt;3).&lt;/P&gt;

&lt;P&gt;However, i would like to create a dashboard for this to be displayed as well.  Showing a pie chart of TotalVMs/availablevms/busyvms/poweredoffvms.&lt;/P&gt;

&lt;P&gt;All of this information is in one line in splunk, however I have about 20-30 pools (working on consolidation) and would like the dashboard to show all of the pools and a pie chart for each with the status mentioned above.  Here are 3 lines extract from my log upload from vmware view broker.  Any help or direction would be greatly appreciated.&lt;/P&gt;

&lt;P&gt;2014-03-21T07:39:28.585-05:00 DEBUG (0A38-115C) &lt;PROPAGATE-440B5DC7-98D3-4CC0-A875-234817D5DF88&gt; [VirtualCenterDriver] Determine actions for cn=image1,ou=server groups,dc=vdi,dc=vmware,dc=int: totalVMs=70, availableVMs=7, zombieVMs=0, busyVMs=56, poweredOffVMs=7, suspendedVMs=0, vmMaximumCount=70, vmMinimumCount=70, vmHeadroomCount=8, customizingVMs=0, errorVMs=0, recentlyRecoveredVMs=0&lt;BR /&gt;
host=Viewbroker   Options|  sourcetype=vmware-view   Options|  source=C:\ProgramData\VMware\VDM\logs\debug-2014-03-21-071859.txt   Options|  availableVMs=7   Options|  totalVMs=70   Options&lt;/PROPAGATE-440B5DC7-98D3-4CC0-A875-234817D5DF88&gt;&lt;/P&gt;

&lt;P&gt;2014-03-21T07:39:28.584-05:00 DEBUG (0A38-115C) &lt;PROPAGATE-440B5DC7-98D3-4CC0-A875-234817D5DF88&gt; [VirtualCenterDriver] Determine actions for cn=image2,ou=server groups,dc=vdi,dc=vmware,dc=int: totalVMs=17, availableVMs=7, zombieVMs=0, busyVMs=10, poweredOffVMs=0, suspendedVMs=0, vmMaximumCount=17, vmMinimumCount=17, vmHeadroomCount=12, customizingVMs=0, errorVMs=0, recentlyRecoveredVMs=0&lt;BR /&gt;
host=Viewbroker   Options|  sourcetype=vmware-view   Options|  source=C:\ProgramData\VMware\VDM\logs\debug-2014-03-21-071859.txt   Options|  availableVMs=7   Options|  totalVMs=17   Options&lt;/PROPAGATE-440B5DC7-98D3-4CC0-A875-234817D5DF88&gt;&lt;/P&gt;

&lt;P&gt;2014-03-21T07:39:28.583-05:00 DEBUG (0A38-115C) &lt;PROPAGATE-440B5DC7-98D3-4CC0-A875-234817D5DF88&gt; [VirtualCenterDriver] Determine actions for cn=image3,ou=server groups,dc=vdi,dc=vmware,dc=int: totalVMs=10, availableVMs=5, zombieVMs=0, busyVMs=1, poweredOffVMs=4, suspendedVMs=0, vmMaximumCount=10, vmMinimumCount=10, vmHeadroomCount=5, customizingVMs=0, errorVMs=0, recentlyRecoveredVMs=0&lt;BR /&gt;
host=Viewbroker   Options|  sourcetype=vmware-view   Options|  source=C:\ProgramData\VMware\VDM\logs\debug-2014-03-21-071859.txt   Options|  availableVMs=5   Options|  totalVMs=10   Options&lt;/PROPAGATE-440B5DC7-98D3-4CC0-A875-234817D5DF88&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2014 12:59:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197418#M39222</guid>
      <dc:creator>jaywv6299</dc:creator>
      <dc:date>2014-03-21T12:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating a dashboard</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197419#M39223</link>
      <description>&lt;P&gt;Simplest options will be to run the searches your have and save it as dashboard panel. &lt;/P&gt;

&lt;P&gt;sample search (Table)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search | stats first(totalVMs) as totalVMs, first(availableVMs) as availableVMs , first(poweredOffVMs) as poweredOffVMs  first(busyVMs) as busyVMs by cn | rename cn as poolName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Piechart: (change the field name in stats to generate pie chart for other fields)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search | stats first(totalVMs) as totalVMs by cn | rename cn as poolName
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Mar 2014 13:10:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197419#M39223</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-03-21T13:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating a dashboard</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197420#M39224</link>
      <description>&lt;P&gt;Great, i was able to use that information to finalize what I wanted.  Not exactly how I wanted it to appear, but it is a good start.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:23:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-creating-a-dashboard/m-p/197420#M39224</guid>
      <dc:creator>jaywv6299</dc:creator>
      <dc:date>2014-03-21T16:23:36Z</dc:date>
    </item>
  </channel>
</rss>

