<?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 Getting Max value over time in report in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454689#M7341</link>
    <description>&lt;P&gt;I have a report that I'm having trouble making it do what I want it to.&lt;/P&gt;

&lt;P&gt;It essentially reports 3 values, time of first event.  servername, timevalueinmillisec&lt;/P&gt;

&lt;P&gt;I can easily use table Time, server, ms and it works but of course gives me every event.&lt;/P&gt;

&lt;P&gt;What I want is exactly this but I want the Maximum value of ms over 30 minutes.&lt;/P&gt;

&lt;P&gt;It was proposed to me to use &lt;/P&gt;

&lt;P&gt;timechart span=30m max(ms) as MS by server&lt;/P&gt;

&lt;P&gt;and this of course returns the  correct values, but it gives me a separate column for each server and then that max value in the row, like this....&lt;/P&gt;

&lt;P&gt;_time                          sxx0045             sxx0048             p09ps0046                   p09ps0049&lt;BR /&gt;
2019-08-20 10:00:00 0.30                     0.11                           0.47                               0.33&lt;/P&gt;

&lt;P&gt;What I want ultimately should look like this&lt;/P&gt;

&lt;P&gt;Time                                Server                          ms&lt;BR /&gt;
10:29:31 08/20/2019 sxx0045                       0.30&lt;BR /&gt;
10:29:37 08/20/2019 sxx0048                       0.11&lt;BR /&gt;
10:30:02 08/20/2019 sxx0046                       0.47&lt;BR /&gt;
10:30:16 08/20/2019 sxx0049                       0.33&lt;/P&gt;

&lt;P&gt;Can anyone assist?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 20 Aug 2019 15:48:28 GMT</pubDate>
    <dc:creator>tsheets13</dc:creator>
    <dc:date>2019-08-20T15:48:28Z</dc:date>
    <item>
      <title>Getting Max value over time in report</title>
      <link>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454689#M7341</link>
      <description>&lt;P&gt;I have a report that I'm having trouble making it do what I want it to.&lt;/P&gt;

&lt;P&gt;It essentially reports 3 values, time of first event.  servername, timevalueinmillisec&lt;/P&gt;

&lt;P&gt;I can easily use table Time, server, ms and it works but of course gives me every event.&lt;/P&gt;

&lt;P&gt;What I want is exactly this but I want the Maximum value of ms over 30 minutes.&lt;/P&gt;

&lt;P&gt;It was proposed to me to use &lt;/P&gt;

&lt;P&gt;timechart span=30m max(ms) as MS by server&lt;/P&gt;

&lt;P&gt;and this of course returns the  correct values, but it gives me a separate column for each server and then that max value in the row, like this....&lt;/P&gt;

&lt;P&gt;_time                          sxx0045             sxx0048             p09ps0046                   p09ps0049&lt;BR /&gt;
2019-08-20 10:00:00 0.30                     0.11                           0.47                               0.33&lt;/P&gt;

&lt;P&gt;What I want ultimately should look like this&lt;/P&gt;

&lt;P&gt;Time                                Server                          ms&lt;BR /&gt;
10:29:31 08/20/2019 sxx0045                       0.30&lt;BR /&gt;
10:29:37 08/20/2019 sxx0048                       0.11&lt;BR /&gt;
10:30:02 08/20/2019 sxx0046                       0.47&lt;BR /&gt;
10:30:16 08/20/2019 sxx0049                       0.33&lt;/P&gt;

&lt;P&gt;Can anyone assist?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 15:48:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454689#M7341</guid>
      <dc:creator>tsheets13</dc:creator>
      <dc:date>2019-08-20T15:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Max value over time in report</title>
      <link>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454690#M7342</link>
      <description>&lt;P&gt;I should Add, though my example results don't how this, Only want resulting columns for every half hour, since the output I'm looking for is the max(ms) over span of 30m.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 17:09:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454690#M7342</guid>
      <dc:creator>tsheets13</dc:creator>
      <dc:date>2019-08-20T17:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Max value over time in report</title>
      <link>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454691#M7343</link>
      <description>&lt;P&gt;After your search use the &lt;CODE&gt;untable&lt;/CODE&gt; command.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;your search... | untable _time server ms&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;More for the docs:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Untable"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Untable&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 17:22:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454691#M7343</guid>
      <dc:creator>diogofgm</dc:creator>
      <dc:date>2019-08-20T17:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Max value over time in report</title>
      <link>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454692#M7344</link>
      <description>&lt;P&gt;here you go :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search .. | bin _time span=30m | stats max(ms) as MS by server _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;let me know if this helps!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 19:24:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Getting-Max-value-over-time-in-report/m-p/454692#M7344</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2019-08-20T19:24:17Z</dc:date>
    </item>
  </channel>
</rss>

