<?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: Report and a dashboard in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418666#M9662</link>
    <description>&lt;P&gt;@viji261992&lt;/P&gt;

&lt;P&gt;Can you please share sample events?&lt;/P&gt;</description>
    <pubDate>Sat, 06 Oct 2018 08:20:00 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2018-10-06T08:20:00Z</dc:date>
    <item>
      <title>Report and a dashboard</title>
      <link>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418665#M9661</link>
      <description>&lt;P&gt;Our splunk is receiving events from network devices, which contains hostname, eventuei="error reason", eventtime.&lt;BR /&gt;
1. I need to create a report which display the hostname, corresponding error reason , eventtime and no. of alerts generated&lt;BR /&gt;
2. I need to create a dashboard with device name in the x-axis no. of alerts in the y-axis&lt;BR /&gt;
3. A complete dashboard which shows total no. of hosts in my company, no. of hosts working fine, no. of hosts are down based on error reason&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 07:57:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418665#M9661</guid>
      <dc:creator>viji261992</dc:creator>
      <dc:date>2018-10-06T07:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Report and a dashboard</title>
      <link>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418666#M9662</link>
      <description>&lt;P&gt;@viji261992&lt;/P&gt;

&lt;P&gt;Can you please share sample events?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 08:20:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418666#M9662</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-10-06T08:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Report and a dashboard</title>
      <link>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418667#M9663</link>
      <description>&lt;P&gt;2018-10-06 08:33:04.248, eventid="160109240", eventuei="uei.opennms.org/XOM/threshold/wan_routers/int-rx-util-rearm", nodeid="15925", eventtime="2018-10-06 08:33:04.248", ipaddr="x.x.x.x", eventlogmsg="Interface Gi2/0/2 on GQEGJ-WANRTC002 RX (58.21%) exceeded threshold has cleared", eventseverity="3", alarmid="24607406", nodelabel="GQEGJ-WANRTC002"&lt;/P&gt;

&lt;P&gt;This is the log that we are getting from our tools&lt;BR /&gt;
Search : index=opennms sourcetype=event&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 08:36:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418667#M9663</guid>
      <dc:creator>viji261992</dc:creator>
      <dc:date>2018-10-06T08:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Report and a dashboard</title>
      <link>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418668#M9664</link>
      <description>&lt;P&gt;@viji261992&lt;/P&gt;

&lt;P&gt;Can you please describe below fields? I need hostname , device name and correlation idea as per your requirement. &lt;/P&gt;

&lt;P&gt;alarmid&lt;BR /&gt;
eventid&lt;BR /&gt;
eventlogmsg&lt;BR /&gt;
eventseverity&lt;BR /&gt;
eventtime&lt;BR /&gt;
eventuei&lt;BR /&gt;
ipaddr&lt;BR /&gt;
nodeid&lt;BR /&gt;
nodelabel&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 08:56:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418668#M9664</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-10-06T08:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Report and a dashboard</title>
      <link>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418669#M9665</link>
      <description>&lt;OL&gt;
&lt;LI&gt;&lt;CODE&gt;index=opennms sourcetype=event | stats values(eval(strftime(_time,"%Y-%m-%dT%H:%M:%S"))) as time_new list(nodeid) as hostname count by eventuei&lt;/CODE&gt;
Note: The assumption here is that you have the hostnames in the field  "nodeid"&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;index=opennms sourcetype=event | stats values(nodeid) as hostname count by eventuei | fields - eventuei&lt;/CODE&gt;
after running this search go to the visualization tab and select chart type as "clolumn chart" and then save it as a dashboard&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;index=opennms sourcetype=event | timechart span=1h distinct_count(nodeid) as hostcount&lt;/CODE&gt; - for "total no. of hosts in my company" save it as a dashboard panel&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;i will look into it again when i have some more time, meanwhile can you check if the above searches work/meet your requirements.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 13:09:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Report-and-a-dashboard/m-p/418669#M9665</guid>
      <dc:creator>soumyasaha25</dc:creator>
      <dc:date>2018-10-09T13:09:21Z</dc:date>
    </item>
  </channel>
</rss>

