Dashboards & Visualizations

Where can I find an example of a custom Splunk visualization using dc.js?

melonman
Motivator

Hi,

I am looking for an example of Splunk custom visualization using dc.js.
https://dc-js.github.io/dc.js/

If anyone has tried to create one, could you share how to use this library with Splunk?
I looked at Splunkbase for any visualization example using dc.js, but so far no luck..

Thank you!

0 Karma
1 Solution

jeffland
SplunkTrust
SplunkTrust

I personally haven't heard of any dc.js examples with splunk. That is probably because splunks built-in dashboard components (which I believe are mainly based on Highcharts) feature the same basic visualization elements, and they a) come with an in-browser drag-and-drop method to create and b) are from there somewhat customizable with XML, which in my opinion makes the whole procedure easier than to write javascript directly (but that might be different for others).
Is there are specific reason you want to use dc.js, like previous experience with it? Feature- or visualization-wise, I can't see much that warrants a need for dc.js over the standard visualizations.
From what I've read so far (especially this tutorial, which seems to explain things quite well), you can simply use the results of your searches in json and be on your way with dc.js. You basically need a search in your dashboard with an id and a place for your visualizations to go like so:

<dashboard script="your_javascript.js">
  <search id="data_search">
    <query>...
  <html>
    <div id="place_viz"></div>
  <html>
</dashboard>

And in your javascript you do something like

var search = splunkjs.mvc.Components.getInstance("data_search");
var myResults = search.data("results", {output_mode: "json_rows", count: "0");
myResults.on("data", function() {
    var collection = myResults.collection().toJSON();
    // you can now do as you please
});

I hope this helps you on your way. If you successfully create a working example, maybe you could post it here for others to find?

View solution in original post

0 Karma

jeffland
SplunkTrust
SplunkTrust

I personally haven't heard of any dc.js examples with splunk. That is probably because splunks built-in dashboard components (which I believe are mainly based on Highcharts) feature the same basic visualization elements, and they a) come with an in-browser drag-and-drop method to create and b) are from there somewhat customizable with XML, which in my opinion makes the whole procedure easier than to write javascript directly (but that might be different for others).
Is there are specific reason you want to use dc.js, like previous experience with it? Feature- or visualization-wise, I can't see much that warrants a need for dc.js over the standard visualizations.
From what I've read so far (especially this tutorial, which seems to explain things quite well), you can simply use the results of your searches in json and be on your way with dc.js. You basically need a search in your dashboard with an id and a place for your visualizations to go like so:

<dashboard script="your_javascript.js">
  <search id="data_search">
    <query>...
  <html>
    <div id="place_viz"></div>
  <html>
</dashboard>

And in your javascript you do something like

var search = splunkjs.mvc.Components.getInstance("data_search");
var myResults = search.data("results", {output_mode: "json_rows", count: "0");
myResults.on("data", function() {
    var collection = myResults.collection().toJSON();
    // you can now do as you please
});

I hope this helps you on your way. If you successfully create a working example, maybe you could post it here for others to find?

0 Karma

melonman
Motivator

Thank you for your post, I will try to pass the search result in Jason to crossfilter and go from there.

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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 ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...