<?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: Anyone help me in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546338#M37552</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231801"&gt;@Dhanaskv&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;your request is just a little vague...&lt;/P&gt;&lt;P&gt;Anyway, supposing that you already have the data in an index (otherwise you have to start from the beginning your approach to Splunk), you have to create the main search to use both for the dashboard and the alert.&lt;/P&gt;&lt;P&gt;Remember that everything in Splunk starts from a search!&lt;/P&gt;&lt;P&gt;so you have to find your search having something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| table InstanceID InstanceType CPUCreditBalance&lt;/LI-CODE&gt;&lt;P&gt;(I suppose that you already extracted fields, otherwise you have to do this before.)&lt;/P&gt;&lt;P&gt;Taking the above search you can save it in a dashboard's panel, adding also some filter; in this way&amp;nbsp;&amp;nbsp;you have your dashboard, that you could also enrich adding some statistics (e.g. a pie chart or an Histogram) from the same main search, something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| stats count BY InstanceType &lt;/LI-CODE&gt;&lt;P&gt;or&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| bin CPUCreditBalance span=5
| stats count BY CPUCreditBalance&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;About the alert, you can use the same search adding a condition:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| table InstanceID InstanceType CPUCreditBalance
| where CPUCreditBalance&amp;lt;30&lt;/LI-CODE&gt;&lt;P&gt;and saving it as an alert configured to send an eMail; to do this you have to follow the guided procedure after "Save as an alert".&lt;/P&gt;&lt;P&gt;At the end I hint to follow the Splunk Search Tutorial&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchTutorial/WelcometotheSearchTutorial" target="_blank"&gt;https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchTutorial/WelcometotheSearchTutorial&lt;/A&gt;&amp;nbsp;and the Splunk Fundamentals I training (it's free with the exception of the Certification Exam) (&lt;A href="https://www.splunk.com/en_us/training/free-courses/splunk-fundamentals-1.html" target="_blank"&gt;https://www.splunk.com/en_us/training/free-courses/splunk-fundamentals-1.html&lt;/A&gt;) then you can find many interesting videos on YouTube.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Thu, 01 Apr 2021 08:00:50 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2021-04-01T08:00:50Z</dc:date>
    <item>
      <title>Anyone help me</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546337#M37551</link>
      <description>&lt;DIV class="lia-note-subject"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-note-description"&gt;&lt;DIV class="lia-note-body"&gt;&lt;P&gt;My task&lt;/P&gt;&lt;P&gt;1. Prepare a new dashboard that shows the following:&lt;/P&gt;&lt;P&gt;2. Need to shows the new dashboard ----&amp;gt; InstanceID, InstanceType,CPUCreditBalance&lt;/P&gt;&lt;P&gt;3.I need to write a Splunk alert on a condition like&lt;/P&gt;&lt;P&gt;4. CPU credit balance &amp;lt; 30 then send alert email&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 01 Apr 2021 07:33:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546337#M37551</guid>
      <dc:creator>Dhanaskv</dc:creator>
      <dc:date>2021-04-01T07:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone help me</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546338#M37552</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231801"&gt;@Dhanaskv&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;your request is just a little vague...&lt;/P&gt;&lt;P&gt;Anyway, supposing that you already have the data in an index (otherwise you have to start from the beginning your approach to Splunk), you have to create the main search to use both for the dashboard and the alert.&lt;/P&gt;&lt;P&gt;Remember that everything in Splunk starts from a search!&lt;/P&gt;&lt;P&gt;so you have to find your search having something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| table InstanceID InstanceType CPUCreditBalance&lt;/LI-CODE&gt;&lt;P&gt;(I suppose that you already extracted fields, otherwise you have to do this before.)&lt;/P&gt;&lt;P&gt;Taking the above search you can save it in a dashboard's panel, adding also some filter; in this way&amp;nbsp;&amp;nbsp;you have your dashboard, that you could also enrich adding some statistics (e.g. a pie chart or an Histogram) from the same main search, something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| stats count BY InstanceType &lt;/LI-CODE&gt;&lt;P&gt;or&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| bin CPUCreditBalance span=5
| stats count BY CPUCreditBalance&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;About the alert, you can use the same search adding a condition:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| table InstanceID InstanceType CPUCreditBalance
| where CPUCreditBalance&amp;lt;30&lt;/LI-CODE&gt;&lt;P&gt;and saving it as an alert configured to send an eMail; to do this you have to follow the guided procedure after "Save as an alert".&lt;/P&gt;&lt;P&gt;At the end I hint to follow the Splunk Search Tutorial&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchTutorial/WelcometotheSearchTutorial" target="_blank"&gt;https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchTutorial/WelcometotheSearchTutorial&lt;/A&gt;&amp;nbsp;and the Splunk Fundamentals I training (it's free with the exception of the Certification Exam) (&lt;A href="https://www.splunk.com/en_us/training/free-courses/splunk-fundamentals-1.html" target="_blank"&gt;https://www.splunk.com/en_us/training/free-courses/splunk-fundamentals-1.html&lt;/A&gt;) then you can find many interesting videos on YouTube.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 08:00:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546338#M37552</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-04-01T08:00:50Z</dc:date>
    </item>
    <item>
      <title>Thanks for your response @gcusello</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546342#M37554</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Yes , already have the data in an index&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 08:46:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Anyone-help-me/m-p/546342#M37554</guid>
      <dc:creator>Dhanaskv</dc:creator>
      <dc:date>2021-04-01T08:46:47Z</dc:date>
    </item>
  </channel>
</rss>

