
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@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 react-dom styled-components @splunk/react-ui @splunk/dashboard-core @splunk/dashboard-presets
--or--
yarn add react react-dom styled-components @splunk/react-ui @splunk/dashboard-core @splunk/dashboard-presets
import React from 'react';
import DashboardCore from '@splunk/dashboard-core';
import CloudViewOnlyPreset from '@splunk/dashboard-presets/CloudViewOnlyPreset';
import { DashboardContextProvider } from '@splunk/dashboard-context';
import GeoRegistry from '@splunk/dashboard-context/GeoRegistry';
import GeoJsonProvider from '@splunk/dashboard-context/GeoJsonProvider';
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}>
<DashboardCore
width="100%"
height={450}
preset={CloudViewOnlyPreset}
definition={definition}
/>
</DashboardContextProvider>
);
FAQs
Unify Dashboard Framework
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 3 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 News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.