<?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: How do I display values over the last 24 hours? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208126#M60681</link>
    <description>&lt;P&gt;Thanks for the reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; see the attached screen shot i seem to be getting the data into the fields but i cant graph it for my dashboard&lt;/P&gt;

&lt;P&gt;any ideas ?&lt;/P&gt;

&lt;P&gt;Many thanks as always&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/636i88FAA844FB4F9347/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt; &lt;/P&gt;</description>
    <pubDate>Mon, 21 Sep 2015 23:24:40 GMT</pubDate>
    <dc:creator>loggeruk</dc:creator>
    <dc:date>2015-09-21T23:24:40Z</dc:date>
    <item>
      <title>How do I display values over the last 24 hours?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208123#M60678</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;

&lt;P&gt;I am trying to display the value of "002:emailsqu=33" over the last 24 hours and then graph it. The log comes in to the system every 180seconds&lt;/P&gt;

&lt;P&gt;Date=Wednesday, September 9, 2015 3:10:37 PM&lt;BR /&gt;
Location=ImageNowProduction&lt;BR /&gt;
001:sizebundle=21&lt;BR /&gt;
002:emailsqu=33&lt;BR /&gt;
003:createdocumentqu=44&lt;/P&gt;

&lt;P&gt;Many Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 15:47:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208123#M60678</guid>
      <dc:creator>loggeruk</dc:creator>
      <dc:date>2015-09-09T15:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do I display values over the last 24 hours?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208124#M60679</link>
      <description>&lt;P&gt;Hi @loggeruk,&lt;BR /&gt;
I'm a tech writer here at Splunk and I'd like to help. If I'm understanding your question, it sounds like you might want to run a query using a command like "timechart" to aggregate on the "002:emailsqu=33" field in your data , with  the time picker set to "Last 24 hours". You can then set up a visualization, such as a line graph, to visualize the results.&lt;/P&gt;

&lt;P&gt;Here are some resources that might help:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchReference/Timechart"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchReference/Timechart&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchTutorial/Aboutthetimerangepicker"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchTutorial/Aboutthetimerangepicker&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/Viz/ChartConfigurationReference#Area.2C_Bubble.2C_Bar.2C_Column.2C_Line.2C_and_Scatter_charts"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.5/Viz/ChartConfigurationReference#Area.2C_Bubble.2C_Bar.2C_Column.2C_Line.2C_and_Scatter_charts&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I hope this helps! If not, let me know and we can keep discussing.&lt;/P&gt;

&lt;P&gt;All the best,&lt;BR /&gt;
@frobinson_splunk&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 16:23:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208124#M60679</guid>
      <dc:creator>frobinson_splun</dc:creator>
      <dc:date>2015-09-09T16:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I display values over the last 24 hours?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208125#M60680</link>
      <description>&lt;P&gt;If emailsqu is already extracted as a field:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;earliest=-24h sourcetype=foo emailsqu=* | table emailsqu _time 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;earliest=-24h sourcetype=foo  emailsqu=* | timechart span=2m max(emailsqu) as emailsqu
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or you could use a different span and use &lt;CODE&gt;avg&lt;/CODE&gt; instead of max for example.&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;If emailsqu is not extracted as a field:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   earliest=-24h sourcetype=foo | rex "emailsqu=(?&amp;lt;emailsqu&amp;gt;.*) | table emailsqu _time 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   earliest=-24h sourcetype=foo | rex "emailsqu=(?&amp;lt;emailsqu&amp;gt;.*) | timechart span=2m max(emailsqu) as emailsqu
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Sep 2015 16:28:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208125#M60680</guid>
      <dc:creator>aljohnson_splun</dc:creator>
      <dc:date>2015-09-09T16:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I display values over the last 24 hours?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208126#M60681</link>
      <description>&lt;P&gt;Thanks for the reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; see the attached screen shot i seem to be getting the data into the fields but i cant graph it for my dashboard&lt;/P&gt;

&lt;P&gt;any ideas ?&lt;/P&gt;

&lt;P&gt;Many thanks as always&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/636i88FAA844FB4F9347/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 23:24:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208126#M60681</guid>
      <dc:creator>loggeruk</dc:creator>
      <dc:date>2015-09-21T23:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I display values over the last 24 hours?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208127#M60682</link>
      <description>&lt;P&gt;try &lt;CODE&gt;timechart&lt;/CODE&gt; instead of &lt;CODE&gt;table&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; .... | timechart values(textbehindocrdcg2) AS textbehindocrdcg2 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 23:38:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208127#M60682</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-09-21T23:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I display values over the last 24 hours?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208128#M60683</link>
      <description>&lt;P&gt;I used the Pivot function with the MEDIAN option in the end, seems to be working well. Thanks for all the replies &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2015 22:12:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-display-values-over-the-last-24-hours/m-p/208128#M60683</guid>
      <dc:creator>loggeruk</dc:creator>
      <dc:date>2015-09-25T22:12:41Z</dc:date>
    </item>
  </channel>
</rss>

