<?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 help on append command in a line chart in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676700#M18608</link>
    <description>&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;I need to display 2 curves in my line chart from two different index&lt;/P&gt;&lt;P&gt;so i am doing this :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="disk" sourcetype="Perfmon:disk" 
| bin span=10m _time 
| eval time=strftime(_time, "%H:%M:%S") 
| stats avg(Value) as Disque by time 
| eval Disque=round(Disque, 2) 
| append
    [ search index="mem" sourcetype="Perfmon:mem" 
    | bin span=10m _time 
    | eval time=strftime(_time, "%H:%M:%S") 
    | stats avg(Value) as Mémoire by time 
    | eval Mémoire=round(Mémoire, 2)]&lt;/LI-CODE&gt;&lt;P&gt;the problem I have is that on the x axis my curves are not aligned on the same time slot&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jip31_0-1707207151990.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29260i8744AE37B5502BF6/image-size/large?v=v2&amp;amp;px=999" role="button" title="jip31_0-1707207151990.png" alt="jip31_0-1707207151990.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;what is wrong please?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2024 08:13:38 GMT</pubDate>
    <dc:creator>jip31</dc:creator>
    <dc:date>2024-02-06T08:13:38Z</dc:date>
    <item>
      <title>help on append command in a line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676700#M18608</link>
      <description>&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;I need to display 2 curves in my line chart from two different index&lt;/P&gt;&lt;P&gt;so i am doing this :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="disk" sourcetype="Perfmon:disk" 
| bin span=10m _time 
| eval time=strftime(_time, "%H:%M:%S") 
| stats avg(Value) as Disque by time 
| eval Disque=round(Disque, 2) 
| append
    [ search index="mem" sourcetype="Perfmon:mem" 
    | bin span=10m _time 
    | eval time=strftime(_time, "%H:%M:%S") 
    | stats avg(Value) as Mémoire by time 
    | eval Mémoire=round(Mémoire, 2)]&lt;/LI-CODE&gt;&lt;P&gt;the problem I have is that on the x axis my curves are not aligned on the same time slot&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jip31_0-1707207151990.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29260i8744AE37B5502BF6/image-size/large?v=v2&amp;amp;px=999" role="button" title="jip31_0-1707207151990.png" alt="jip31_0-1707207151990.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;what is wrong please?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 08:13:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676700#M18608</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2024-02-06T08:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: help on append command in a line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676710#M18609</link>
      <description>&lt;P&gt;You need to get&amp;nbsp; your stats into the same events. Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="disk" sourcetype="Perfmon:disk" 
| bin span=10m _time 
| eval time=strftime(_time, "%H:%M:%S") 
| rename Value as Disque 
| append
    [ search index="mem" sourcetype="Perfmon:mem" 
    | bin span=10m _time 
    | eval time=strftime(_time, "%H:%M:%S") 
    | rename Value as Mémoire]
| stats avg(Disque) as Disque avg(Mémoire) as Mémoire by time 
| eval Disque=round(Disque, 2) 
| eval Mémoire=round(Mémoire, 2)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 06 Feb 2024 09:20:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676710#M18609</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-06T09:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: help on append command in a line chart</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676734#M18612</link>
      <description>&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 13:04:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/help-on-append-command-in-a-line-chart/m-p/676734#M18612</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2024-02-06T13:04:51Z</dc:date>
    </item>
  </channel>
</rss>

