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

Fixed render bug in security alerts table #6883

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Removed legacy discover references and methods [#6646](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6646)
- Removed custom EuiSuggestItem component in favor of OUI's native component [#6714](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6714)
- Removed API endpoint unused endpoints from creation of old visualisations: GET /elastic/visualizations/{tab}/{pattern} and GET /elastic/visualizations/{tab}/{pattern} [#6782](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6782)
- Removed `rule.mitre.id` and `rule.mitre.tactics` values from Security alerts table in Malware Detection [#6883](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6883)
JuanGarriuz marked this conversation as resolved.
Show resolved Hide resolved

## Wazuh v4.8.1 - OpenSearch Dashboards 2.10.0 - Revision 04

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,40 +382,6 @@ const getVisStateSecurityAlerts = (indexPatternId: string) => {
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 @@ -430,7 +396,7 @@ const getVisStateSecurityAlerts = (indexPatternId: string) => {
schema: 'bucket',
},
{
id: '7',
id: '5',
enabled: true,
type: 'terms',
params: {
Expand All @@ -447,7 +413,7 @@ const getVisStateSecurityAlerts = (indexPatternId: string) => {
schema: 'bucket',
},
{
id: '8',
id: '6',
enabled: true,
type: 'terms',
params: {
Expand Down
Loading