Skip to content

Commit

Permalink
Merge branch 'master' into feat/6278-replace-discover-docker
Browse files Browse the repository at this point in the history
  • Loading branch information
yenienserrano authored Jan 9, 2024
2 parents 35a7fed + b6ef617 commit 9184a46
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ All notable changes to the Wazuh app project will be documented in this file.

### Changed

- Removed embedded discover [#6120](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6120) [#6235](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6235) [#6254](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6254) [#6286](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6286)
- Removed embedded discover [#6120](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6120) [#6235](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6235) [#6254](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6254) [#6285](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6285) [#6286](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6286)
- Develop logic of a new index for the fim module [#6227](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6227)
- Allow editing groups for an agent from Endpoints Summary [#6250](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6250)

# Fixed
### Fixed

- Fixed the scripted fields disappear when the fields of the events index pattern was refreshed [#6237](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6237)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { tDataGridColumn } from '../../../common/data-grid';

export const configurationAssessmentColumns: tDataGridColumn[] = [
{
id: 'data.sca.check.title',
},
{
id: 'data.sca.check.file',
},
{
id: 'data.sca.check.result',
},
{
id: 'data.sca.policy',
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { DashboardFim } from '../../overview/fim/dashboard/dashboard';
import { InventoryFim } from '../../overview/fim/inventory/inventory';
import React from 'react';
import { dockerColumns } from '../../overview/docker/events/docker-columns';
import { configurationAssessmentColumns } from '../../agents/sca/events/configuration-assessment-columns';

const DashboardTab = {
id: 'dashboard',
Expand Down Expand Up @@ -129,7 +130,7 @@ export const ModulesDefaults = {
buttons: [ButtonModuleExploreAgent],
component: MainSca,
},
EventsTab,
renderDiscoverTab(DEFAULT_INDEX_PATTERN, configurationAssessmentColumns),
],
buttons: ['settings'],
availableFor: ['manager', 'agent'],
Expand Down

0 comments on commit 9184a46

Please sign in to comment.