Skip to content

splunk/splunk-3D-graph-network-topology-viz

Repository files navigation

Splunk 3D Graph Network Topology Visualization

Custom badge Actions Status: ci Latest release (latest by date) License

Plot relationships between objects with force directed graph based on ThreeJS/WebGL.

More information around use cases on the following Splunk blogs:

Installation

Please refer to Splunk Documentation for guidance on installing this visualization in your environment. The app needs to be installed on the SH tier.

Download is available from either GitHub or Splunkbase.

Usage

<search> | stats count by src dest [color_src] [color_dest] [edge_color] [weight_src] [weight_dest] [edge_weigth]

Replace src and dest with your fields to start. All other fields are optional and default values will be used if not given.

Optional values

Used to customise nodes and edges (or links) styling.

FieldName Format Description Example
color_src string Color of source node in HEX #00DD00
color_dest string Color of destination node in HEX #CC00FF
edge_color string Color of edge in HEX #12FF00
weight_src numeric Sphere size of source node 2.5
weight_dest numeric Sphere size of destination node 3
edge_weight numeric Stroke weight of edge line in pixels 2.1

Besides:

  • Field names must correspond to the ones specified above to be properly handled by the visualization
  • Any edge_weight value higher than 18 will be normalised to 18

Drilldown

To enrich your dashboards with some interactivity, enable drilldown in your dashboard panel. For example, assuming the configuration below, by clicking on a node in your graph it should populate a token with the value from a field named src.

    <option name="drilldown">all</option>
    <drilldown>
      <set token="tok">$row.src$</set>
    </drilldown>

This token can then be used within your dashboard in another panel or visualisation.

Examples

alt text

Lookup tables

  • Add a lookup table defining these additional values to your Splunk instance. An example below:

    $~ cat <your_lookup_table>.csv
    source,color,weight
    A,#010101,50
    B,#ff0101,10
    ...
    
  • Execute your SPL <search> | stats count by src dest | lookup <your_lookup_table> source AS src | lookup <your_lookup_table> source AS dest OUTPUTNEW color AS color_dest, weight AS weight_dest

Simple SPL

  • Execute your SPL <search> | stats count as edge_weight by src dest | eval color_src="#cc0000", color_dest="#00ff00", weight_src=3 | eval edge_color=if(edge_weight < 18, "#0000cc","")

alt text

Graph Algorithm Examples

Four dashboards are provided to show graph algorithms in action using NetworkX. Select them by clicking on Graph Example Dashboards dropdown in the app navigation bar.

Requirements

Make sure you have the following Splunk apps installed in your instance to correctly visualize integrated dashboards.

Give global permissions to MLTK app if not already done

alt text

alt text

Hardware Acceleration in Browsers

All modern browsers shall have hardware acceleration turned on by default in order to increase your browser performance and free up CPU by leaving the GPU (Graphics Processing Unit) handling graphical intensive operations.

Chrome

The best way to check whether hardware acceleration is turned on is to type chrome://gpu into the address bar at the top of the browser.

A whole bunch of results will be returned but we're interested on the section titled Graphics Feature Status. Please make sure "Hardware accelerated" is turned on entry WebGL (among multiple others).

To enable hardware acceleration:

  • type chrome://settings in the address bar,
  • scroll to the very bottom of that page and expand the Advanced link
  • scroll down till reaching the section System and enable the option "Use hardware acceleration when available"
  • restart the browser if requested

Firefox

To enable hardware acceleration:

  • type about:config in the address bar
  • search for layers.acceleration.force-enabled and double click on it to turn the value to true
  • restart the browser

Other browsers

For other browsers, please refer to their specific documentation on the matter.

Contributing

If you would like to contribute to the visualization, please have a look at our Contribution Guide

LICENSE

Splunk 3D Graph Network Topology Visualization is licensed under the Apache License 2.0. Details can be found in the file LICENSE.