Dashboards & Visualizations

How to change events display format?

tejaldc
New Member

I have created a view with javascript to add search bar and display results as event list. How can I change the format in which the events are displayed? I want to use a userscript to format the way events are displayed

Labels (1)
Tags (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

So, this is your javascript? How do you expect us to be able to tell you what you should change in your script? Can you at least share what you have in your script so far?

0 Karma

tejaldc
New Member

this is my script. it works fine right now, it will take in searches and display the results on the dashboard in the list form. however I want to change the format in which the list is displayed

require([
"splunkjs/mvc/searchmanager",
"splunkjs/mvc/searchbarview",
"splunkjs/mvc/searchcontrolsview",
"splunkjs/mvc/eventsviewerview",
"splunkjs/mvc/timelineview",
"splunkjs/mvc/simplexml/ready!"
], function(
SearchManager,
SearchbarView,
SearchControlsView,
EventsViewer,
TimelineView
) {

var mysearchbar = new SearchbarView({
id: "searchbar1",
managerid: "search1",
el: $("#mysearchbar1")
}).render();

var mysearchcontrols = new SearchControlsView({
id: "searchcontrols1",
managerid: "search1",
el: $("#mysearchcontrols1")
}).render();

var mytimeline = new TimelineView({
id: "timeline1",
managerid: "search1",
el: $("#mytimeline1")
}).render();

var mytable = new EventsViewer({
id: "table1",
managerid: "search1",
type: "list",
"list.drilldown": "outer",
drilldownRedirect: true,
"list.wrap": true,
count: 3,
pagerPosition: "top",
showPager: true,
rowNumbers: false,
el: $("#mytable1")
}).render();

var mysearch = new SearchManager({
id: "search1",
app: "search",
preview: true,
required_field_list: "*",
status_buckets: 300,
search: "index=_internal | head 100"
});

mytimeline.on("change", function() {
mysearch.settings.set(mytimeline.val());
});

mysearchbar.on("change", function() {
mysearch.settings.unset("search");
mysearch.settings.set("search", mysearchbar.val());
});

mysearchbar.timerange.on("change", function() {
mysearch.settings.set(mysearchbar.timerange.val());
});
});
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...