<?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: Chart timeline of Stages in a Test in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508801#M33870</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223348"&gt;@uptoNoGood&lt;/a&gt;&amp;nbsp;If you refer to screenshot on Splunkbase, one of the splits is the description (and the same split is displayed on left axis as well as tooltip). Also Splunk Built Custom Visualizations always come with example dashboard and similar example is also present in the dashboard.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jul 2020 12:26:02 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2020-07-13T12:26:02Z</dc:date>
    <item>
      <title>Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508270#M33803</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;We have some tests running as part of our CI/CD pipeline. These go through different stages like preparation, execution, report, cleanup etc.. I need to create a time line for these stages per test execution so that user can at any time check the timeline and find out at what stage is the test at.&lt;/P&gt;&lt;P&gt;I have been able to chart duration for stages using :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;search
| rex field=source "job/test-stage-test/(?&amp;lt;build_number&amp;gt;.*)/console"
| stats values(start_time) as startTime values(end_time) as endTime by stage, test, build_number
| eval duration = (endTime-startTime)/1000
| chart avg(duration) by test, stage&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So like the data above i have start time, end time for all stages for every test per build&lt;/P&gt;&lt;P&gt;How do I create timeline for it with y axis as time and stages stacked per test per build on x-axis with bar starting at start time for test and each stage bar starting at its starting time and ending at its end time.&lt;BR /&gt;&lt;BR /&gt;1____test 1 : stage1____&amp;nbsp; &amp;nbsp;_______t1 :stage 2____&amp;nbsp; __t1:stage 3___ _____t2:stage1___&amp;nbsp; ___t3:stage1____&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;____test1:stage1___&amp;nbsp; _______t1:stage2_____&lt;/P&gt;&lt;P&gt;___________________________________________time______________________________________&lt;/P&gt;&lt;P&gt;Is it possible to do this kind of chart, I have tried multiple timechart options but non worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 10:50:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508270#M33803</guid>
      <dc:creator>uptoNoGood</dc:creator>
      <dc:date>2020-07-09T10:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508380#M33830</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223348"&gt;@uptoNoGood&lt;/a&gt;&amp;nbsp; you are possibly looking for&amp;nbsp;&lt;A href="https://splunkbase.splunk.com/app/3120/" target="_self"&gt;Timeline - Custom Visualization&lt;/A&gt; or&amp;nbsp;&lt;A href="https://splunkbase.splunk.com/app/4370/" target="_self"&gt;Event Timeline Viz&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please check out and confirm.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 18:45:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508380#M33830</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-07-09T18:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508422#M33837</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have asked our admin to install both apps so I can try it out. From docs, it seems like these should do the job. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 02:38:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508422#M33837</guid>
      <dc:creator>uptoNoGood</dc:creator>
      <dc:date>2020-07-10T02:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508440#M33840</link>
      <description>&lt;P&gt;Great. You can try in your local/dev instance first and check the output with your existing query. If it works do accept the answer. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 06:02:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508440#M33840</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-07-10T06:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508788#M33867</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. I tried them both on my local setup and I can now create timelines.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just had one more query, do you know if its possible to do grouping of events in&amp;nbsp;Timeline - Custom Visualization app. The image they have provided as an example of timeline shows event description too but the example query has no such column in final table command&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 11:31:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508788#M33867</guid>
      <dc:creator>uptoNoGood</dc:creator>
      <dc:date>2020-07-13T11:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508801#M33870</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223348"&gt;@uptoNoGood&lt;/a&gt;&amp;nbsp;If you refer to screenshot on Splunkbase, one of the splits is the description (and the same split is displayed on left axis as well as tooltip). Also Splunk Built Custom Visualizations always come with example dashboard and similar example is also present in the dashboard.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 12:26:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508801#M33870</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-07-13T12:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Chart timeline of Stages in a Test</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508821#M33874</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;that worked perfectly.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 13:42:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Chart-timeline-of-Stages-in-a-Test/m-p/508821#M33874</guid>
      <dc:creator>uptoNoGood</dc:creator>
      <dc:date>2020-07-13T13:42:23Z</dc:date>
    </item>
  </channel>
</rss>

