<?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 Multiple graphs in line chart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350461#M174584</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;

&lt;P&gt;I have a data as below :&lt;BR /&gt;
Where for every callId there are list of values in next column. So I have some 10 callId and for every callId and I have list of values in column 2&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/3075i7CC422350487376B/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Now I want to plot a line chart , for the values in column 2 such that every callId corresponds to a separate line in visualization.&lt;/P&gt;

&lt;P&gt;Can someone please tell me how can we achieve this.&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Shailendra Patil&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2017 22:49:22 GMT</pubDate>
    <dc:creator>patilsh</dc:creator>
    <dc:date>2017-06-19T22:49:22Z</dc:date>
    <item>
      <title>Multiple graphs in line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350461#M174584</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;

&lt;P&gt;I have a data as below :&lt;BR /&gt;
Where for every callId there are list of values in next column. So I have some 10 callId and for every callId and I have list of values in column 2&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/3075i7CC422350487376B/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Now I want to plot a line chart , for the values in column 2 such that every callId corresponds to a separate line in visualization.&lt;/P&gt;

&lt;P&gt;Can someone please tell me how can we achieve this.&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Shailendra Patil&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 22:49:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350461#M174584</guid>
      <dc:creator>patilsh</dc:creator>
      <dc:date>2017-06-19T22:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs in line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350462#M174585</link>
      <description>&lt;P&gt;Add this to the bottom of your existing search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | rename "list(EventData.txt.Levelin)" AS Levelin
| mvexpand Levelin
| streamstats count AS serial BY callId
| chart avg(Levelin) OVER serial BY callId
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Jun 2017 23:01:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350462#M174585</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-06-19T23:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs in line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350463#M174586</link>
      <description>&lt;P&gt;I think you current search ends like this &lt;CODE&gt;..| stats list(entryData.LevelIn) by callId&lt;/CODE&gt;. Instead just use like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search before the stats | stats avg(entryData.LevelIn)  as AvgLevelIn by callId
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Jun 2017 23:21:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350463#M174586</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-06-19T23:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs in line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350464#M174587</link>
      <description>&lt;P&gt;Hey, Thanks for the help,&lt;/P&gt;

&lt;P&gt;But i can just see 100 events for each ID here ?&lt;/P&gt;

&lt;P&gt;Is that a limit ?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 23:27:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350464#M174587</guid>
      <dc:creator>patilsh</dc:creator>
      <dc:date>2017-06-19T23:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs in line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350465#M174588</link>
      <description>&lt;P&gt;index="alpha_all_careport_event" userId="90925fcb-4543-4d9e-87f4-51ab9b4b7cd8"|stats list(eventData.txLevelIn) by callId|rename "list(eventData.txLevelIn)" AS Levelin|mvexpand Levelin|streamstats count AS serial BY callId|chart avg(Levelin) OVER serial BY callId&lt;/P&gt;

&lt;P&gt;This is how it ends , its shows as 352 events , but in table i can see 100 only for each &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:28:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350465#M174588</guid>
      <dc:creator>patilsh</dc:creator>
      <dc:date>2020-09-29T14:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs in line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350466#M174589</link>
      <description>&lt;P&gt;There is a limit on &lt;CODE&gt;list&lt;/CODE&gt; (and &lt;CODE&gt;values&lt;/CODE&gt;) but I think it is 1000, not 100.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 01:04:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multiple-graphs-in-line-chart/m-p/350466#M174589</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-06-20T01:04:00Z</dc:date>
    </item>
  </channel>
</rss>

