Splunk Search

Timeline in view using "recommended" method ?

ddeyoung
Engager

Digging through the docs I see how to use advanced xml and the timeline module to get a simple timeline of my search results onto a dashboard view.

However, the most recent documentation seems to imply that simple xml and the web framework methods should be used whenever possible instead of advanced xml.

QUESTION: Is there an alternative to advanced xml to include a timeline in a view?

Thanks.

Tags (1)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

The default way would be to build the view using the Splunk Web Framework: http://dev.splunk.com/view/web-framework/SP-CAAAER6
See the related app for examples: http://apps.splunk.com/app/1613/
Once installed, switch to the examples app and select Web Framework Components -> Search Manager Controls for search bars, timeline views, and related stuff.

Here's an excerpt from that example:

var TimelineView = require("splunkjs/mvc/timelineview");
new TimelineView({
  id: "example-timeline",
  managerid: "example-timeline-search",
  el: $("#divToHangOn2")
}).render();

That'll render a time line for the search manager called example-timeline-search into the div tag with the id divToHangOn2.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

The default way would be to build the view using the Splunk Web Framework: http://dev.splunk.com/view/web-framework/SP-CAAAER6
See the related app for examples: http://apps.splunk.com/app/1613/
Once installed, switch to the examples app and select Web Framework Components -> Search Manager Controls for search bars, timeline views, and related stuff.

Here's an excerpt from that example:

var TimelineView = require("splunkjs/mvc/timelineview");
new TimelineView({
  id: "example-timeline",
  managerid: "example-timeline-search",
  el: $("#divToHangOn2")
}).render();

That'll render a time line for the search manager called example-timeline-search into the div tag with the id divToHangOn2.

ddeyoung
Engager

Very concise and helpful, thank you!

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...