<?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: help with timeline viz needed in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485851#M135936</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/15147"&gt;@somesoni2&lt;/a&gt; &lt;/P&gt;

&lt;P&gt;Unfortunately, it totally messed up the result.  The timeline chart requires the table with the starttime, field (here:startup_phase) and duration as an input. And the above piece of code turns it into starttime and then the columns named with the values of the startup_phase having the values of the duration. On the chart it does not look as it should.&lt;/P&gt;

&lt;P&gt;Please advice.&lt;/P&gt;

&lt;P&gt;Kind Regards,&lt;BR /&gt;
Kamil&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 04:29:43 GMT</pubDate>
    <dc:creator>damucka</dc:creator>
    <dc:date>2020-09-30T04:29:43Z</dc:date>
    <item>
      <title>Dashboard: How to get timeline visualization needed to get the duration of each of the steps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485846#M135931</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I would like to achieve following:&lt;BR /&gt;- I have dashboard with the timeline vizualization and would like to get the duration of each of the steps either directly displayed on the graphic, let us say in the middle, or at least to give it additionally as an info in the tooltip.&lt;BR /&gt;At the moment the only thing in the tooltip is the start time and end time, from which the end user has to calculate the duration, which in my case is the key information.&lt;/P&gt;
&lt;P&gt;How would I achieve this?&lt;/P&gt;
&lt;P&gt;Kind Regards,&lt;BR /&gt;Kamil&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 14:38:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485846#M135931</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2022-04-25T14:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485847#M135932</link>
      <description>&lt;P&gt;What is your current search?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 17:32:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485847#M135932</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-03-04T17:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485848#M135933</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=mlbso host="$host$" sourcetype=*_hanatraces source="*indexserver*" "==== Starting hdbindexserver" OR "Pre-/Re-Loading of column store tables finished" 
| transaction host startswith="==== Starting hdbindexserver"  endswith="Pre-/Re-Loading of column store tables finished" maxspan=3600s
| eval starttime=strftime(_time,"%Y-%m-%d %H:%M:%S") | eval endtime=strftime(_time+duration,"%Y-%m-%d %H:%M:%S")
| eval startup_phase = "total"
| eval duration=round(duration)
| rex field=source "\/.+_(?P&amp;lt;DBSID&amp;gt;.+)\/(?P&amp;lt;service&amp;gt;.+)\_(?&amp;lt;filenameend&amp;gt;.+)$" 
| table DBSID host starttime endtime startup_phase duration

| append

[ search 
index=mlbso host="$host$" sourcetype=*_hanatraces source="*indexserver*" "*Logger*set restart info" OR "*Logger*REDO logging after log replay"
| transaction host startswith="*Logger*set restart info"  endswith="*Logger*REDO logging after log replay" maxspan=3600s
| eval starttime=strftime(_time,"%Y-%m-%d %H:%M:%S") | eval endtime=strftime(_time+duration,"%Y-%m-%d %H:%M:%S")
| eval startup_phase = "logger"
| eval duration=round(duration)
| rex field=source "\/.+_(?P&amp;lt;DBSID&amp;gt;.+)\/(?P&amp;lt;service&amp;gt;.+)\_(?&amp;lt;filenameend&amp;gt;.+)$" 
| table DBSID host starttime endtime startup_phase duration
]

| append

[ search 
index=mlbso host="$host$" sourcetype=*_hanatraces source="*indexserver*" PMRestart
| transaction host startswith="Initialize transient structures"  endswith="history cleanup file(s) finished" maxspan=3600s
| eval starttime=strftime(_time,"%Y-%m-%d %H:%M:%S") | eval endtime=strftime(_time+duration,"%Y-%m-%d %H:%M:%S")
| eval startup_phase = "pm"
| eval duration=round(duration)
| rex field=source "\/.+_(?P&amp;lt;DBSID&amp;gt;.+)\/(?P&amp;lt;service&amp;gt;.+)\_(?&amp;lt;filenameend&amp;gt;.+)$" 
| table DBSID host starttime endtime startup_phase duration
]

| append

[ search 
index=mlbso host="$host$" sourcetype=*_hanatraces source="*indexserver*" RowStorePageAcce
| transaction host  startswith="loadMultiplePageBlocksAtStartup" endswith="finished loading" maxspan=3600s
| eval starttime=strftime(_time,"%Y-%m-%d %H:%M:%S") | eval endtime=strftime(_time+duration,"%Y-%m-%d %H:%M:%S")
| eval startup_phase = "rowstore"
| eval duration=round(duration)
| rex field=source "\/.+_(?P&amp;lt;DBSID&amp;gt;.+)\/(?P&amp;lt;service&amp;gt;.+)\_(?&amp;lt;filenameend&amp;gt;.+)$" 
| table DBSID host starttime endtime startup_phase duration
]

| append

[ search 
index=mlbso host="$host$" sourcetype=*_hanatraces source="*indexserver*" TableReload OR Service_Startup
| transaction host  startswith="Starting reloading column store tables" endswith="Loading of column store tables finished" maxspan=3600s
| eval starttime=strftime(_time,"%Y-%m-%d %H:%M:%S") | eval endtime=strftime(_time+duration,"%Y-%m-%d %H:%M:%S")
| eval startup_phase = "cs_load"
| eval duration=round(duration)
| rex field=source "\/.+_(?P&amp;lt;DBSID&amp;gt;.+)\/(?P&amp;lt;service&amp;gt;.+)\_(?&amp;lt;filenameend&amp;gt;.+)$" 
| table DBSID host starttime endtime startup_phase duration
]

| append

[ search 
index=mlbso host="$host$" sourcetype=*_hanatraces source="*indexserver*" transmgmt
| transaction host  startswith="Transaction table initialized" endswith="Transaction manager initialization done" maxspan=3600s
| eval starttime=strftime(_time,"%Y-%m-%d %H:%M:%S") | eval endtime=strftime(_time+duration,"%Y-%m-%d %H:%M:%S")
| eval startup_phase = "transmgmt"
| eval duration=round(duration)
| rex field=source "\/.+_(?P&amp;lt;DBSID&amp;gt;.+)\/(?P&amp;lt;service&amp;gt;.+)\_(?&amp;lt;filenameend&amp;gt;.+)$" 
| table DBSID host starttime endtime startup_phase duration
]

| eval duration = (duration * 1000)
| sort DBSID host starttime endtime
| table starttime startup_phase duration
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:23:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485848#M135933</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2020-03-04T19:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485849#M135934</link>
      <description>&lt;P&gt;All works actually fine, but I would like to present the duration on the timeline chart somehow (tooltip or on the bar directly) not that the users have to calculate it from start and and time&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:26:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485849#M135934</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2020-03-04T19:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485850#M135935</link>
      <description>&lt;P&gt;Try to add following at the end of you current search.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your above search
| eval {startup_phase}=duration | fields - startup_phase duration
| table starttime *
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Mar 2020 22:12:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485850#M135935</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2020-03-04T22:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485851#M135936</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/15147"&gt;@somesoni2&lt;/a&gt; &lt;/P&gt;

&lt;P&gt;Unfortunately, it totally messed up the result.  The timeline chart requires the table with the starttime, field (here:startup_phase) and duration as an input. And the above piece of code turns it into starttime and then the columns named with the values of the startup_phase having the values of the duration. On the chart it does not look as it should.&lt;/P&gt;

&lt;P&gt;Please advice.&lt;/P&gt;

&lt;P&gt;Kind Regards,&lt;BR /&gt;
Kamil&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:29:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485851#M135936</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2020-09-30T04:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485852#M135937</link>
      <description>&lt;P&gt;&lt;CODE&gt;| table starttime startup_phase duration&lt;/CODE&gt;&lt;BR /&gt;
please provide this results.&lt;/P&gt;

&lt;P&gt;and &lt;CODE&gt;All works actually fine&lt;/CODE&gt;&lt;BR /&gt;
there is many &lt;CODE&gt;append&lt;/CODE&gt; and &lt;CODE&gt;transaction&lt;/CODE&gt;.  Is it true?&lt;BR /&gt;
same &lt;CODE&gt;index&lt;/CODE&gt; , &lt;CODE&gt;sourcetype&lt;/CODE&gt; &lt;BR /&gt;
I think &lt;CODE&gt;append&lt;/CODE&gt; and &lt;CODE&gt;transaction&lt;/CODE&gt; is not need.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 08:31:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485852#M135937</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-03-05T08:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485853#M135938</link>
      <description>&lt;P&gt;There seem to be an option to customize the tooltip for this visualization.&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Timeline/1.3.0/TimelineViz/TimelineXML"&gt;https://docs.splunk.com/Documentation/Timeline/1.3.0/TimelineViz/TimelineXML&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Could you play around with that to show the duration on tooltip?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 16:00:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485853#M135938</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2020-03-05T16:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485854#M135939</link>
      <description>&lt;P&gt;@danspav ? maybe can help?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 22:16:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485854#M135939</guid>
      <dc:creator>Esky73</dc:creator>
      <dc:date>2020-03-05T22:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485855#M135940</link>
      <description>&lt;P&gt;This is criminal and should be completely rewritten.  It cannot possibly work at any scale without dropping data.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 23:35:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485855#M135940</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-03-06T23:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485856#M135941</link>
      <description>&lt;P&gt;@damucka &lt;/P&gt;

&lt;P&gt;Sample Query:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval raw = "Channel1%Show1%6:00:00 PM%7:00:00 PM;Channel1%Show2%7:00:00 PM%8:00:00 PM;Channel1%Show3%8:00:00 PM%9:00:00 PM;Channel2%ShowA%5:00:00 PM%6:00:00 PM;Channel2%ShowB%6:00:00 PM%6:30:00 PM;Channel2%ShowC%6:30:00 PM%8:00:00 PM;Channel3%ShowA%7:00:00 PM%8:00:00 PM;Channel3%ShowB%8:00:00 PM%8:30:00 PM;Channel3%ShowC%8:30:00 PM%9:00:00 PM" 
| makemv raw delim=";" 
| mvexpand raw 
| rex field=raw "(?&amp;lt;Channel&amp;gt;[^\%]+)%(?&amp;lt;Show&amp;gt;[^\%]+)%(?&amp;lt;Start_Time&amp;gt;[^\%]+)%(?&amp;lt;Finish_Time&amp;gt;[^\%]+)"
| eval time_1 = strptime(Start_Time, "%H:%M:%S %p")
| eval time_2 = strptime(Finish_Time, "%H:%M:%S %p")
| eval duration = "Duration = ".round((time_2 - time_1)/3600, 1)." hr"
| eval group = Channel, label = Show, start = time_1, end = time_2, tooltip = Show."\n".duration
| makemv tooltip delim="\n"
| table group, label, start, end, tooltip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Result:&lt;BR /&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/8483i9B09B94B3931C11C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 02:29:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485856#M135941</guid>
      <dc:creator>anmolpatel</dc:creator>
      <dc:date>2020-03-09T02:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485857#M135942</link>
      <description>&lt;P&gt;Hi @anmolpatel&lt;/P&gt;

&lt;P&gt;Unfortunately when I copy / paste the example to my search window I get an error about the regex: &lt;BR /&gt;
"Error in 'rex' command: Encountered the following error while compiling the regex '(?P[^\%]+)%(?P[^\%]+)%(?P[^\%]+)%(?P[^\%]+)': Regex: unrecognized character after (?P"&lt;/P&gt;

&lt;P&gt;Also, the visualization looks a bit different from my Timeline one. Is it the standard timeline viz? Or you modified it? &lt;BR /&gt;
At my side only the | table starttime, startup_phase, duration seems to show anything reasonable ...&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 12:53:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485857#M135942</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2020-03-09T12:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485858#M135943</link>
      <description>&lt;P&gt;@damucka I've inserted the code using the sample code option, it should work now. &lt;BR /&gt;
I've this timeline viz installed: event-timeline-viz    1.4.0&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 22:01:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485858#M135943</guid>
      <dc:creator>anmolpatel</dc:creator>
      <dc:date>2020-03-09T22:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485859#M135944</link>
      <description>&lt;P&gt;Thank you.&lt;BR /&gt;
I like the  event-timeline-viz very much, it is so much better than the timeline, at least for me. Also my original issue could be addressed with your help.&lt;BR /&gt;
One last question:&lt;BR /&gt;
Is it possible to change the color of the bar but in case of specific label value?&lt;BR /&gt;
I would like in some cases give the label "Restart phase not running" for some events and only for these set the color e.g. to yellow, that one can see at the first glance the difference.&lt;BR /&gt;
Is it possible?&lt;/P&gt;

&lt;P&gt;Kind Regards,&lt;BR /&gt;
Kamil&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 12:03:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485859#M135944</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2020-03-13T12:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485860#M135945</link>
      <description>&lt;P&gt;@damucka yes, that can be achieved. There are three ranges available: low (green color), elevated (yellow color), severe (red color). So if you've a column that has the condition to describe the color, you can set the range. &lt;BR /&gt;
Here is an example where I've added the trigger condition to the tooltip itself:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
 | eval raw = "Channel1%Show1%6:00:00 PM%7:00:00 PM;Channel1%Show2%7:00:00 PM%8:00:00 PM;Channel1%Show3%8:00:00 PM%9:00:00 PM;Channel2%ShowA%5:00:00 PM%6:00:00 PM;Channel2%ShowB%6:00:00 PM%6:30:00 PM;Channel2%ShowC%6:30:00 PM%8:00:00 PM;Channel3%ShowA%7:00:00 PM%8:00:00 PM;Channel3%ShowB%8:00:00 PM%8:30:00 PM;Channel3%ShowC%8:30:00 PM%9:00:00 PM" 
 | makemv raw delim=";" 
 | mvexpand raw 
 | rex field=raw "(?&amp;lt;Channel&amp;gt;[^\%]+)%(?&amp;lt;Show&amp;gt;[^\%]+)%(?&amp;lt;Start_Time&amp;gt;[^\%]+)%(?&amp;lt;Finish_Time&amp;gt;[^\%]+)"
 | eval time_1 = strptime(Start_Time, "%H:%M:%S %p")
 | eval time_2 = strptime(Finish_Time, "%H:%M:%S %p")
 | eval duration = "Duration = ".round((time_2 - time_1)/3600, 1)." hr"
 | eval group = Channel, label = Show, start = time_1, end = time_2, tooltip = Show."\n".duration
 | eval tooltip =  if(group == "Channel1", tooltip + "\n" + "Restart phase not running", tooltip)
  | eval range = if(match(tooltip, ".*Restart phase not running"), "elevated", "low")
 | makemv tooltip delim="\n"
 | table group, label, start, end, tooltip, range
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;alternatively, you can set the range as the below, which will only highlight the restart phase: &lt;CODE&gt;| eval range = case(match(tooltip, ".*Restart phase not running"), "elevated")&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2020 21:41:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485860#M135945</guid>
      <dc:creator>anmolpatel</dc:creator>
      <dc:date>2020-03-15T21:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485861#M135946</link>
      <description>&lt;P&gt;@anmolpatel&lt;/P&gt;

&lt;P&gt;Thank you for your input, it was really helpful.&lt;/P&gt;

&lt;P&gt;Kind Regards,&lt;BR /&gt;
Kamil&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 11:21:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/485861#M135946</guid>
      <dc:creator>damucka</dc:creator>
      <dc:date>2020-03-18T11:21:41Z</dc:date>
    </item>
    <item>
      <title>help with timeline viz needed</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/595016#M207052</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I have created a timeline of URLs hit over a given session.&lt;BR /&gt;Here is my chart:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="POR160893_0-1650707279547.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19254i55DAB382274155C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="POR160893_0-1650707279547.png" alt="POR160893_0-1650707279547.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;and here is the respective XML code:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="POR160893_1-1650707279551.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19256iA879217EAEE47DBE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="POR160893_1-1650707279551.png" alt="POR160893_1-1650707279551.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;However, I need to add the time and dates on the top of the timeline as such:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="POR160893_2-1650707279553.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19255i46F789235CD0B9EB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="POR160893_2-1650707279553.png" alt="POR160893_2-1650707279553.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;How can I do this?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Many thanks,&lt;BR /&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Sat, 23 Apr 2022 09:48:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dashboard-How-to-get-timeline-visualization-needed-to-get-the/m-p/595016#M207052</guid>
      <dc:creator>POR160893</dc:creator>
      <dc:date>2022-04-23T09:48:06Z</dc:date>
    </item>
  </channel>
</rss>

