<?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 Line Chart  with a day wise usage count in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326041#M40283</link>
    <description>&lt;P&gt;I want to know how frequently a keyword is found(from the list of events)  and see it in a time chart.&lt;BR /&gt;
This is the search I am using, I am not sure if I am using it correct .&lt;BR /&gt;
And there is a null line found in the line chart. &lt;/P&gt;

&lt;P&gt;host= "HostA" or "HostB" "videostreamed"&lt;BR /&gt;
| eval view=if(like(_raw,"%videostreamed%"),"Prime_Streamed"&lt;BR /&gt;
| timechart span=1d count by view&lt;/P&gt;

&lt;P&gt;I want to know the amount of events generated with the key word "videostreamed"  based on the base-search I have, on a daily basis in a line chart. &lt;BR /&gt;
Example : if the linechart has a spike on Monday, It should mean  more events found with the videostreamed &lt;BR /&gt;
The more the number of events, the higher is the usage that day.&lt;/P&gt;

&lt;P&gt;I hope I am clear with my explanation&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 17:07:43 GMT</pubDate>
    <dc:creator>zacksoft</dc:creator>
    <dc:date>2020-09-29T17:07:43Z</dc:date>
    <item>
      <title>Line Chart  with a day wise usage count</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326041#M40283</link>
      <description>&lt;P&gt;I want to know how frequently a keyword is found(from the list of events)  and see it in a time chart.&lt;BR /&gt;
This is the search I am using, I am not sure if I am using it correct .&lt;BR /&gt;
And there is a null line found in the line chart. &lt;/P&gt;

&lt;P&gt;host= "HostA" or "HostB" "videostreamed"&lt;BR /&gt;
| eval view=if(like(_raw,"%videostreamed%"),"Prime_Streamed"&lt;BR /&gt;
| timechart span=1d count by view&lt;/P&gt;

&lt;P&gt;I want to know the amount of events generated with the key word "videostreamed"  based on the base-search I have, on a daily basis in a line chart. &lt;BR /&gt;
Example : if the linechart has a spike on Monday, It should mean  more events found with the videostreamed &lt;BR /&gt;
The more the number of events, the higher is the usage that day.&lt;/P&gt;

&lt;P&gt;I hope I am clear with my explanation&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:07:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326041#M40283</guid>
      <dc:creator>zacksoft</dc:creator>
      <dc:date>2020-09-29T17:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart  with a day wise usage count</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326042#M40284</link>
      <description>&lt;P&gt;I think that this alone is good.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host= "HostA" or "HostB" "videostreamed"
| timechart span=1d count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Do you also need a number that does not match?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 11:06:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326042#M40284</guid>
      <dc:creator>HiroshiSatoh</dc:creator>
      <dc:date>2017-12-04T11:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart  with a day wise usage count</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326043#M40285</link>
      <description>&lt;P&gt;yes, That would help too.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 11:08:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326043#M40285</guid>
      <dc:creator>zacksoft</dc:creator>
      <dc:date>2017-12-04T11:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart  with a day wise usage count</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326044#M40286</link>
      <description>&lt;P&gt;You may want to consider assigning a number to it.&lt;BR /&gt;
&lt;CODE&gt;index=* | eval Text_Found = if(like(_raw,"%GET%"),"1","0") | where Text_Found=1 | timechart span=1m count by Text_Found&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:07:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326044#M40286</guid>
      <dc:creator>ppuru</dc:creator>
      <dc:date>2020-09-29T17:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart  with a day wise usage count</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326045#M40287</link>
      <description>&lt;P&gt;I think this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host= "HostA" or "HostB" 
| timechart span=1d count count(eval(searchmatch("videostreamed"))) AS Prime_Streamed BY view
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or, probably you'd like this better:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host= "HostA" or "HostB" 
| bucket _time span=1d 
| stats count count(eval(searchmatch("videostreamed"))) AS Prime_Streamed BY view_time
| eval pct = 100 * Prime_Streamed / count
| timechart span=1d avg(pct) AS pct BY view
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 05 Dec 2017 03:12:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Line-Chart-with-a-day-wise-usage-count/m-p/326045#M40287</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-12-05T03:12:45Z</dc:date>
    </item>
  </channel>
</rss>

