A collection of Splunk modular visualizations based on plotly.js, a JavaScript open-source library used to create interactive charts for finance, engineering and sciences.
Visualizations included into this collection:
- OHLC Chart for Stocks and Financial Data 🛠️ source code
- Box Plot Chart for Statistical Data 🛠️ source code
- Multiple Axes Chart for Advanced Statistical Data Visualizations 🛠️ source code
- Scatterplot 3D for Multiple Dimensions / Clustering Data Visualizations 🛠️ source code
Please refer to the Splunk Documentation for guidance on installing the Add-On in your environment. The app needs to be installed on the SH tier.
Download is available from either GitHub or Splunkbase.
- Type your search
- Click on tab
Visualization
and then select eitherOHLC Chart
,Box Plot
orMultiple Axes
among available visualizations - Format the visualization as needed
<basesearch> | table _time open close high low [currencypair] [8pointEMA] [20pointEMA] [4pointSMA]
If not provided, default values will be used for optional fields currencypair
, 8pointEMA
, 20pointEMA
and 4pointEMA
.
Field names must correspond to the ones specified above to be properly handled by the visualization
<basesearch> | table box_name value
Replace box_name
and value
with your fields to start.
FieldName | Format | Description | Example |
---|---|---|---|
box_name |
string | Label of the box | A |
value |
numeric | Data forming box dataset | 20 |
<basesearch> | table _time scatter-y2-dataset1 scatter-y2_datasetN line-y-dataset1 line-y-datasetN
Replace _time
, scatter-y2-datasetX
and line-y-datasetX
with your fields to start.
FieldName | Format | Description | Example |
---|---|---|---|
_time |
date | Event time reference | 2019-05-17 07:30:02 |
scatter-y2-dataset1 |
numeric | Dataset for 1st scatter plot on secondary Y-Axis | -1.6 |
scatter-y2-datasetN |
numeric | Dataset for Nth scatter plot on secondary Y-Axis | -2 |
line-y-dataset1 |
numeric | Dataset for 1st line plot on regular Y-Axis | 10 |
line-y-datasetN |
numeric | Dataset for Nth line plot on regular Y-Axis | 32 |
Field names must begin with
scatter
andline
to be properly handled by the visualization
<basesearch> | table trace x y z [marker_size]
If not provided, default values will be used for optional field marker_size
.
Replace trace
, x
, y
and z
with your fields to start.
FieldName | Format | Description | Example |
---|---|---|---|
trace |
string | Label of the trace | A |
x |
numeric | X-coordinate of data forming trace dataset | 20 |
y |
numeric | Y-coordinate of data forming trace dataset | 2 |
z |
numeric | Z-coordinate of data forming trace dataset | 100 |
marker_size |
numeric | Size of the data marker in pixels. Range [1-50]. | 20 |
This app comes with a dashboard showcasing simple usages of mentioned charts.
- Navigate to
Apps / Search & Reporting / Dashboards
- Click on the dashboard
Overview of Plotly Charts for Splunk
- Be inspired
- 🚀 Want to contribute? Open a Pull Request
- 🐛 Found a bug? Open an issue
- 💡 Got an idea for a new feature? Open a feature request
This project is licensed under Apache-2.0