Skip to content

Commit

Permalink
Merge branch '4.8.0' into 6324-remove-scroll-from-vulnerabilities-inv…
Browse files Browse the repository at this point in the history
…entory-table
  • Loading branch information
asteriscos authored Jan 19, 2024
2 parents 72c53bc + 0c6b647 commit 486aa45
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed a problem with the address validation on Deploy New Agent [#6327](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6327)
- Fixed a typo in an abbreviation for Fully Qualified Domain Name [#6333](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6333)
- Fixed unnecessary scrolling in Vulnerability Inventory table [#6345](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6345)
- Fixed wrong value at server stat Archives queue usage [#6342](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6342)
- Fixed the inventory data table when maximized and the docked menu [#6344](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6344)

### Removed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2537,7 +2537,7 @@ export default [
enabled: true,
type: 'avg',
params: {
field: 'analysisd.event_queue_size',
field: 'analysisd.event_queue_usage',
customLabel: 'Event queue usage',
},
schema: 'metric',
Expand All @@ -2547,7 +2547,7 @@ export default [
enabled: true,
type: 'avg',
params: {
field: 'analysisd.rule_matching_queue_size',
field: 'analysisd.rule_matching_queue_usage',
customLabel: 'Rule matching queue usage',
},
schema: 'metric',
Expand All @@ -2557,7 +2557,7 @@ export default [
enabled: true,
type: 'avg',
params: {
field: 'analysisd.alerts_queue_size',
field: 'analysisd.alerts_queue_usage',
customLabel: 'Alerts log queue usage',
},
schema: 'metric',
Expand All @@ -2567,7 +2567,7 @@ export default [
enabled: true,
type: 'avg',
params: {
field: 'analysisd.firewall_queue_size',
field: 'analysisd.firewall_queue_usage',
customLabel: 'Firewall log queue usage',
},
schema: 'metric',
Expand All @@ -2577,7 +2577,7 @@ export default [
enabled: true,
type: 'avg',
params: {
field: 'analysisd.statistical_queue_size',
field: 'analysisd.statistical_queue_usage',
customLabel: 'Statistical log queue usage',
},
schema: 'metric',
Expand All @@ -2587,7 +2587,7 @@ export default [
enabled: true,
type: 'avg',
params: {
field: 'analysisd.archives_queue_size',
field: 'analysisd.archives_queue_usage',
customLabel: 'Archives queue usage',
},
schema: 'metric',
Expand Down

0 comments on commit 486aa45

Please sign in to comment.