
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
@splunk/dashboard-core
Advanced tools
@splunk/dashboard-core is a core component in Dashboard Framework that manages the state between visualizations, inputs, and their datasources. You must wrap this component with a DashboardContextProvider.
It renders a dashboard according to a JSON definition.
npm install react@^16 react-dom@^16 styled-components@^5 @splunk/react-ui@^4 @splunk/dashboard-context @splunk/visualization-context @splunk/dashboard-presets @splunk/dashboard-core --save
--or--
yarn add react@^16 react-dom@^16 styled-components@^5 @splunk/react-ui@^4 @splunk/dashboard-context @splunk/visualization-context @splunk/dashboard-presets @splunk/dashboard-core --save
import React from 'react';
import { DashboardCore } from '@splunk/dashboard-core';
import CloudViewOnlyPreset from '@splunk/dashboard-presets/CloudViewOnlyPreset';
import {
DashboardContextProvider,
GeoRegistry,
GeoJsonProvider,
} from '@splunk/dashboard-context';
const definition = {
dataSources: {
search1: {
options: {
data: {
columns: [['168']],
fields: [
{
name: 'count',
},
],
},
meta: {},
},
type: 'ds.test',
},
},
visualizations: {
single1: {
type: 'viz.singlevalue',
options: {},
dataSources: {
primary: 'search1',
},
},
single2: {
type: 'viz.singlevalue',
options: {},
dataSources: {
primary: 'search1',
},
},
single3: {
type: 'viz.singlevalue',
options: {},
dataSources: {
primary: 'search1',
},
},
},
layout: {
type: 'absolute',
options: {
width: 1000,
height: 400,
},
structure: [
{
item: 'single1',
position: {
x: 0,
y: 100,
w: 200,
h: 200,
},
},
{
item: 'single2',
position: {
x: 400,
y: 100,
w: 200,
h: 200,
},
},
{
item: 'single3',
position: {
x: 800,
y: 100,
w: 200,
h: 200,
},
},
],
},
};
const geoRegistry = GeoRegistry.create();
geoRegistry.addDefaultProvider(new GeoJsonProvider());
export default () => (
<DashboardContextProvider
geoRegistry={geoRegistry}
preset={CloudViewOnlyPreset}
initialDefinition={definition}
>
<DashboardCore width="100%" height={450} />
</DashboardContextProvider>
);
FAQs
Unify Dashboard Framework
The npm package @splunk/dashboard-core receives a total of 534 weekly downloads. As such, @splunk/dashboard-core popularity was classified as not popular.
We found that @splunk/dashboard-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.