Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine malware detection dashboard #6554

Merged
merged 3 commits into from Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions plugins/main/public/components/visualize/visualizations.js
Expand Up @@ -781,8 +781,8 @@ export const visualizations = {
height: 300,
vis: [
{
title: 'Emotet malware activity',
id: 'Wazuh-App-Overview-PM-Emotet-Malware-Activity',
title: 'Malware activity',
id: 'Wazuh-App-Overview-PM-Malware-Activity',
width: 30,
},
{
Expand All @@ -792,9 +792,8 @@ export const visualizations = {
},
],
},

{
height: 400,
height: 560,
vis: [
{
title: 'Security alerts',
Expand Down
Expand Up @@ -11,12 +11,12 @@
*/
export default [
{
_id: 'Wazuh-App-Overview-PM-Emotet-Malware-Activity',
_id: 'Wazuh-App-Overview-PM-Malware-Activity',
_type: 'visualization',
_source: {
title: 'Emotet malware activity',
title: 'Malware activity',
visState: JSON.stringify({
title: 'Emotet malware activity',
title: 'Malware activity',
type: 'area',
aggs: [
{
Expand Down Expand Up @@ -417,40 +417,6 @@ export default [
id: '4',
enabled: true,
type: 'terms',
params: {
field: 'rule.mitre.id',
orderBy: '_key',
order: 'desc',
size: 5,
otherBucket: false,
otherBucketLabel: 'Other',
missingBucket: false,
missingBucketLabel: 'Missing',
customLabel: 'rule.mitre.id',
},
schema: 'bucket',
},
{
id: '5',
enabled: true,
type: 'terms',
params: {
field: 'rule.mitre.tactic',
orderBy: '_key',
order: 'desc',
size: 5,
otherBucket: false,
otherBucketLabel: 'Other',
missingBucket: false,
missingBucketLabel: 'Missing',
customLabel: 'rule.mitre.tactic',
},
schema: 'bucket',
},
{
id: '6',
enabled: true,
type: 'terms',
params: {
field: 'rule.description',
orderBy: '_key',
Expand All @@ -465,7 +431,7 @@ export default [
schema: 'bucket',
},
{
id: '7',
id: '5',
enabled: true,
type: 'terms',
params: {
Expand All @@ -482,7 +448,7 @@ export default [
schema: 'bucket',
},
{
id: '8',
id: '6',
enabled: true,
type: 'terms',
params: {
Expand All @@ -509,7 +475,28 @@ export default [
row: false,
},
}),
uiStateJSON: '{}',
uiStateJSON: JSON.stringify({
vis: {
columnsWidth: [
{
colIndex: 0,
width: 200,
},
{
colIndex: 3,
width: 100,
},
{
colIndex: 4,
width: 100,
},
{
colIndex: 5,
width: 100,
},
],
},
}),
description: '',
version: 1,
kibanaSavedObjectMeta: {
Expand Down