<?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: Three different search on single chart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71360#M180834</link>
    <description>&lt;P&gt;Thanks a lot. It worked :).&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jun 2013 05:34:42 GMT</pubDate>
    <dc:creator>ChhayaV</dc:creator>
    <dc:date>2013-06-24T05:34:42Z</dc:date>
    <item>
      <title>Three different search on single chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71357#M180831</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I've three different types of logs.&lt;/P&gt;

&lt;P&gt;Sharepoint:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;04/14/2013 23:51:56.49  wsstracing.exe (0x0B14)                     0x1874  SharePoint Foundation           Unified Logging Service         b9wt    High        Log retention limit reached.  Log file 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS\LNTVANEBPSP-20130404-2321.log' has been deleted.    
  04/14/2013 23:51:56.49    wsstracing.exe (0x0B14)                     0x1874   SharePoint Foundation          Tracing Controller Service      8096    Information Usage log retention limit reached.  Some old usage log files have been deleted.  
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Event logs :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;04/30/2013 04:38:43 PM
LogName=Application
SourceName=MSCRMTracing
EventCode=17203
EventType=2
Type=Error
ComputerName=LnTVanEBPCRM.LnTVan.com
TaskCategory=None
OpCode=None
RecordNumber=24797628
Keywords=Classic
Message=Splunk could not get the description for this event. Either the component that raises this event is not installed on your local computer or the installation is corrupt.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;database log :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2013-04-05 19:29:17.25 spid31s     Starting up database 'msdb'.
2013-04-05 19:29:17.25 spid32s     Starting up database 'ReportServer'.
2013-04-05 19:29:19.47 Logon       Error: 17187, Severity: 16, State: 1.
2013-04-05 19:29:19.47 Logon       SQL Server is not ready to accept new client connections. Wait a few minutes before trying again. If you have access to the error log, look for the informational message that indicates that SQL Server is ready before trying to connect again.  [CLIENT: 192.168.33.61]
  2013-04-05 19:29:19.47 Logon       Error: 17187, Severity: 16, State: 1.
  2013-04-05 19:29:19.47 Logon       SQL Server is not ready to accept new client connections.    Wait a few minutes before trying again. If you have access to the error log, look   for the informational message that indicates that SQL Server is ready before trying to    connect again.  [CLIENT: 192.168.33.61]
  2013-04-05 19:29:22.21 Logon       Error: 17187, Severity: 16, State: 1.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Currently I've done some searches in these 3 and shown charts in 3 different dashboards.&lt;BR /&gt;
Now the question is, can we show the result of all these different searches in a single chart?&lt;/P&gt;

&lt;P&gt;For example&lt;BR /&gt;
single chart showing errors in sharepoint logs, database logs, event logs.?&lt;/P&gt;

&lt;P&gt;Is this possible to do?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2013 13:40:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71357#M180831</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-06-21T13:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Three different search on single chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71358#M180832</link>
      <description>&lt;P&gt;Do you want them it to be in single panel / single dashboard page?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2013 13:52:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71358#M180832</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2013-06-21T13:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Three different search on single chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71359#M180833</link>
      <description>&lt;P&gt;Yes, it can be done in a single chart:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(sourcetype=sharepoint "error") OR (sourcetype=database "error") OR (sourcetype=eventlog "error")
| stats count by sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(sourcetype=sharepoint "error") OR (sourcetype=database "error") OR (sourcetype=eventlog "error")
| timechart count by sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Note that I have combined three very simple searches, but you can substitute your actual three searches into the command instead. If this isn't helpful, perhaps you can share the three searches that you are using now.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2013 22:29:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71359#M180833</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-06-21T22:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Three different search on single chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71360#M180834</link>
      <description>&lt;P&gt;Thanks a lot. It worked :).&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2013 05:34:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Three-different-search-on-single-chart/m-p/71360#M180834</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-06-24T05:34:42Z</dc:date>
    </item>
  </channel>
</rss>

