<?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 How to chart each data point by another field without any stats function transformation? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114121#M30134</link>
    <description>&lt;P&gt;I think I'm having a brain fart. I want to chart each data point by an address. I don't want (avg, sum, max, min, etc). I want a point on a chart for each dataset. What command am I'm missing?  I tried  &lt;SEARCH&gt; | chart values(DATA) by address   ...and all I get is all the data in a block per address.  &lt;/SEARCH&gt;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;data address&lt;/P&gt;

&lt;P&gt;1 address-a&lt;/P&gt;

&lt;P&gt;2 address-a&lt;/P&gt;

&lt;P&gt;3 address-a&lt;/P&gt;

&lt;P&gt;1 address-b&lt;/P&gt;

&lt;P&gt;2 address-b&lt;/P&gt;

&lt;P&gt;3 address-b&lt;/P&gt;</description>
    <pubDate>Sun, 07 Sep 2014 15:12:40 GMT</pubDate>
    <dc:creator>albyva</dc:creator>
    <dc:date>2014-09-07T15:12:40Z</dc:date>
    <item>
      <title>How to chart each data point by another field without any stats function transformation?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114121#M30134</link>
      <description>&lt;P&gt;I think I'm having a brain fart. I want to chart each data point by an address. I don't want (avg, sum, max, min, etc). I want a point on a chart for each dataset. What command am I'm missing?  I tried  &lt;SEARCH&gt; | chart values(DATA) by address   ...and all I get is all the data in a block per address.  &lt;/SEARCH&gt;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;data address&lt;/P&gt;

&lt;P&gt;1 address-a&lt;/P&gt;

&lt;P&gt;2 address-a&lt;/P&gt;

&lt;P&gt;3 address-a&lt;/P&gt;

&lt;P&gt;1 address-b&lt;/P&gt;

&lt;P&gt;2 address-b&lt;/P&gt;

&lt;P&gt;3 address-b&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 15:12:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114121#M30134</guid>
      <dc:creator>albyva</dc:creator>
      <dc:date>2014-09-07T15:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart each data point by another field without any stats function transformation?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114122#M30135</link>
      <description>&lt;P&gt;What do your events look like, and what should the resulting chart look like?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 15:21:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114122#M30135</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-09-07T15:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart each data point by another field without any stats function transformation?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114123#M30136</link>
      <description>&lt;P&gt;Each event is timestamped. Specifically it's the "oddsets" from an NTP log. I want my chart to plot a point for each offset by the address. So that over time you can see the offset changes for each address that is reported.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 15:27:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114123#M30136</guid>
      <dc:creator>albyva</dc:creator>
      <dc:date>2014-09-07T15:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart each data point by another field without any stats function transformation?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114124#M30137</link>
      <description>&lt;P&gt;If you really want a point for each event then you can do something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;base search | xyseries _time address data
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I think that's an ugly approach though, mostly because that does not give you a linear time x-axis. Silence in your data disappears in the chart instead of displaying space for that silence.&lt;/P&gt;

&lt;P&gt;Do you really &lt;EM&gt;need&lt;/EM&gt; a point for each event? Maybe you just want more points than you get by default (up to 100), consider increasing that like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;base search | timechart bins=500 avg(data) by address
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Interested in high values, but don't want to be misled by single huge maximums? Consider using a percentile function such as &lt;CODE&gt;p95(data)&lt;/CODE&gt; that gives you the 95th percentile value for each time bucket, an often more useful "high" value than a simple &lt;CODE&gt;max()&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;If you have drilldowns into single addresses you could consider putting &lt;CODE&gt;max(data) avg(data) min(data)&lt;/CODE&gt; into one chart... just don't do that &lt;CODE&gt;by address&lt;/CODE&gt; for many addresses though, the chart would get very messy.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 18:12:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114124#M30137</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-09-07T18:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart each data point by another field without any stats function transformation?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114125#M30138</link>
      <description>&lt;P&gt;Thanks..  The xyseries is just what I was looking for... The timechart or chart means I still have to look at my data as average, max, etc and I wanted the actual value and nothing else.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 18:23:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-each-data-point-by-another-field-without-any-stats/m-p/114125#M30138</guid>
      <dc:creator>albyva</dc:creator>
      <dc:date>2014-09-07T18:23:13Z</dc:date>
    </item>
  </channel>
</rss>

