bfg-common 1.6.95 → 1.6.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/inspectionProfiles/Project_Default.xml +3 -1
- package/assets/img/icons/icons-sprite-dark-5.svg +15 -2
- package/assets/img/icons/icons-sprite-light-5.svg +18 -5
- package/assets/localization/local_be.json +667 -51
- package/assets/localization/local_en.json +690 -73
- package/assets/localization/local_hy.json +670 -54
- package/assets/localization/local_kk.json +668 -52
- package/assets/localization/local_ru.json +704 -88
- package/assets/localization/local_zh.json +667 -51
- package/assets/scss/clarity/local_ar.json +12 -12
- package/assets/scss/common/global.scss +11 -0
- package/assets/scss/common/normalize.scss +3 -0
- package/assets/scss/common/theme.scss +2 -2
- package/components/atoms/dropdown/dropdown/Dropdown.vue +10 -8
- package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +1 -0
- package/components/atoms/list/dragDropList/DragDropList.vue +14 -10
- package/components/atoms/stack/StackBlock.vue +1 -1
- package/components/atoms/table/dataGrid/DataGrid.vue +4 -0
- package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -2
- package/components/atoms/tooltip/TooltipError.vue +3 -0
- package/components/common/adapterManager/AdapterManagerNew.vue +128 -6
- package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +64 -31
- package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +3 -4
- package/components/common/adapterManager/ui/actions/bar/Bar.vue +2 -0
- package/components/common/adapterManager/ui/actions/bar/BarNew.vue +3 -2
- package/components/common/adapterManager/ui/actions/moveDownAdapterButton/MoveDownAdapterButtonNew.vue +1 -0
- package/components/common/adapterManager/ui/actions/moveUpAdapterButton/MoveUpAdapterButtonNew.vue +1 -0
- package/components/common/adapterManager/ui/noSelectedAdapter/NoSelectedAdapterNew.vue +10 -4
- package/components/common/adapterManager/ui/secondTitle/SecondTitleNew.vue +16 -1
- package/components/common/adapterManager/ui/table/TableNew.vue +3 -2
- package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +70 -36
- package/components/common/adapterManager/ui/table/header/HeaderNew.vue +5 -1
- package/components/common/certificate/Certificate.vue +16 -6
- package/components/common/certificate/Info/Info.vue +61 -0
- package/components/common/certificate/{CertificateInfo.vue → Info/Old.vue} +6 -28
- package/components/common/certificate/Info/new/New.vue +285 -0
- package/components/common/certificate/Info/new/lib/config/index.ts +59 -0
- package/components/common/certificate/Info/new/lib/models/interfaces.ts +3 -0
- package/components/common/certificate/Info/new/lib/utils/index.ts +10 -0
- package/components/common/certificate/Old.vue +27 -0
- package/components/common/certificate/new/New.vue +30 -0
- package/components/common/certificate/new/Skeleton.vue +155 -0
- package/components/common/certificate/tools/New.vue +48 -0
- package/components/common/certificate/tools/Old.vue +39 -0
- package/components/common/certificate/{Tools.vue → tools/Tools.vue} +18 -23
- package/components/common/certificate/tools/lib/config/tabsPannel.ts +20 -0
- package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +190 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +392 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +307 -0
- package/components/common/configure/physicalAdapters/buttons/Buttons.vue +106 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlock.vue +17 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockNew.vue +37 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockOld.vue +26 -0
- package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +124 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +232 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditOld.vue +170 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/config/config.ts +59 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +17 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
- package/components/common/configure/physicalAdapters/tableView/TableView.vue +43 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +345 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewOld.vue +334 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfig.ts +177 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +191 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +129 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/tableKeys.ts +14 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +33 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/types.ts +11 -0
- package/components/common/configure/physicalAdapters/tableView/mappers/mappers.ts +43 -0
- package/components/common/context/recursion/RecursionNew.vue +1 -2
- package/components/common/context/recursion/RecursionOld.vue +2 -2
- package/components/common/diagramMain/Diagram.vue +169 -85
- package/components/common/diagramMain/DiagramMain.vue +40 -10
- package/components/common/diagramMain/header/Header.vue +49 -0
- package/components/common/diagramMain/header/HeaderNew.vue +155 -0
- package/components/common/diagramMain/{Header.vue → header/HeaderOld.vue} +78 -67
- package/components/common/diagramMain/modals/Modals.vue +5 -5
- package/components/common/diagramMain/modals/UnsavedChangesModal.vue +32 -0
- package/components/common/diagramMain/modals/editSettings/EditSettings.vue +104 -102
- package/components/common/diagramMain/modals/editSettings/EditSettingsNew.vue +285 -0
- package/components/common/diagramMain/modals/editSettings/EditSettingsOld.vue +254 -0
- package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModal.vue +31 -0
- package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModalNew.vue +82 -0
- package/components/common/diagramMain/modals/editSettings/{ConfirmTeamingSettingsModal.vue → confirmTeamingSettingsModal/ConfirmTeamingSettingsModalOld.vue} +2 -5
- package/components/common/diagramMain/modals/editSettings/lib/config/config.ts +15 -0
- package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +6 -0
- package/components/common/diagramMain/modals/editSettings/lib/utils/utils.ts +177 -0
- package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModal.vue +137 -0
- package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModalNew.vue +91 -0
- package/components/common/diagramMain/modals/editSettings/{EditSettingsModal.vue → modal/EditSettingsModalOld.vue} +12 -51
- package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkProperties.vue +158 -0
- package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkPropertiesNew.vue +262 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{NetworkProperties.vue → networkProperties/NetworkPropertiesOld.vue} +12 -110
- package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettings.vue +192 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettingsNew.vue +388 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/{IpvFourSettings.vue → ipvFourSettings/IpvFourSettingsOld.vue} +11 -152
- package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortProperties.vue +139 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortPropertiesNew.vue +286 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/{PortProperties.vue → portProperties/PortPropertiesOld.vue} +12 -103
- package/components/common/diagramMain/modals/editSettings/tabs/security/Security.vue +209 -0
- package/components/common/diagramMain/modals/editSettings/tabs/security/SecurityNew.vue +233 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{Security.vue → security/SecurityOld.vue} +25 -48
- package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchProperties.vue +128 -0
- package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchPropertiesNew.vue +235 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{SwitchProperties.vue → switchProperties/SwitchPropertiesOld.vue} +12 -89
- package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailover.vue +99 -0
- package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailoverNew.vue +319 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{TeamingFailover.vue → teamingFailover/TeamingFailoverOld.vue} +11 -48
- package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShaping.vue +173 -0
- package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShapingNew.vue +348 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{TrafficShaping.vue → trafficShaping/TrafficShapingOld.vue} +12 -134
- package/components/common/diagramMain/modals/lib/config/adapterModal.ts +9 -9
- package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +43 -2
- package/components/common/diagramMain/modals/lib/config/index.ts +2 -1
- package/components/common/diagramMain/modals/lib/config/networkModal.ts +15 -15
- package/components/common/diagramMain/modals/lib/config/portModal.ts +12 -12
- package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +2 -2
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
- package/components/common/diagramMain/modals/lib/utils/index.ts +34 -4
- package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdapters.vue +164 -0
- package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdaptersNew.vue +306 -0
- package/components/common/diagramMain/modals/{ManagePhysicalAdaptersModal.vue → managePhysicalAdapters/ManagePhysicalAdaptersOld.vue} +33 -119
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +3 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +8 -3
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +2 -2
- package/components/common/diagramMain/modals/remove/RemoveModalNew.vue +67 -16
- package/components/common/diagramMain/modals/viewSettings/info/InfoNew.vue +17 -0
- package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettings.vue +3 -0
- package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsNew.vue +66 -20
- package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalNew.vue +8 -0
- package/components/common/diagramMain/skeleton/Header.vue +31 -0
- package/components/common/diagramMain/skeleton/Switch.vue +75 -0
- package/components/common/layout/theHeader/Old.vue +1 -5
- package/components/common/layout/theHeader/ThemeSwitch.vue +1 -1
- package/components/common/layout/theHeader/modals/reconnect/New.vue +38 -30
- package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePassword.vue +16 -10
- package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +7 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +10 -2
- package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +12 -8
- package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +7 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +8 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/security/Security.vue +48 -28
- package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +9 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +1 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/New.vue +20 -8
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +11 -11
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +12 -6
- package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
- package/components/common/modals/Rename.vue +3 -1
- package/components/common/modals/newFolder/new/Location.vue +21 -1
- package/components/common/monitor/advanced/Advanced.vue +8 -5
- package/components/common/monitor/advanced/AdvancedNew.vue +4 -2
- package/components/common/monitor/advanced/AdvancedOld.vue +8 -3
- package/components/common/monitor/advanced/table/lib/models/interfaces.ts +1 -0
- package/components/common/monitor/advanced/table/lib/models/types.ts +1 -4
- package/components/common/monitor/advanced/table/tableNew/TableNew.vue +1 -0
- package/components/common/monitor/advanced/table/tableNew/lib/config/options.ts +8 -38
- package/components/common/monitor/advanced/table/tableNew/lib/utils/constructBody.ts +5 -7
- package/components/common/monitor/advanced/table/tableOld/lib/config/performanceDatatable.ts +27 -31
- package/components/common/monitor/advanced/tools/Tools.vue +17 -13
- package/components/common/monitor/advanced/tools/ToolsNew.vue +4 -2
- package/components/common/monitor/advanced/tools/ToolsOld.vue +4 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +38 -18
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +99 -80
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +9 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsOld.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +13 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +22 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +9 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +7 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1901 -493
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +5 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +9 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/config/tableConfig.ts +4 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +3 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +14 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +22 -21
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/config/index.ts +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +11 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +34 -1
- package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +80 -11
- package/components/common/monitor/lib/utils/local_be.json +714 -0
- package/components/common/monitor/lib/utils/local_en.json +714 -0
- package/components/common/monitor/lib/utils/local_hy.json +714 -0
- package/components/common/monitor/lib/utils/local_kk.json +714 -0
- package/components/common/monitor/lib/utils/local_ru.json +714 -0
- package/components/common/monitor/lib/utils/local_zh.json +714 -0
- package/components/common/monitor/lib/utils/localization.ts +43 -0
- package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +3 -1
- package/components/common/monitor/utilization/Old.vue +120 -0
- package/components/common/monitor/utilization/Utilization.vue +65 -0
- package/components/common/monitor/utilization/infoBlock/InfoBlock.vue +146 -0
- package/components/common/monitor/utilization/infoBlock/New.vue +185 -0
- package/components/common/monitor/utilization/infoBlock/Old.vue +190 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/New.vue +64 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/Old.vue +65 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/ProgressBar.vue +84 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/lib/models/interfaces.ts +10 -0
- package/components/common/monitor/utilization/lib/models/interfaces.ts +27 -0
- package/components/common/monitor/utilization/lib/models/types.ts +1 -0
- package/components/common/monitor/utilization/lib/utils/index.ts +112 -0
- package/components/common/monitor/utilization/new/New.vue +195 -0
- package/components/common/monitor/utilization/new/Portlet.vue +42 -0
- package/components/common/monitor/utilization/new/Skeleton.vue +120 -0
- package/components/common/monitor/utilization/new/lib/utils/newPortlet.ts +7 -0
- package/components/common/noDataProvided/NoDataProvided.vue +17 -0
- package/components/common/noDataProvided/NoDataProvidedNew.vue +66 -0
- package/components/common/noDataProvided/NoDataProvidedOld.vue +18 -0
- package/components/common/pages/auth/TheFooter.vue +9 -0
- package/components/common/pages/backups/lib/models/interfaces.ts +1 -0
- package/components/common/pages/backups/modals/Modals.vue +1 -0
- package/components/common/pages/backups/modals/createBackup/New.vue +4 -0
- package/components/common/pages/backups/modals/createBackup/Old.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table.ts +4 -4
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table.ts +4 -4
- package/components/common/pages/backups/modals/createBackup/disks/tableView/new/TableView.vue +0 -1
- package/components/common/pages/backups/modals/createBackup/disks/tableView/new/lib/config/table.ts +1 -1
- package/components/common/pages/backups/modals/createBackup/general/General.vue +1 -0
- package/components/common/pages/backups/modals/createBackup/general/GeneralNew.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/general/GeneralOld.vue +59 -9
- package/components/common/pages/backups/modals/lib/config/restore.ts +1 -0
- package/components/common/pages/backups/modals/lib/models/interfaces.ts +1 -0
- package/components/common/pages/backups/modals/restore/New.vue +40 -35
- package/components/common/pages/backups/modals/restore/Restore.vue +4 -5
- package/components/common/pages/backups/modals/restore/disks/tableView/new/Table.vue +6 -1
- package/components/common/pages/backups/modals/restore/disks/tableView/new/lib/config/table.ts +1 -0
- package/components/common/pages/backups/modals/restore/lib/config/steps.ts +1 -1
- package/components/common/pages/backups/modals/restore/name/NameNew.vue +3 -0
- package/components/common/pages/backups/modals/restore/networks/table/new/Table.vue +7 -0
- package/components/common/pages/hardwareHealth/HardwareHealth.vue +69 -148
- package/components/common/pages/hardwareHealth/HardwareHealthNew.vue +252 -0
- package/components/common/pages/hardwareHealth/HardwareHealthOld.vue +192 -0
- package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +204 -251
- package/components/common/pages/hardwareHealth/historyTestimony/GraphNew.vue +211 -0
- package/components/common/pages/hardwareHealth/historyTestimony/GraphOld.vue +212 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +96 -248
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsNew.vue +227 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsOld.vue +289 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +110 -112
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalNew.vue +173 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalOld.vue +168 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/NotificationNew.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +34 -55
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +145 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsOld.vue +81 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/{SaveOptionsModal.vue → saveOptionsModal/SaveOptionsModal.vue} +2 -2
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +70 -49
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersNew.vue +108 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersOld.vue +93 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +25 -78
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +13 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +58 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/options.ts +19 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/tableData.ts +73 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/utils/constructTable.ts +31 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableOld/TableOld.vue +103 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/config/tableConfig.ts +3 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +50 -33
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +177 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +65 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +15 -9
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsNew.vue +121 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsOld.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +68 -5
- package/components/common/pages/hardwareHealth/indicators/Indicators.vue +96 -0
- package/components/common/pages/hardwareHealth/indicators/lib/models/interfaces.ts +5 -0
- package/components/common/pages/hardwareHealth/lib/config/status.ts +14 -0
- package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +38 -0
- package/components/common/pages/hardwareHealth/lib/models/enums.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/new/New.vue +230 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/alertWarningTable.ts +99 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/historyTestimonyTable.ts +126 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/sensorTable.ts +164 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/storageSensorsTable.ts +88 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/systemLogTable.ts +74 -0
- package/components/common/pages/hardwareHealth/tableView/{TableView.vue → old/Old.vue} +16 -7
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/alertWarningTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/historyTestimonyTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/sensorTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/storageSensorTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/systemLogTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/{modal → old/modal}/SensorWarning.vue +3 -0
- package/components/common/pages/hardwareHealth/tooltip/Tooltip.vue +73 -0
- package/components/common/pages/licensing/listView/lib/config/list.ts +1 -1
- package/components/common/pages/scheduledTasks/lib/models/interfaces.ts +6 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/Frequency.vue +51 -42
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/AfterStartup.vue +20 -48
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/New.vue +73 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/Old.vue +65 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/End.vue +18 -69
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/New.vue +104 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/Old.vue +112 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Interval.vue +22 -53
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/New.vue +79 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Old.vue +68 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/lib/utils.ts +1 -1
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/New.vue +170 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/Old.vue +234 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/On.vue +30 -168
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/config/options.ts +17 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/New.vue +66 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/Old.vue +44 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/SelectWeek.vue +17 -28
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/config/weekOptions.ts +20 -50
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/New.vue +83 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/Old.vue +77 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/StartOn.vue +20 -51
- package/components/common/pages/scheduledTasks/modals/common/taskForm/New.vue +338 -0
- package/components/common/pages/scheduledTasks/modals/common/{newTaskForm/NewTaskForm.vue → taskForm/Old.vue} +12 -69
- package/components/common/pages/scheduledTasks/modals/common/taskForm/TaskForm.vue +129 -0
- package/components/common/pages/scheduledTasks/table/Table.vue +27 -81
- package/components/common/pages/scheduledTasks/table/expandDetails/ExpandDetails.vue +2 -2
- package/components/common/pages/scheduledTasks/table/expandDetails/New.vue +47 -17
- package/components/common/pages/scheduledTasks/table/expandDetails/Old.vue +4 -9
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/HistoryRun.vue +16 -54
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/New.vue +146 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/lib/config/historyRunsTable.ts +161 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/old/Old.vue +68 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/historyRunsTable.ts +4 -4
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/scheduledTasks/table/expandDetails/lib/config/expandDetails.ts +7 -5
- package/components/common/pages/scheduledTasks/table/expandDetails/lib/models/interfaces.ts +8 -0
- package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +13 -0
- package/components/common/pages/scheduledTasks/table/new/New.vue +318 -0
- package/components/common/pages/scheduledTasks/table/new/lib/config/scheduledTasksTable.ts +192 -0
- package/components/common/pages/scheduledTasks/table/new/lib/models/enums.ts +14 -0
- package/components/common/pages/scheduledTasks/table/old/Old.vue +93 -0
- package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/scheduledTasksTable.ts +13 -9
- package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/shortcuts/Shortcuts.vue +1 -1
- package/components/common/pages/shortcuts/category/CategoryNew.vue +1 -0
- package/components/common/pages/shortcuts/category/CategoryOld.vue +1 -0
- package/components/common/pages/shortcuts/lib/models/interfaces.ts +2 -0
- package/components/common/pages/tasks/Tasks.vue +4 -1
- package/components/common/pages/tasks/table/Table.vue +25 -23
- package/components/common/readyToComplete/New.vue +1 -0
- package/components/common/spiceConsole/SpiceConsole.vue +38 -0
- package/components/common/spiceConsole/keyboard/Keyboard.vue +5 -2
- package/components/common/split/horizontal/New.vue +6 -3
- package/components/common/split/horizontal/Old.vue +1 -1
- package/components/common/split/vertical/New.vue +42 -8
- package/components/common/split/vertical/Old.vue +31 -2
- package/components/common/split/vertical/Vertical.vue +4 -0
- package/components/common/tools/Actions.vue +8 -3
- package/components/common/tools/lib/models/interfaces.ts +2 -0
- package/components/common/tooltip/Help.vue +28 -28
- package/components/common/vm/actions/add/New.vue +21 -6
- package/components/common/vm/actions/clone/Clone.vue +78 -68
- package/components/common/vm/actions/clone/lib/config/steps.ts +8 -8
- package/components/common/vm/actions/clone/new/New.vue +71 -36
- package/components/common/vm/actions/clone/new/SkeletonName.vue +22 -0
- package/components/common/vm/actions/clone/old/Old.vue +10 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +4 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/New.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/Old.vue +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +14 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/New.vue +5 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Old.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +30 -9
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +7 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Old.vue +6 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +29 -7
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +3 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +12 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/New.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Old.vue +6 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +6 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +9 -12
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +11 -3
- package/components/common/vm/actions/common/select/createType/lib/config/items.ts +1 -1
- package/components/common/vm/actions/common/select/options/New.vue +56 -48
- package/components/common/vm/actions/common/select/options/Old.vue +42 -24
- package/components/common/vm/actions/common/select/options/Options.vue +33 -2
- package/components/common/vm/actions/common/select/storage/Old.vue +0 -1
- package/components/common/vm/actions/common/select/storage/Storage.vue +2 -3
- package/components/common/vm/actions/common/select/storage/new/New.vue +13 -10
- package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +13 -15
- package/components/common/vm/actions/confirm/Confirm.vue +3 -0
- package/components/common/vm/actions/consolidate/New.vue +1 -1
- package/components/common/vm/actions/consolidate/Old.vue +2 -2
- package/components/common/vm/actions/editSettings/EditSettings.vue +20 -1
- package/components/common/vm/actions/register/New.vue +55 -27
- package/components/common/vm/actions/register/lib/config/steps.ts +1 -1
- package/components/common/vm/actions/rename/New.vue +11 -1
- package/components/common/vm/actions/rename/Old.vue +1 -0
- package/components/common/vm/actions/rename/Rename.vue +6 -0
- package/components/common/vm/snapshots/DetailView.vue +6 -6
- package/components/common/vm/snapshots/lib/models/types.ts +1 -0
- package/components/common/vm/snapshots/modals/confirm/New.vue +3 -2
- package/components/common/vm/snapshots/modals/confirm/Old.vue +3 -3
- package/components/common/vm/snapshots/modals/confirm/lib/models/enums.ts +2 -0
- package/components/common/vm/snapshots/modals/lib/config/modalTexts.ts +1 -0
- package/components/common/wizards/common/steps/name/New.vue +56 -35
- package/components/common/wizards/datastore/add/New.vue +6 -0
- package/components/common/wizards/datastore/add/lib/config/steps.ts +1 -1
- package/components/common/wizards/datastore/add/steps/_vmfsVersion/lib/config/versionOptions.ts +2 -2
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +60 -42
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/AdvancedOptions.vue +7 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +53 -76
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/Old.vue +13 -61
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/lib/config/raidOptions.ts +35 -0
- package/components/common/wizards/network/add/Add.vue +99 -109
- package/components/common/wizards/network/add/AddNew.vue +50 -21
- package/components/common/wizards/network/add/AddOld.vue +2 -2
- package/components/common/wizards/network/add/lib/config/config.ts +1 -1
- package/components/common/wizards/network/add/lib/config/initialData.ts +23 -9
- package/components/common/wizards/network/add/lib/config/selectSwitch.ts +5 -4
- package/components/common/wizards/network/add/lib/config/steps.ts +4 -2
- package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
- package/components/common/wizards/network/add/lib/utils/utils.ts +8 -3
- package/components/common/wizards/network/add/mappers/mappers.ts +12 -5
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettings.vue +19 -13
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsNew.vue +10 -2
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +11 -4
- package/components/common/wizards/network/add/steps/createStandardSwitch/CreateStandardSwitch.vue +8 -26
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettings.vue +25 -16
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +84 -17
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
- package/components/common/wizards/network/add/steps/portProperties/PortProperties.vue +13 -9
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +29 -5
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +8 -3
- package/components/common/wizards/network/add/steps/readyComplete/ReadyComplete.vue +8 -6
- package/components/common/wizards/network/add/steps/readyComplete/ReadyCompleteNew.vue +16 -7
- package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionType.vue +7 -8
- package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeNew.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDevice.vue +11 -12
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +89 -19
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectNetwork.vue +8 -9
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectStandardSwitch.vue +8 -9
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectSwitch.vue +9 -10
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +21 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectStandardSwitch.vue +18 -1
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectSwitch.vue +18 -1
- package/components/common/wizards/network/add/validations/common.ts +8 -3
- package/components/common/wizards/network/add/validations/connectionSettings.ts +2 -2
- package/components/common/wizards/network/add/validations/networkValidation.ts +2 -2
- package/components/common/wizards/network/add/validations/portProperties.ts +2 -2
- package/components/common/wizards/vm/migrate/New.vue +15 -4
- package/components/common/wizards/vm/migrate/Old.vue +1 -1
- package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +5 -0
- package/components/common/wizards/vm/migrate/lib/config/steps.ts +3 -2
- package/components/common/wizards/vm/migrate/steps/computeResource/ComputeResource.vue +30 -9
- package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -2
- package/components/common/wizards/vm/migrate/steps/computeResource/Old.vue +0 -1
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/New.vue +40 -21
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/clusterTable.ts +340 -0
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable.ts +44 -14
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/models/enums.ts +4 -0
- package/components/common/wizards/vm/migrate/steps/priority/New.vue +7 -2
- package/components/common/wizards/vm/migrate/steps/selectStorage/New.vue +22 -7
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/New.vue +6 -0
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/New.vue +4 -1
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/lib/config/datastoreTable.ts +12 -16
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/New.vue +10 -5
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/lib/config/diskTable.ts +16 -11
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/old/lib/config/diskTable.ts +7 -1
- package/components/common/wizards/vm/migrate/steps/selectStorage/selectedPerDisk/New.vue +17 -10
- package/components/common/wizards/vm/migrate/steps/type/TypeNew.vue +1 -0
- package/components/common/wizards/vm/migrate/vmOrigin/New.vue +35 -15
- package/composables/useLocalStorage.ts +1 -1
- package/lib/models/interfaces.ts +3 -0
- package/lib/models/store/tasks/enums.ts +3 -0
- package/lib/models/store/tasks/types.ts +7 -6
- package/lib/utils/validation.ts +3 -2
- package/package.json +3 -3
- package/plugins/directives.ts +3 -5
- package/public/spice-console/application/WorkerProcess.js +411 -303
- package/public/spice-console/application/agent.js +18 -17
- package/public/spice-console/application/application.js +7 -6
- package/public/spice-console/lib/graphic.js +55 -11
- package/public/spice-console/process/mainprocess.js +10 -2
- package/public/spice-console/run.js +19 -8
- package/public/spice-console-minify/WorkerProcess.min.js +1 -1
- package/public/spice-console-minify/run.min.js +1 -1
- package/store/tasks/actions.ts +26 -8
- package/store/tasks/mappers/recentTasks.ts +1 -0
- package/components/common/certificate/lib/config/tabsPannel.ts +0 -22
- package/components/common/pages/scheduledTasks/table/lib/config/schedulerStatus.ts +0 -4
- package/components/common/pages/scheduledTasks/table/lib/models/interfaces.ts +0 -11
- /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/{Notification.vue → NotificationOld.vue} +0 -0
- /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/models/types.ts +0 -0
- /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/interfaces.ts +0 -0
- /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/types.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/models/interfaces.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/utils.ts +0 -0
- /package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/models/types.ts +0 -0
- /package/components/common/pages/scheduledTasks/table/{lib → old/lib}/models/types.ts +0 -0
|
@@ -9,11 +9,15 @@ import type {
|
|
|
9
9
|
UI_T_ChartVm,
|
|
10
10
|
} from '~/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/types'
|
|
11
11
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
12
|
+
import type { UI_T_Project } from '~/lib/models/types'
|
|
12
13
|
|
|
13
14
|
const hostItemsFunc = (
|
|
14
15
|
chart: UI_T_ChartHost,
|
|
15
16
|
localization: UI_I_Localization,
|
|
16
|
-
type: UI_T_AdvancedType
|
|
17
|
+
type: UI_T_AdvancedType,
|
|
18
|
+
project: UI_T_Project,
|
|
19
|
+
powerData: UI_I_AdvancedCounterItem[],
|
|
20
|
+
temperatureData: UI_I_AdvancedCounterItem[]
|
|
17
21
|
): UI_I_AdvancedCounterItem[] => {
|
|
18
22
|
const cpu: UI_I_AdvancedCounterItem[] = [
|
|
19
23
|
{
|
|
@@ -49,7 +53,8 @@ const hostItemsFunc = (
|
|
|
49
53
|
description: localization.inventoryMonitor.totalCpuUsageMhz,
|
|
50
54
|
measurement: localization.inventoryMonitor.numberOfMhz,
|
|
51
55
|
units: localization.inventoryMonitor.mhz,
|
|
52
|
-
nameEn: 'commonUsageMhz',
|
|
56
|
+
// nameEn: 'commonUsageMhz',
|
|
57
|
+
nameEn: 'totalMHz',
|
|
53
58
|
testId: 'counters-table-common-usage-mhz',
|
|
54
59
|
},
|
|
55
60
|
{
|
|
@@ -58,7 +63,8 @@ const hostItemsFunc = (
|
|
|
58
63
|
description: localization.inventoryMonitor.averageProcLoadMhz,
|
|
59
64
|
measurement: localization.inventoryMonitor.numberOfMhz,
|
|
60
65
|
units: localization.inventoryMonitor.mhz,
|
|
61
|
-
nameEn: 'averageCoreFrequency',
|
|
66
|
+
// nameEn: 'averageCoreFrequency',
|
|
67
|
+
nameEn: 'averageMHz',
|
|
62
68
|
testId: 'counters-table-average-core-frequency',
|
|
63
69
|
},
|
|
64
70
|
]
|
|
@@ -609,334 +615,944 @@ const hostItemsFunc = (
|
|
|
609
615
|
},
|
|
610
616
|
]
|
|
611
617
|
|
|
618
|
+
const hyperConvergedInfrastructure: UI_I_AdvancedCounterItem[] = []
|
|
619
|
+
const nfs: UI_I_AdvancedCounterItem[] = [
|
|
620
|
+
{
|
|
621
|
+
id: 1,
|
|
622
|
+
name: localization.inventoryMonitor.readThroughput,
|
|
623
|
+
description: '--',
|
|
624
|
+
measurement: '--',
|
|
625
|
+
units: localization.inventoryMonitor.kbs,
|
|
626
|
+
nameEn: 'read rate',
|
|
627
|
+
testId: 'counters-table-nfs-item-1',
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
id: 2,
|
|
631
|
+
name: localization.inventoryMonitor.readOperationLatency,
|
|
632
|
+
description: '--',
|
|
633
|
+
measurement: '--',
|
|
634
|
+
units: localization.inventoryMonitor.ms,
|
|
635
|
+
nameEn: 'read latency',
|
|
636
|
+
testId: 'counters-table-nfs-item-2',
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
id: 3,
|
|
640
|
+
name: localization.inventoryMonitor.numberOfReadRequests,
|
|
641
|
+
description: '--',
|
|
642
|
+
measurement: '--',
|
|
643
|
+
units: localization.inventoryMonitor.item,
|
|
644
|
+
nameEn: 'read requests',
|
|
645
|
+
testId: 'counters-table-nfs-item-3',
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
id: 4,
|
|
649
|
+
name: localization.inventoryMonitor.readCommandsIssued,
|
|
650
|
+
description: '--',
|
|
651
|
+
measurement: '--',
|
|
652
|
+
units: localization.inventoryMonitor.item,
|
|
653
|
+
nameEn: 'read commands issued',
|
|
654
|
+
testId: 'counters-table-nfs-item-4',
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
id: 5,
|
|
658
|
+
name: localization.inventoryMonitor.readCommandsLatency,
|
|
659
|
+
description: '--',
|
|
660
|
+
measurement: '--',
|
|
661
|
+
units: localization.inventoryMonitor.ms,
|
|
662
|
+
nameEn: 'read commands latency',
|
|
663
|
+
testId: 'counters-table-nfs-item-5',
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
id: 6,
|
|
667
|
+
name: localization.inventoryMonitor.writeThroughput,
|
|
668
|
+
description: '--',
|
|
669
|
+
measurement: '--',
|
|
670
|
+
units: localization.inventoryMonitor.kbs,
|
|
671
|
+
nameEn: 'write rate',
|
|
672
|
+
testId: 'counters-table-nfs-item-6',
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
id: 7,
|
|
676
|
+
name: localization.inventoryMonitor.writeOperationLatency,
|
|
677
|
+
description: '--',
|
|
678
|
+
measurement: '--',
|
|
679
|
+
units: localization.inventoryMonitor.ms,
|
|
680
|
+
nameEn: 'write latency',
|
|
681
|
+
testId: 'counters-table-nfs-item-7',
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
id: 8,
|
|
685
|
+
name: localization.inventoryMonitor.numberOfWriteRequests,
|
|
686
|
+
description: '--',
|
|
687
|
+
measurement: '--',
|
|
688
|
+
units: localization.inventoryMonitor.item,
|
|
689
|
+
nameEn: 'write requests',
|
|
690
|
+
testId: 'counters-table-nfs-item-8',
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
id: 9,
|
|
694
|
+
name: localization.inventoryMonitor.avgCommandsSec,
|
|
695
|
+
description: '--',
|
|
696
|
+
measurement: '--',
|
|
697
|
+
units: localization.inventoryMonitor.itemSec,
|
|
698
|
+
nameEn: 'average commands issued per second',
|
|
699
|
+
testId: 'counters-table-nfs-item-9',
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
id: 10,
|
|
703
|
+
name: localization.inventoryMonitor.avgReadReqSec,
|
|
704
|
+
description: '--',
|
|
705
|
+
measurement: '--',
|
|
706
|
+
units: localization.inventoryMonitor.itemSec,
|
|
707
|
+
nameEn: 'average read requests per second',
|
|
708
|
+
testId: 'counters-table-nfs-item-10',
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
id: 11,
|
|
712
|
+
name: localization.inventoryMonitor.avgWriteReqSec,
|
|
713
|
+
description: '--',
|
|
714
|
+
measurement: '--',
|
|
715
|
+
units: localization.inventoryMonitor.itemSec,
|
|
716
|
+
nameEn: 'average write requests per second',
|
|
717
|
+
testId: 'counters-table-nfs-item-11',
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
id: 12,
|
|
721
|
+
name: localization.inventoryMonitor.readOpsSec,
|
|
722
|
+
description: '--',
|
|
723
|
+
measurement: '--',
|
|
724
|
+
units: localization.inventoryMonitor.opsSec,
|
|
725
|
+
nameEn: 'READ ops_per_sec',
|
|
726
|
+
testId: 'counters-table-nfs-item-12',
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
id: 13,
|
|
730
|
+
name: localization.inventoryMonitor.readThroughput2,
|
|
731
|
+
description: '--',
|
|
732
|
+
measurement: '--',
|
|
733
|
+
units: localization.inventoryMonitor.bS,
|
|
734
|
+
nameEn: 'READ bytes_per_sec',
|
|
735
|
+
testId: 'counters-table-nfs-item-13',
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
id: 14,
|
|
739
|
+
name: localization.inventoryMonitor.readRetransSec,
|
|
740
|
+
description: '--',
|
|
741
|
+
measurement: '--',
|
|
742
|
+
units: localization.inventoryMonitor.itemSec,
|
|
743
|
+
nameEn: 'READ retrans_per_sec',
|
|
744
|
+
testId: 'counters-table-nfs-item-14',
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
id: 15,
|
|
748
|
+
name: localization.inventoryMonitor.readTimeoutsSec,
|
|
749
|
+
description: '--',
|
|
750
|
+
measurement: '--',
|
|
751
|
+
units: localization.inventoryMonitor.itemSec,
|
|
752
|
+
nameEn: 'READ timeouts_per_sec',
|
|
753
|
+
testId: 'counters-table-nfs-item-15',
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
id: 16,
|
|
757
|
+
name: localization.inventoryMonitor.avgReadExecTime,
|
|
758
|
+
description: '--',
|
|
759
|
+
measurement: '--',
|
|
760
|
+
units: localization.inventoryMonitor.ms,
|
|
761
|
+
nameEn: 'READ avg_exec_ms',
|
|
762
|
+
testId: 'counters-table-nfs-item-16',
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
id: 17,
|
|
766
|
+
name: localization.inventoryMonitor.avgReadRtt,
|
|
767
|
+
description: '--',
|
|
768
|
+
measurement: '--',
|
|
769
|
+
units: localization.inventoryMonitor.ms,
|
|
770
|
+
nameEn: 'READ avg_rtt_ms',
|
|
771
|
+
testId: 'counters-table-nfs-item-17',
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
id: 18,
|
|
775
|
+
name: localization.inventoryMonitor.writeOpsSec,
|
|
776
|
+
description: '--',
|
|
777
|
+
measurement: '--',
|
|
778
|
+
units: localization.inventoryMonitor.opsSec,
|
|
779
|
+
nameEn: 'WRITE ops_per_sec',
|
|
780
|
+
testId: 'counters-table-nfs-item-18',
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
id: 19,
|
|
784
|
+
name: localization.inventoryMonitor.writeThroughput2,
|
|
785
|
+
description: '--',
|
|
786
|
+
measurement: '--',
|
|
787
|
+
units: localization.inventoryMonitor.bS,
|
|
788
|
+
nameEn: 'WRITE bytes_per_sec',
|
|
789
|
+
testId: 'counters-table-nfs-item-19',
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
id: 20,
|
|
793
|
+
name: localization.inventoryMonitor.writeRetransSec,
|
|
794
|
+
description: '--',
|
|
795
|
+
measurement: '--',
|
|
796
|
+
units: localization.inventoryMonitor.itemSec,
|
|
797
|
+
nameEn: 'WRITE retrans_per_sec',
|
|
798
|
+
testId: 'counters-table-nfs-item-20',
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
id: 21,
|
|
802
|
+
name: localization.inventoryMonitor.writeTimeoutsSec,
|
|
803
|
+
description: '--',
|
|
804
|
+
measurement: '--',
|
|
805
|
+
units: localization.inventoryMonitor.itemSec,
|
|
806
|
+
nameEn: 'WRITE timeouts_per_sec',
|
|
807
|
+
testId: 'counters-table-nfs-item-21',
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
id: 22,
|
|
811
|
+
name: localization.inventoryMonitor.avgWriteExecTime,
|
|
812
|
+
description: '--',
|
|
813
|
+
measurement: '--',
|
|
814
|
+
units: localization.inventoryMonitor.ms,
|
|
815
|
+
nameEn: 'WRITE avg_exec_ms',
|
|
816
|
+
testId: 'counters-table-nfs-item-22',
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
id: 23,
|
|
820
|
+
name: localization.inventoryMonitor.avgWriteRtt,
|
|
821
|
+
description: '--',
|
|
822
|
+
measurement: '--',
|
|
823
|
+
units: localization.inventoryMonitor.ms,
|
|
824
|
+
nameEn: 'WRITE avg_rtt_ms',
|
|
825
|
+
testId: 'counters-table-nfs-item-23',
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
id: 24,
|
|
829
|
+
name: localization.inventoryMonitor.getAttributesSec,
|
|
830
|
+
description: '--',
|
|
831
|
+
measurement: '--',
|
|
832
|
+
units: localization.inventoryMonitor.opsSec,
|
|
833
|
+
nameEn: 'GETATTR ops_per_sec',
|
|
834
|
+
testId: 'counters-table-nfs-item-24',
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
id: 25,
|
|
838
|
+
name: localization.inventoryMonitor.lookupOpsSec,
|
|
839
|
+
description: '--',
|
|
840
|
+
measurement: '--',
|
|
841
|
+
units: localization.inventoryMonitor.opsSec,
|
|
842
|
+
nameEn: 'LOOKUP ops_per_sec',
|
|
843
|
+
testId: 'counters-table-nfs-item-25',
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
id: 26,
|
|
847
|
+
name: localization.inventoryMonitor.accessCheckSec,
|
|
848
|
+
description: '--',
|
|
849
|
+
measurement: '--',
|
|
850
|
+
units: localization.inventoryMonitor.opsSec,
|
|
851
|
+
nameEn: 'ACCESS ops_per_sec',
|
|
852
|
+
testId: 'counters-table-nfs-item-26',
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
id: 27,
|
|
856
|
+
name: localization.inventoryMonitor.totalOpsSec,
|
|
857
|
+
description: '--',
|
|
858
|
+
measurement: '--',
|
|
859
|
+
units: localization.inventoryMonitor.opsSec,
|
|
860
|
+
nameEn: 'TOTAL ops_per_sec',
|
|
861
|
+
testId: 'counters-table-nfs-item-27',
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
id: 28,
|
|
865
|
+
name: localization.inventoryMonitor.totalThroughput,
|
|
866
|
+
description: '--',
|
|
867
|
+
measurement: '--',
|
|
868
|
+
units: localization.inventoryMonitor.bS,
|
|
869
|
+
nameEn: 'TOTAL bytes_per_sec',
|
|
870
|
+
testId: 'counters-table-nfs-item-28',
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
id: 29,
|
|
874
|
+
name: localization.inventoryMonitor.totalRetransSec,
|
|
875
|
+
description: '--',
|
|
876
|
+
measurement: '--',
|
|
877
|
+
units: localization.inventoryMonitor.itemSec,
|
|
878
|
+
nameEn: 'TOTAL retrans_per_sec',
|
|
879
|
+
testId: 'counters-table-nfs-item-29',
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
id: 30,
|
|
883
|
+
name: localization.inventoryMonitor.totalTimeoutsSec,
|
|
884
|
+
description: '--',
|
|
885
|
+
measurement: '--',
|
|
886
|
+
units: localization.inventoryMonitor.itemSec,
|
|
887
|
+
nameEn: 'TOTAL timeouts_per_sec',
|
|
888
|
+
testId: 'counters-table-nfs-item-30',
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
id: 31,
|
|
892
|
+
name: localization.inventoryMonitor.avgTotalExecTime,
|
|
893
|
+
description: '--',
|
|
894
|
+
measurement: '--',
|
|
895
|
+
units: localization.inventoryMonitor.ms,
|
|
896
|
+
nameEn: 'TOTAL avg_exec_ms',
|
|
897
|
+
testId: 'counters-table-nfs-item-31',
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
id: 32,
|
|
901
|
+
name: localization.inventoryMonitor.avgTotalRtt,
|
|
902
|
+
description: '--',
|
|
903
|
+
measurement: '--',
|
|
904
|
+
units: localization.inventoryMonitor.ms,
|
|
905
|
+
nameEn: 'TOTAL avg_rtt_ms',
|
|
906
|
+
testId: 'counters-table-nfs-item-32',
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
id: 33,
|
|
910
|
+
name: localization.inventoryMonitor.nullOpsSec,
|
|
911
|
+
description: '--',
|
|
912
|
+
measurement: '--',
|
|
913
|
+
units: localization.inventoryMonitor.opsSec,
|
|
914
|
+
nameEn: 'rpc.client.proc4.NULL_per_sec',
|
|
915
|
+
testId: 'counters-table-nfs-item-33',
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
id: 34,
|
|
919
|
+
name: localization.inventoryMonitor.compoundOpsSec,
|
|
920
|
+
description: '--',
|
|
921
|
+
measurement: '--',
|
|
922
|
+
units: localization.inventoryMonitor.opsSec,
|
|
923
|
+
nameEn: 'rpc.client.proc4.COMPOUND_per_sec',
|
|
924
|
+
testId: 'counters-table-nfs-item-34',
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
id: 35,
|
|
928
|
+
name: localization.inventoryMonitor.openOpsSec,
|
|
929
|
+
description: '--',
|
|
930
|
+
measurement: '--',
|
|
931
|
+
units: localization.inventoryMonitor.opsSec,
|
|
932
|
+
nameEn: 'rpc.client.proc4.OPEN_per_sec',
|
|
933
|
+
testId: 'counters-table-nfs-item-35',
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
id: 36,
|
|
937
|
+
name: localization.inventoryMonitor.openConfirmSec,
|
|
938
|
+
description: '--',
|
|
939
|
+
measurement: '--',
|
|
940
|
+
units: localization.inventoryMonitor.opsSec,
|
|
941
|
+
nameEn: 'rpc.client.proc4.OPEN_CONFIRM_per_sec',
|
|
942
|
+
testId: 'counters-table-nfs-item-36',
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
id: 37,
|
|
946
|
+
name: localization.inventoryMonitor.openNoattrSec,
|
|
947
|
+
description: '--',
|
|
948
|
+
measurement: '--',
|
|
949
|
+
units: localization.inventoryMonitor.opsSec,
|
|
950
|
+
nameEn: 'rpc.client.proc4.OPEN_NOATTR_per_sec',
|
|
951
|
+
testId: 'counters-table-nfs-item-37',
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
id: 38,
|
|
955
|
+
name: localization.inventoryMonitor.openDowngradeSec,
|
|
956
|
+
description: '--',
|
|
957
|
+
measurement: '--',
|
|
958
|
+
units: localization.inventoryMonitor.opsSec,
|
|
959
|
+
nameEn: 'rpc.client.proc4.OPEN_DOWNGRADE_per_sec',
|
|
960
|
+
testId: 'counters-table-nfs-item-38',
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
id: 39,
|
|
964
|
+
name: localization.inventoryMonitor.closeOpsSec,
|
|
965
|
+
description: '--',
|
|
966
|
+
measurement: '--',
|
|
967
|
+
units: localization.inventoryMonitor.opsSec,
|
|
968
|
+
nameEn: 'rpc.client.proc4.CLOSE_per_sec',
|
|
969
|
+
testId: 'counters-table-nfs-item-39',
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
id: 40,
|
|
973
|
+
name: localization.inventoryMonitor.setattrOpsSec,
|
|
974
|
+
description: '--',
|
|
975
|
+
measurement: '--',
|
|
976
|
+
units: localization.inventoryMonitor.opsSec,
|
|
977
|
+
nameEn: 'rpc.client.proc4.SETATTR_per_sec',
|
|
978
|
+
testId: 'counters-table-nfs-item-40',
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
id: 41,
|
|
982
|
+
name: localization.inventoryMonitor.fsinfoOpsSec,
|
|
983
|
+
description: '--',
|
|
984
|
+
measurement: '--',
|
|
985
|
+
units: localization.inventoryMonitor.opsSec,
|
|
986
|
+
nameEn: 'rpc.client.proc4.FSINFO_per_sec',
|
|
987
|
+
testId: 'counters-table-nfs-item-41',
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
id: 42,
|
|
991
|
+
name: localization.inventoryMonitor.renewOpsSec,
|
|
992
|
+
description: '--',
|
|
993
|
+
measurement: '--',
|
|
994
|
+
units: localization.inventoryMonitor.opsSec,
|
|
995
|
+
nameEn: 'rpc.client.proc4.RENEW_per_sec',
|
|
996
|
+
testId: 'counters-table-nfs-item-42',
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
id: 43,
|
|
1000
|
+
name: localization.inventoryMonitor.setclientidSec,
|
|
1001
|
+
description: '--',
|
|
1002
|
+
measurement: '--',
|
|
1003
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1004
|
+
nameEn: 'rpc.client.proc4.SETCLIENTID_per_sec',
|
|
1005
|
+
testId: 'counters-table-nfs-item-43',
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
id: 44,
|
|
1009
|
+
name: localization.inventoryMonitor.setclientidConfirmSec,
|
|
1010
|
+
description: '--',
|
|
1011
|
+
measurement: '--',
|
|
1012
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1013
|
+
nameEn: 'rpc.client.proc4.SETCLIENTID_CONFIRM_per_sec',
|
|
1014
|
+
testId: 'counters-table-nfs-item-44',
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
id: 45,
|
|
1018
|
+
name: localization.inventoryMonitor.lockOpsSec,
|
|
1019
|
+
description: '--',
|
|
1020
|
+
measurement: '--',
|
|
1021
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1022
|
+
nameEn: 'rpc.client.proc4.LOCK_per_sec',
|
|
1023
|
+
testId: 'counters-table-nfs-item-45',
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
id: 46,
|
|
1027
|
+
name: localization.inventoryMonitor.locktOpsSec,
|
|
1028
|
+
description: '--',
|
|
1029
|
+
measurement: '--',
|
|
1030
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1031
|
+
nameEn: 'rpc.client.proc4.LOCKT_per_sec',
|
|
1032
|
+
testId: 'counters-table-nfs-item-46',
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
id: 47,
|
|
1036
|
+
name: localization.inventoryMonitor.lockuOpsSec,
|
|
1037
|
+
description: '--',
|
|
1038
|
+
measurement: '--',
|
|
1039
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1040
|
+
nameEn: 'rpc.client.proc4.LOCKU_per_sec',
|
|
1041
|
+
testId: 'counters-table-nfs-item-47',
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
id: 48,
|
|
1045
|
+
name: localization.inventoryMonitor.accessOpsSec,
|
|
1046
|
+
description: '--',
|
|
1047
|
+
measurement: '--',
|
|
1048
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1049
|
+
nameEn: 'rpc.client.proc4.ACCESS_per_sec',
|
|
1050
|
+
testId: 'counters-table-nfs-item-48',
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
id: 49,
|
|
1054
|
+
name: localization.inventoryMonitor.getattrOpsSec,
|
|
1055
|
+
description: '--',
|
|
1056
|
+
measurement: '--',
|
|
1057
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1058
|
+
nameEn: 'rpc.client.proc4.GETATTR_per_sec',
|
|
1059
|
+
testId: 'counters-table-nfs-item-49',
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
id: 50,
|
|
1063
|
+
name: localization.inventoryMonitor.lookupOpsSec,
|
|
1064
|
+
description: '--',
|
|
1065
|
+
measurement: '--',
|
|
1066
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1067
|
+
nameEn: 'rpc.client.proc4.LOOKUP_per_sec',
|
|
1068
|
+
testId: 'counters-table-nfs-item-50',
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
id: 51,
|
|
1072
|
+
name: localization.inventoryMonitor.lookupRootSec,
|
|
1073
|
+
description: '--',
|
|
1074
|
+
measurement: '--',
|
|
1075
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1076
|
+
nameEn: 'rpc.client.proc4.LOOKUP_ROOT_per_sec',
|
|
1077
|
+
testId: 'counters-table-nfs-item-51',
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
id: 52,
|
|
1081
|
+
name: localization.inventoryMonitor.readOpsSec2,
|
|
1082
|
+
description: '--',
|
|
1083
|
+
measurement: '--',
|
|
1084
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1085
|
+
nameEn: 'rpc.client.proc4.READ_per_sec',
|
|
1086
|
+
testId: 'counters-table-nfs-item-52',
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
id: 53,
|
|
1090
|
+
name: localization.inventoryMonitor.readdirOpsSec,
|
|
1091
|
+
description: '--',
|
|
1092
|
+
measurement: '--',
|
|
1093
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1094
|
+
nameEn: 'rpc.client.proc4.READDIR_per_sec',
|
|
1095
|
+
testId: 'counters-table-nfs-item-53',
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
id: 54,
|
|
1099
|
+
name: localization.inventoryMonitor.readlinkSec,
|
|
1100
|
+
description: '--',
|
|
1101
|
+
measurement: '--',
|
|
1102
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1103
|
+
nameEn: 'rpc.client.proc4.READLINK_per_sec',
|
|
1104
|
+
testId: 'counters-table-nfs-item-54',
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
id: 55,
|
|
1108
|
+
name: localization.inventoryMonitor.removeOpsSec,
|
|
1109
|
+
description: '--',
|
|
1110
|
+
measurement: '--',
|
|
1111
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1112
|
+
nameEn: 'rpc.client.proc4.REMOVE_per_sec',
|
|
1113
|
+
testId: 'counters-table-nfs-item-55',
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
id: 56,
|
|
1117
|
+
name: localization.inventoryMonitor.renameOpsSec,
|
|
1118
|
+
description: '--',
|
|
1119
|
+
measurement: '--',
|
|
1120
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1121
|
+
nameEn: 'rpc.client.proc4.RENAME_per_sec',
|
|
1122
|
+
testId: 'counters-table-nfs-item-56',
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
id: 57,
|
|
1126
|
+
name: localization.inventoryMonitor.linkOpsSec,
|
|
1127
|
+
description: '--',
|
|
1128
|
+
measurement: '--',
|
|
1129
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1130
|
+
nameEn: 'rpc.client.proc4.LINK_per_sec',
|
|
1131
|
+
testId: 'counters-table-nfs-item-57',
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
id: 58,
|
|
1135
|
+
name: localization.inventoryMonitor.symlinkSec,
|
|
1136
|
+
description: '--',
|
|
1137
|
+
measurement: '--',
|
|
1138
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1139
|
+
nameEn: 'rpc.client.proc4.SYMLINK_per_sec',
|
|
1140
|
+
testId: 'counters-table-nfs-item-58',
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
id: 59,
|
|
1144
|
+
name: localization.inventoryMonitor.createopsSec,
|
|
1145
|
+
description: '--',
|
|
1146
|
+
measurement: '--',
|
|
1147
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1148
|
+
nameEn: 'rpc.client.proc4.CREATE_per_sec',
|
|
1149
|
+
testId: 'counters-table-nfs-item-59',
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
id: 60,
|
|
1153
|
+
name: localization.inventoryMonitor.pathconfSec,
|
|
1154
|
+
description: '--',
|
|
1155
|
+
measurement: '--',
|
|
1156
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1157
|
+
nameEn: 'rpc.client.proc4.PATHCONF_per_sec',
|
|
1158
|
+
testId: 'counters-table-nfs-item-60',
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
id: 61,
|
|
1162
|
+
name: localization.inventoryMonitor.statfsSec,
|
|
1163
|
+
description: '--',
|
|
1164
|
+
measurement: '--',
|
|
1165
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1166
|
+
nameEn: 'rpc.client.proc4.STATFS_per_sec',
|
|
1167
|
+
testId: 'counters-table-nfs-item-61',
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
id: 62,
|
|
1171
|
+
name: localization.inventoryMonitor.writeOpsSec2,
|
|
1172
|
+
description: '--',
|
|
1173
|
+
measurement: '--',
|
|
1174
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1175
|
+
nameEn: 'rpc.client.proc4.WRITE_per_sec',
|
|
1176
|
+
testId: 'counters-table-nfs-item-62',
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
id: 63,
|
|
1180
|
+
name: localization.inventoryMonitor.commitSec,
|
|
1181
|
+
description: '--',
|
|
1182
|
+
measurement: '--',
|
|
1183
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1184
|
+
nameEn: 'rpc.client.proc4.COMMIT_per_sec',
|
|
1185
|
+
testId: 'counters-table-nfs-item-63',
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
id: 64,
|
|
1189
|
+
name: localization.inventoryMonitor.delegreturnSec,
|
|
1190
|
+
description: '--',
|
|
1191
|
+
measurement: '--',
|
|
1192
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1193
|
+
nameEn: 'rpc.client.proc4.DELEGRETURN_per_sec',
|
|
1194
|
+
testId: 'counters-table-nfs-item-64',
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
id: 65,
|
|
1198
|
+
name: localization.inventoryMonitor.getfhSec,
|
|
1199
|
+
description: '--',
|
|
1200
|
+
measurement: '--',
|
|
1201
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1202
|
+
nameEn: 'rpc.client.proc4.GETFH_per_sec',
|
|
1203
|
+
testId: 'counters-table-nfs-item-65',
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
id: 66,
|
|
1207
|
+
name: localization.inventoryMonitor.secinfoSec,
|
|
1208
|
+
description: '--',
|
|
1209
|
+
measurement: '--',
|
|
1210
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1211
|
+
nameEn: 'rpc.client.proc4.SECINFO_per_sec',
|
|
1212
|
+
testId: 'counters-table-nfs-item-66',
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
id: 67,
|
|
1216
|
+
name: localization.inventoryMonitor.restorefhSec,
|
|
1217
|
+
description: '--',
|
|
1218
|
+
measurement: '--',
|
|
1219
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1220
|
+
nameEn: 'rpc.client.proc4.RESTOREFH_per_sec',
|
|
1221
|
+
testId: 'counters-table-nfs-item-67',
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
id: 68,
|
|
1225
|
+
name: localization.inventoryMonitor.savefhSec,
|
|
1226
|
+
description: '--',
|
|
1227
|
+
measurement: '--',
|
|
1228
|
+
units: localization.inventoryMonitor.opsSec,
|
|
1229
|
+
nameEn: 'rpc.client.proc4.SAVEFH_per_sec',
|
|
1230
|
+
testId: 'counters-table-nfs-item-68',
|
|
1231
|
+
},
|
|
1232
|
+
]
|
|
1233
|
+
const services: UI_I_AdvancedCounterItem[] = []
|
|
1234
|
+
let power: UI_I_AdvancedCounterItem[] = []
|
|
1235
|
+
let temperature: UI_I_AdvancedCounterItem[] = []
|
|
1236
|
+
|
|
612
1237
|
if (['zone', 'datacenter', 'cluster', 'host'].includes(type)) {
|
|
613
1238
|
cpu.push(
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
1239
|
+
{
|
|
1240
|
+
id: 5,
|
|
1241
|
+
name: localization.inventoryMonitor.cpuReady,
|
|
1242
|
+
description:
|
|
1243
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription1,
|
|
1244
|
+
measurement: '',
|
|
1245
|
+
units: '%',
|
|
1246
|
+
nameEn: 'cpu ready',
|
|
1247
|
+
testId: 'counters-table-cpu-ready',
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
id: 6,
|
|
1251
|
+
name: localization.inventoryMonitor.cpuDemand,
|
|
1252
|
+
description:
|
|
1253
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription2,
|
|
1254
|
+
measurement: '',
|
|
1255
|
+
units: '%',
|
|
1256
|
+
nameEn: 'cpu demand',
|
|
1257
|
+
testId: 'counters-table-cpu-demand',
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
id: 7,
|
|
1261
|
+
name: localization.inventoryMonitor.cpuContentionAvg.replace(
|
|
1262
|
+
'{0}',
|
|
1263
|
+
'10'
|
|
1264
|
+
),
|
|
1265
|
+
description:
|
|
1266
|
+
localization.inventoryMonitor.psiSomeCpuPressureAveragedOver.replace(
|
|
638
1267
|
'{0}',
|
|
639
1268
|
'10'
|
|
640
1269
|
),
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
1270
|
+
measurement: '',
|
|
1271
|
+
units: '%',
|
|
1272
|
+
nameEn: 'cpu contention avg10',
|
|
1273
|
+
testId: 'counters-table-cpu-contention-avg10',
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
id: 8,
|
|
1277
|
+
name: localization.inventoryMonitor.cpuContentionAvg.replace(
|
|
1278
|
+
'{0}',
|
|
1279
|
+
'60'
|
|
1280
|
+
),
|
|
1281
|
+
description:
|
|
1282
|
+
localization.inventoryMonitor.psiSomeCpuPressureAveragedOver.replace(
|
|
654
1283
|
'{0}',
|
|
655
1284
|
'60'
|
|
656
1285
|
),
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
1286
|
+
measurement: '',
|
|
1287
|
+
units: '%',
|
|
1288
|
+
nameEn: 'cpu contention avg60',
|
|
1289
|
+
testId: 'counters-table-cpu-contention-avg60',
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
id: 9,
|
|
1293
|
+
name: localization.inventoryMonitor.cpuContentionAvg.replace(
|
|
1294
|
+
'{0}',
|
|
1295
|
+
'300'
|
|
1296
|
+
),
|
|
1297
|
+
description:
|
|
1298
|
+
localization.inventoryMonitor.psiSomeCpuPressureAveragedOver.replace(
|
|
670
1299
|
'{0}',
|
|
671
1300
|
'300'
|
|
672
1301
|
),
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
{
|
|
710
|
-
id: 12,
|
|
711
|
-
name: localization.inventoryMonitor.cpuCoStopAvg.replace(
|
|
1302
|
+
measurement: '',
|
|
1303
|
+
units: '%',
|
|
1304
|
+
nameEn: 'cpu contention avg300',
|
|
1305
|
+
testId: 'counters-table-cpu-contention-avg300',
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
id: 10,
|
|
1309
|
+
name: localization.inventoryMonitor.cpuCoStopAvg.replace('{0}', '10'),
|
|
1310
|
+
description:
|
|
1311
|
+
localization.inventoryMonitor.psiFullCpuPressureAveragedOver.replace(
|
|
1312
|
+
'{0}',
|
|
1313
|
+
'10'
|
|
1314
|
+
),
|
|
1315
|
+
measurement: '',
|
|
1316
|
+
units: '%',
|
|
1317
|
+
nameEn: 'cpu co-stop avg10',
|
|
1318
|
+
testId: 'counters-table-cpu-co-stop-avg10',
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
id: 11,
|
|
1322
|
+
name: localization.inventoryMonitor.cpuCoStopAvg.replace('{0}', '60'),
|
|
1323
|
+
description:
|
|
1324
|
+
localization.inventoryMonitor.psiFullCpuPressureAveragedOver.replace(
|
|
1325
|
+
'{0}',
|
|
1326
|
+
'60'
|
|
1327
|
+
),
|
|
1328
|
+
measurement: '',
|
|
1329
|
+
units: '%',
|
|
1330
|
+
nameEn: 'cpu co-stop avg60',
|
|
1331
|
+
testId: 'counters-table-cpu-co-stop-avg60',
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
id: 12,
|
|
1335
|
+
name: localization.inventoryMonitor.cpuCoStopAvg.replace('{0}', '300'),
|
|
1336
|
+
description:
|
|
1337
|
+
localization.inventoryMonitor.psiFullCpuPressureAveragedOver.replace(
|
|
712
1338
|
'{0}',
|
|
713
1339
|
'300'
|
|
714
1340
|
),
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
measurement: '',
|
|
721
|
-
units: '%',
|
|
722
|
-
nameEn: 'cpu co-stop avg300',
|
|
723
|
-
testId: 'counters-table-cpu-co-stop-avg300',
|
|
724
|
-
},
|
|
725
|
-
]
|
|
1341
|
+
measurement: '',
|
|
1342
|
+
units: '%',
|
|
1343
|
+
nameEn: 'cpu co-stop avg300',
|
|
1344
|
+
testId: 'counters-table-cpu-co-stop-avg300',
|
|
1345
|
+
}
|
|
726
1346
|
)
|
|
727
1347
|
memory.push(
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
1348
|
+
{
|
|
1349
|
+
id: 7,
|
|
1350
|
+
name: localization.inventoryMonitor.memoryAvailable,
|
|
1351
|
+
description:
|
|
1352
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription,
|
|
1353
|
+
measurement: '',
|
|
1354
|
+
units: localization.inventoryMonitor.kilobytes,
|
|
1355
|
+
nameEn: 'available',
|
|
1356
|
+
testId: 'counters-table-memory-available',
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
id: 8,
|
|
1360
|
+
name: localization.inventoryMonitor.commitLimit,
|
|
1361
|
+
description:
|
|
1362
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription10,
|
|
1363
|
+
measurement: '',
|
|
1364
|
+
units: localization.inventoryMonitor.kilobytes,
|
|
1365
|
+
nameEn: 'commit limit',
|
|
1366
|
+
testId: 'counters-table-commit-limit',
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
id: 9,
|
|
1370
|
+
name: localization.inventoryMonitor.committedAs,
|
|
1371
|
+
description:
|
|
1372
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription11,
|
|
1373
|
+
measurement: '',
|
|
1374
|
+
units: localization.inventoryMonitor.kilobytes,
|
|
1375
|
+
nameEn: 'committed as',
|
|
1376
|
+
testId: 'counters-table-committed-as',
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
id: 10,
|
|
1380
|
+
name: localization.inventoryMonitor.pageFaultsPerSec,
|
|
1381
|
+
description:
|
|
1382
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription12,
|
|
1383
|
+
measurement: '',
|
|
1384
|
+
units: localization.inventoryMonitor.faultsPerSecond,
|
|
1385
|
+
nameEn: 'page faults per sec',
|
|
1386
|
+
testId: 'counters-table-page-faults-per-sec',
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
id: 11,
|
|
1390
|
+
name: localization.inventoryMonitor.majorPageFaultsPerSec,
|
|
1391
|
+
description:
|
|
1392
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription13,
|
|
1393
|
+
measurement: '',
|
|
1394
|
+
units: localization.inventoryMonitor.faultsPerSecond,
|
|
1395
|
+
nameEn: 'major page faults per sec',
|
|
1396
|
+
testId: 'counters-table-major-page-faults-per-sec',
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
id: 12,
|
|
1400
|
+
name: localization.inventoryMonitor.swapInPerSec,
|
|
1401
|
+
description:
|
|
1402
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription14,
|
|
1403
|
+
measurement: '',
|
|
1404
|
+
units: localization.inventoryMonitor.pagesPerSecond,
|
|
1405
|
+
nameEn: 'swap in per sec',
|
|
1406
|
+
testId: 'counters-table-swap-in-per-sec',
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
id: 13,
|
|
1410
|
+
name: localization.inventoryMonitor.swapOutPerSec,
|
|
1411
|
+
description:
|
|
1412
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription15,
|
|
1413
|
+
measurement: '',
|
|
1414
|
+
units: localization.inventoryMonitor.pagesPerSecond,
|
|
1415
|
+
nameEn: 'swap out per sec',
|
|
1416
|
+
testId: 'counters-table-swap-out-per-sec',
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
id: 14,
|
|
1420
|
+
name: localization.inventoryMonitor.memoryPressureSomeAvg.replace(
|
|
1421
|
+
'{0}',
|
|
1422
|
+
'10'
|
|
1423
|
+
),
|
|
1424
|
+
description:
|
|
1425
|
+
localization.inventoryMonitor.psiSomeMemoryPressureAveragedOver.replace(
|
|
802
1426
|
'{0}',
|
|
803
1427
|
'10'
|
|
804
1428
|
),
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
1429
|
+
measurement: '',
|
|
1430
|
+
units: '%',
|
|
1431
|
+
nameEn: 'memory pressure some avg10',
|
|
1432
|
+
testId: 'counters-table-memory-pressure-some-avg10',
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
id: 15,
|
|
1436
|
+
name: localization.inventoryMonitor.memoryPressureSomeAvg.replace(
|
|
1437
|
+
'{0}',
|
|
1438
|
+
'60'
|
|
1439
|
+
),
|
|
1440
|
+
description:
|
|
1441
|
+
localization.inventoryMonitor.psiSomeMemoryPressureAveragedOver.replace(
|
|
818
1442
|
'{0}',
|
|
819
1443
|
'60'
|
|
820
1444
|
),
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
1445
|
+
measurement: '',
|
|
1446
|
+
units: '%',
|
|
1447
|
+
nameEn: 'memory pressure some avg60',
|
|
1448
|
+
testId: 'counters-table-memory-pressure-some-avg60',
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
id: 16,
|
|
1452
|
+
name: localization.inventoryMonitor.memoryPressureSomeAvg.replace(
|
|
1453
|
+
'{0}',
|
|
1454
|
+
'300'
|
|
1455
|
+
),
|
|
1456
|
+
description:
|
|
1457
|
+
localization.inventoryMonitor.psiSomeMemoryPressureAveragedOver.replace(
|
|
834
1458
|
'{0}',
|
|
835
1459
|
'300'
|
|
836
1460
|
),
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
1461
|
+
measurement: '',
|
|
1462
|
+
units: '%',
|
|
1463
|
+
nameEn: 'memory pressure some avg300',
|
|
1464
|
+
testId: 'counters-table-memory-pressure-some-avg300',
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
id: 17,
|
|
1468
|
+
name: localization.inventoryMonitor.memoryPressureFullAvg.replace(
|
|
1469
|
+
'{0}',
|
|
1470
|
+
'10'
|
|
1471
|
+
),
|
|
1472
|
+
description:
|
|
1473
|
+
localization.inventoryMonitor.psiFullMemoryPressureAveragedOver.replace(
|
|
850
1474
|
'{0}',
|
|
851
1475
|
'10'
|
|
852
1476
|
),
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
1477
|
+
measurement: '',
|
|
1478
|
+
units: '%',
|
|
1479
|
+
nameEn: 'memory pressure full avg10',
|
|
1480
|
+
testId: 'counters-table-memory-pressure-full-avg10',
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
id: 18,
|
|
1484
|
+
name: localization.inventoryMonitor.memoryPressureFullAvg.replace(
|
|
1485
|
+
'{0}',
|
|
1486
|
+
'60'
|
|
1487
|
+
),
|
|
1488
|
+
description:
|
|
1489
|
+
localization.inventoryMonitor.psiFullMemoryPressureAveragedOver.replace(
|
|
866
1490
|
'{0}',
|
|
867
1491
|
'60'
|
|
868
1492
|
),
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
1493
|
+
measurement: '',
|
|
1494
|
+
units: '%',
|
|
1495
|
+
nameEn: 'memory pressure full avg60',
|
|
1496
|
+
testId: 'counters-table-memory-pressure-full-avg60',
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
id: 19,
|
|
1500
|
+
name: localization.inventoryMonitor.memoryPressureFullAvg.replace(
|
|
1501
|
+
'{0}',
|
|
1502
|
+
'300'
|
|
1503
|
+
),
|
|
1504
|
+
description:
|
|
1505
|
+
localization.inventoryMonitor.psiFullMemoryPressureAveragedOver.replace(
|
|
882
1506
|
'{0}',
|
|
883
1507
|
'300'
|
|
884
1508
|
),
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
measurement: '',
|
|
891
|
-
units: '%',
|
|
892
|
-
nameEn: 'memory pressure full avg300',
|
|
893
|
-
testId: 'counters-table-memory-pressure-full-avg300',
|
|
894
|
-
},
|
|
895
|
-
]
|
|
1509
|
+
measurement: '',
|
|
1510
|
+
units: '%',
|
|
1511
|
+
nameEn: 'memory pressure full avg300',
|
|
1512
|
+
testId: 'counters-table-memory-pressure-full-avg300',
|
|
1513
|
+
}
|
|
896
1514
|
)
|
|
897
1515
|
network.push(
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
},
|
|
939
|
-
]
|
|
1516
|
+
{
|
|
1517
|
+
id: 21,
|
|
1518
|
+
name: localization.inventoryMonitor.totalLinkSpeed,
|
|
1519
|
+
description:
|
|
1520
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription22,
|
|
1521
|
+
measurement: '',
|
|
1522
|
+
units: localization.common.ms,
|
|
1523
|
+
nameEn: 'total link speed',
|
|
1524
|
+
testId: 'counters-table-total-link-speed',
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
id: 22,
|
|
1528
|
+
name: localization.inventoryMonitor.totalUtilizationPercent,
|
|
1529
|
+
description:
|
|
1530
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription23,
|
|
1531
|
+
measurement: '',
|
|
1532
|
+
units: '%',
|
|
1533
|
+
nameEn: 'total utilization percent',
|
|
1534
|
+
testId: 'counters-table-total-utilization-percent',
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
id: 23,
|
|
1538
|
+
name: localization.inventoryMonitor.interfaceLinkSpeed,
|
|
1539
|
+
description:
|
|
1540
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription24,
|
|
1541
|
+
measurement: '',
|
|
1542
|
+
units: localization.common.ms,
|
|
1543
|
+
nameEn: 'link speed',
|
|
1544
|
+
testId: 'counters-table-interface-link-speed',
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
id: 24,
|
|
1548
|
+
name: localization.inventoryMonitor.interfaceUtilizationPercent,
|
|
1549
|
+
description:
|
|
1550
|
+
localization.inventoryMonitor.advancedCpuMetricsDescription25,
|
|
1551
|
+
measurement: '',
|
|
1552
|
+
units: '%',
|
|
1553
|
+
nameEn: 'utilization percent',
|
|
1554
|
+
testId: 'counters-table-interface-utilization-percent',
|
|
1555
|
+
}
|
|
940
1556
|
)
|
|
941
1557
|
}
|
|
942
1558
|
|
|
@@ -948,6 +1564,22 @@ const hostItemsFunc = (
|
|
|
948
1564
|
disk,
|
|
949
1565
|
}
|
|
950
1566
|
|
|
1567
|
+
if (
|
|
1568
|
+
['power', 'temperature'].includes(chart) &&
|
|
1569
|
+
(!power.length || !temperature.length)
|
|
1570
|
+
) {
|
|
1571
|
+
power = powerData
|
|
1572
|
+
temperature = temperatureData
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
if (project === 'procurator') {
|
|
1576
|
+
hostItems['hyperConvergedInfrastructure'] = hyperConvergedInfrastructure
|
|
1577
|
+
hostItems['nfs'] = nfs
|
|
1578
|
+
hostItems['services'] = services
|
|
1579
|
+
hostItems['power'] = power
|
|
1580
|
+
hostItems['temperature'] = temperature
|
|
1581
|
+
}
|
|
1582
|
+
|
|
951
1583
|
return hostItems[chart]
|
|
952
1584
|
}
|
|
953
1585
|
|
|
@@ -956,42 +1588,43 @@ const vmItemsFunc = (
|
|
|
956
1588
|
localization: UI_I_Localization
|
|
957
1589
|
): UI_I_AdvancedCounterItem[] => {
|
|
958
1590
|
const disk: UI_I_AdvancedCounterItem[] = [
|
|
959
|
-
{
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
},
|
|
1591
|
+
// {
|
|
1592
|
+
// id: 0,
|
|
1593
|
+
// name: localization.inventoryMonitor.readBytes,
|
|
1594
|
+
// description: localization.inventoryMonitor.averageNumberBytes,
|
|
1595
|
+
// measurement: localization.common.read,
|
|
1596
|
+
// units: localization.common.bytes,
|
|
1597
|
+
// nameEn: 'read bytes',
|
|
1598
|
+
// testId: 'counters-table-read-bytes-item',
|
|
1599
|
+
// },
|
|
1600
|
+
// {
|
|
1601
|
+
// id: 1,
|
|
1602
|
+
// name: localization.inventoryMonitor.writeBytes,
|
|
1603
|
+
// description: localization.inventoryMonitor.averageNumberBytesWrittenDisk,
|
|
1604
|
+
// measurement: localization.common.write,
|
|
1605
|
+
// units: localization.common.bytes,
|
|
1606
|
+
// nameEn: 'write bytes',
|
|
1607
|
+
// testId: 'counters-table-write-bytes-item',
|
|
1608
|
+
// },
|
|
1609
|
+
// {
|
|
1610
|
+
// id: 2,
|
|
1611
|
+
// name: localization.inventoryMonitor.readCount,
|
|
1612
|
+
// description: localization.inventoryMonitor.averageNumberOfReadCount,
|
|
1613
|
+
// measurement: localization.common.read,
|
|
1614
|
+
// units: localization.common.num,
|
|
1615
|
+
// nameEn: 'read count',
|
|
1616
|
+
// testId: 'counters-table-read-count-item',
|
|
1617
|
+
// },
|
|
1618
|
+
// {
|
|
1619
|
+
// id: 3,
|
|
1620
|
+
// name: localization.inventoryMonitor.writeCount,
|
|
1621
|
+
// description: localization.inventoryMonitor.averageNumberOfWriteCount,
|
|
1622
|
+
// measurement: localization.common.write,
|
|
1623
|
+
// units: localization.common.num,
|
|
1624
|
+
// nameEn: 'write count',
|
|
1625
|
+
// testId: 'counters-table-write-count-item',
|
|
1626
|
+
// },
|
|
1627
|
+
|
|
995
1628
|
// {
|
|
996
1629
|
// id: 2,
|
|
997
1630
|
// name: localization.inventoryMonitor.diskDevicesShares,
|
|
@@ -1019,202 +1652,662 @@ const vmItemsFunc = (
|
|
|
1019
1652
|
// nameEn: 'disk devices size',
|
|
1020
1653
|
// testId: 'counters-table-disk-devices-size-item',
|
|
1021
1654
|
// },
|
|
1022
|
-
|
|
1023
|
-
|
|
1655
|
+
|
|
1656
|
+
// New Update Start
|
|
1024
1657
|
{
|
|
1025
1658
|
id: 0,
|
|
1026
|
-
name: localization.inventoryMonitor.
|
|
1027
|
-
description: localization.inventoryMonitor.
|
|
1028
|
-
measurement:
|
|
1029
|
-
units: localization.inventoryMonitor.
|
|
1030
|
-
nameEn: '
|
|
1031
|
-
testId: 'counters-table-
|
|
1659
|
+
name: localization.inventoryMonitor.diskRead,
|
|
1660
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription1,
|
|
1661
|
+
measurement: '',
|
|
1662
|
+
units: localization.inventoryMonitor.kBps,
|
|
1663
|
+
nameEn: 'readBytes',
|
|
1664
|
+
testId: 'counters-table-vm-disk-readBytes-item',
|
|
1032
1665
|
},
|
|
1033
1666
|
{
|
|
1034
1667
|
id: 1,
|
|
1035
|
-
name: localization.inventoryMonitor.
|
|
1036
|
-
description: localization.inventoryMonitor.
|
|
1037
|
-
measurement:
|
|
1038
|
-
units: localization.inventoryMonitor.
|
|
1039
|
-
nameEn: '
|
|
1040
|
-
testId: 'counters-table-
|
|
1668
|
+
name: localization.inventoryMonitor.diskWrite,
|
|
1669
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription2,
|
|
1670
|
+
measurement: '',
|
|
1671
|
+
units: localization.inventoryMonitor.kBps,
|
|
1672
|
+
nameEn: 'writeBytes',
|
|
1673
|
+
testId: 'counters-table-vm-disk-writeBytes-item',
|
|
1041
1674
|
},
|
|
1042
1675
|
{
|
|
1043
1676
|
id: 2,
|
|
1044
|
-
name: localization.inventoryMonitor.
|
|
1045
|
-
description: localization.inventoryMonitor.
|
|
1046
|
-
measurement:
|
|
1047
|
-
units: localization.common.
|
|
1048
|
-
nameEn: '
|
|
1049
|
-
testId: 'counters-table-
|
|
1677
|
+
name: localization.inventoryMonitor.readOperations,
|
|
1678
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription3,
|
|
1679
|
+
measurement: '',
|
|
1680
|
+
units: localization.common.num,
|
|
1681
|
+
nameEn: 'readCount',
|
|
1682
|
+
testId: 'counters-table-vm-disk-readCount-item',
|
|
1050
1683
|
},
|
|
1051
1684
|
{
|
|
1052
1685
|
id: 3,
|
|
1053
|
-
name: localization.inventoryMonitor.
|
|
1054
|
-
description: localization.inventoryMonitor.
|
|
1055
|
-
measurement:
|
|
1056
|
-
units: localization.common.
|
|
1057
|
-
nameEn: '
|
|
1058
|
-
testId: 'counters-table-
|
|
1686
|
+
name: localization.inventoryMonitor.writeOperations,
|
|
1687
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription4,
|
|
1688
|
+
measurement: '',
|
|
1689
|
+
units: localization.common.num,
|
|
1690
|
+
nameEn: 'writeCount',
|
|
1691
|
+
testId: 'counters-table-vm-disk-writeCount-item',
|
|
1059
1692
|
},
|
|
1060
1693
|
{
|
|
1061
1694
|
id: 4,
|
|
1062
|
-
name: localization.inventoryMonitor.
|
|
1063
|
-
description: localization.inventoryMonitor.
|
|
1064
|
-
measurement:
|
|
1065
|
-
units: localization.
|
|
1066
|
-
nameEn: '
|
|
1067
|
-
testId: 'counters-table-
|
|
1695
|
+
name: localization.inventoryMonitor.maxDiskLatency,
|
|
1696
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription5,
|
|
1697
|
+
measurement: '',
|
|
1698
|
+
units: localization.common.ms,
|
|
1699
|
+
nameEn: 'maxTotalLatency',
|
|
1700
|
+
testId: 'counters-table-vm-disk-maxTotalLatency-item',
|
|
1068
1701
|
},
|
|
1069
1702
|
{
|
|
1070
1703
|
id: 5,
|
|
1071
|
-
name: localization.inventoryMonitor.
|
|
1072
|
-
description: localization.inventoryMonitor.
|
|
1073
|
-
measurement:
|
|
1074
|
-
units: localization.
|
|
1075
|
-
nameEn: '
|
|
1076
|
-
testId: 'counters-table-
|
|
1704
|
+
name: localization.inventoryMonitor.readIOPS,
|
|
1705
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription6,
|
|
1706
|
+
measurement: '',
|
|
1707
|
+
units: localization.common.num,
|
|
1708
|
+
nameEn: 'numberReadAveraged',
|
|
1709
|
+
testId: 'counters-table-vm-disk-numberReadAveraged-item',
|
|
1077
1710
|
},
|
|
1078
1711
|
{
|
|
1079
1712
|
id: 6,
|
|
1080
|
-
name: localization.inventoryMonitor.
|
|
1081
|
-
description: localization.inventoryMonitor.
|
|
1082
|
-
measurement:
|
|
1083
|
-
units: localization.
|
|
1084
|
-
nameEn: '
|
|
1085
|
-
testId: 'counters-table-
|
|
1713
|
+
name: localization.inventoryMonitor.writeIOPS,
|
|
1714
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription7,
|
|
1715
|
+
measurement: '',
|
|
1716
|
+
units: localization.common.num,
|
|
1717
|
+
nameEn: 'numberWriteAveraged',
|
|
1718
|
+
testId: 'counters-table-vm-disk-numberWriteAveraged-item',
|
|
1086
1719
|
},
|
|
1087
1720
|
{
|
|
1088
1721
|
id: 7,
|
|
1089
|
-
name: localization.inventoryMonitor.
|
|
1722
|
+
name: localization.inventoryMonitor.queueDepth,
|
|
1723
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription8,
|
|
1724
|
+
measurement: '',
|
|
1725
|
+
units: localization.common.num,
|
|
1726
|
+
nameEn: 'queueDepth',
|
|
1727
|
+
testId: 'counters-table-vm-disk-queueDepth-item',
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
id: 8,
|
|
1731
|
+
name: localization.inventoryMonitor.pendingReads,
|
|
1732
|
+
description: localization.inventoryMonitor.chartOptionsVmDiskDescription9,
|
|
1733
|
+
measurement: '',
|
|
1734
|
+
units: localization.common.num,
|
|
1735
|
+
nameEn: 'readOio',
|
|
1736
|
+
testId: 'counters-table-vm-disk-readOio-item',
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
id: 9,
|
|
1740
|
+
name: localization.inventoryMonitor.pendingWrites,
|
|
1741
|
+
description:
|
|
1742
|
+
localization.inventoryMonitor.chartOptionsVmDiskDescription10,
|
|
1743
|
+
measurement: '',
|
|
1744
|
+
units: localization.common.num,
|
|
1745
|
+
nameEn: 'writeOio',
|
|
1746
|
+
testId: 'counters-table-vm-disk-writeOio-item',
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
id: 10,
|
|
1750
|
+
name: localization.inventoryMonitor.readLatency2,
|
|
1751
|
+
description:
|
|
1752
|
+
localization.inventoryMonitor.chartOptionsVmDiskDescription11,
|
|
1753
|
+
measurement: '',
|
|
1754
|
+
units: localization.common.ms,
|
|
1755
|
+
nameEn: 'readLoadMetric',
|
|
1756
|
+
testId: 'counters-table-vm-disk-readLoadMetric-item',
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
id: 11,
|
|
1760
|
+
name: localization.inventoryMonitor.writeLatency2,
|
|
1761
|
+
description:
|
|
1762
|
+
localization.inventoryMonitor.chartOptionsVmDiskDescription12,
|
|
1763
|
+
measurement: '',
|
|
1764
|
+
units: localization.common.ms,
|
|
1765
|
+
nameEn: 'writeLoadMetric',
|
|
1766
|
+
testId: 'counters-table-vm-disk-writeLoadMetric-item',
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
id: 12,
|
|
1770
|
+
name: localization.inventoryMonitor.smallSeeks,
|
|
1771
|
+
description:
|
|
1772
|
+
localization.inventoryMonitor.chartOptionsVmDiskDescription13,
|
|
1773
|
+
measurement: '',
|
|
1774
|
+
units: localization.common.num,
|
|
1775
|
+
nameEn: 'smallSeeks',
|
|
1776
|
+
testId: 'counters-table-vm-disk-smallSeeks-item',
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
id: 13,
|
|
1780
|
+
name: localization.inventoryMonitor.mediumSeeks,
|
|
1781
|
+
description:
|
|
1782
|
+
localization.inventoryMonitor.chartOptionsVmDiskDescription14,
|
|
1783
|
+
measurement: '',
|
|
1784
|
+
units: localization.common.num,
|
|
1785
|
+
nameEn: 'mediumSeeks',
|
|
1786
|
+
testId: 'counters-table-vm-disk-mediumSeeks-item',
|
|
1787
|
+
},
|
|
1788
|
+
{
|
|
1789
|
+
id: 14,
|
|
1790
|
+
name: localization.inventoryMonitor.largeSeeks,
|
|
1090
1791
|
description:
|
|
1091
|
-
localization.inventoryMonitor.
|
|
1092
|
-
measurement:
|
|
1093
|
-
units: localization.
|
|
1094
|
-
nameEn: '
|
|
1095
|
-
testId: 'counters-table-
|
|
1792
|
+
localization.inventoryMonitor.chartOptionsVmDiskDescription15,
|
|
1793
|
+
measurement: '',
|
|
1794
|
+
units: localization.common.num,
|
|
1795
|
+
nameEn: 'largeSeeks',
|
|
1796
|
+
testId: 'counters-table-vm-disk-largeSeeks-item',
|
|
1096
1797
|
},
|
|
1798
|
+
// New Update End
|
|
1097
1799
|
]
|
|
1098
|
-
const
|
|
1800
|
+
const network: UI_I_AdvancedCounterItem[] = [
|
|
1801
|
+
// {
|
|
1802
|
+
// id: 0,
|
|
1803
|
+
// name: localization.inventoryMonitor.packetsReceived,
|
|
1804
|
+
// description: localization.inventoryMonitor.amountReceivedPackets,
|
|
1805
|
+
// measurement: localization.inventoryMonitor.measuresInPackets,
|
|
1806
|
+
// units: localization.inventoryMonitor.packets,
|
|
1807
|
+
// nameEn: 'packets received',
|
|
1808
|
+
// testId: 'counters-table-packets-received-item',
|
|
1809
|
+
// },
|
|
1810
|
+
// {
|
|
1811
|
+
// id: 1,
|
|
1812
|
+
// name: localization.inventoryMonitor.packetsTransmitted,
|
|
1813
|
+
// description: localization.inventoryMonitor.amountTransmittedPackets,
|
|
1814
|
+
// measurement: localization.inventoryMonitor.measuresInPackets,
|
|
1815
|
+
// units: localization.inventoryMonitor.packets,
|
|
1816
|
+
// nameEn: 'packets transmitted',
|
|
1817
|
+
// testId: 'counters-table-packets-transmitted-item',
|
|
1818
|
+
// },
|
|
1819
|
+
// {
|
|
1820
|
+
// id: 2,
|
|
1821
|
+
// name: localization.inventoryMonitor.bytesReceived,
|
|
1822
|
+
// description: localization.inventoryMonitor.amountReceivedBytes,
|
|
1823
|
+
// measurement: localization.inventoryMonitor.measuresInKb,
|
|
1824
|
+
// units: localization.common.kb,
|
|
1825
|
+
// nameEn: 'bytes received',
|
|
1826
|
+
// testId: 'counters-table-bytes-received-item',
|
|
1827
|
+
// },
|
|
1828
|
+
// {
|
|
1829
|
+
// id: 3,
|
|
1830
|
+
// name: localization.inventoryMonitor.bytesTransmitted,
|
|
1831
|
+
// description: localization.inventoryMonitor.amountTransmittedBytes,
|
|
1832
|
+
// measurement: localization.inventoryMonitor.measuresInKb,
|
|
1833
|
+
// units: localization.common.kb,
|
|
1834
|
+
// nameEn: 'bytes transmitted',
|
|
1835
|
+
// testId: 'counters-table-bytes-transmitted-item',
|
|
1836
|
+
// },
|
|
1837
|
+
// {
|
|
1838
|
+
// id: 4,
|
|
1839
|
+
// name: localization.inventoryMonitor.receivedPacketsErrors,
|
|
1840
|
+
// description: localization.inventoryMonitor.amountReceivedPacketsError,
|
|
1841
|
+
// measurement: localization.inventoryMonitor.measuresInPackets,
|
|
1842
|
+
// units: localization.inventoryMonitor.packets,
|
|
1843
|
+
// nameEn: 'errors received',
|
|
1844
|
+
// testId: 'counters-table-errors-received-item',
|
|
1845
|
+
// },
|
|
1846
|
+
// {
|
|
1847
|
+
// id: 5,
|
|
1848
|
+
// name: localization.inventoryMonitor.transmittedPacketsErrors,
|
|
1849
|
+
// description: localization.inventoryMonitor.amountTransmittedPacketsError,
|
|
1850
|
+
// measurement: localization.inventoryMonitor.measuresInPackets,
|
|
1851
|
+
// units: localization.inventoryMonitor.packets,
|
|
1852
|
+
// nameEn: 'errors transmitted',
|
|
1853
|
+
// testId: 'counters-table-errors-transmitted-item',
|
|
1854
|
+
// },
|
|
1855
|
+
// {
|
|
1856
|
+
// id: 6,
|
|
1857
|
+
// name: localization.inventoryMonitor.receivedDroppedPackets,
|
|
1858
|
+
// description: localization.inventoryMonitor.amountReceivedDroppedPackets,
|
|
1859
|
+
// measurement: localization.inventoryMonitor.measuresInPackets,
|
|
1860
|
+
// units: localization.inventoryMonitor.packets,
|
|
1861
|
+
// nameEn: 'drop received',
|
|
1862
|
+
// testId: 'counters-table-drop-received-item',
|
|
1863
|
+
// },
|
|
1864
|
+
// {
|
|
1865
|
+
// id: 7,
|
|
1866
|
+
// name: localization.inventoryMonitor.transmittedDroppedPackets,
|
|
1867
|
+
// description:
|
|
1868
|
+
// localization.inventoryMonitor.amountTransmittedDroppedPackets,
|
|
1869
|
+
// measurement: localization.inventoryMonitor.measuresInPackets,
|
|
1870
|
+
// units: localization.inventoryMonitor.packets,
|
|
1871
|
+
// nameEn: 'drop transmitted',
|
|
1872
|
+
// testId: 'counters-table-drop-transmitted-item',
|
|
1873
|
+
// },
|
|
1874
|
+
|
|
1875
|
+
// New Update Start
|
|
1099
1876
|
{
|
|
1100
1877
|
id: 0,
|
|
1101
|
-
name: localization.inventoryMonitor.
|
|
1102
|
-
description:
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1878
|
+
name: localization.inventoryMonitor.networkTraffic,
|
|
1879
|
+
description:
|
|
1880
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription1,
|
|
1881
|
+
measurement: '',
|
|
1882
|
+
units: localization.inventoryMonitor.kBps,
|
|
1883
|
+
nameEn: 'usage',
|
|
1884
|
+
testId: 'counters-table-vm-usage-item',
|
|
1107
1885
|
},
|
|
1108
1886
|
{
|
|
1109
1887
|
id: 1,
|
|
1110
|
-
name: localization.inventoryMonitor.
|
|
1111
|
-
description:
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1888
|
+
name: localization.inventoryMonitor.bytesTransmitted2,
|
|
1889
|
+
description:
|
|
1890
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription2,
|
|
1891
|
+
measurement: '',
|
|
1892
|
+
units: localization.inventoryMonitor.kBps,
|
|
1893
|
+
nameEn: 'bytesTransmitted',
|
|
1894
|
+
testId: 'counters-table-vm-bytesTransmitted-item',
|
|
1116
1895
|
},
|
|
1117
1896
|
{
|
|
1118
1897
|
id: 2,
|
|
1119
|
-
name: localization.inventoryMonitor.
|
|
1120
|
-
description:
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1898
|
+
name: localization.inventoryMonitor.bytesReceived2,
|
|
1899
|
+
description:
|
|
1900
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription3,
|
|
1901
|
+
measurement: '',
|
|
1902
|
+
units: localization.inventoryMonitor.kBps,
|
|
1903
|
+
nameEn: 'bytesReceived',
|
|
1904
|
+
testId: 'counters-table-vm-bytesReceived-item',
|
|
1125
1905
|
},
|
|
1126
1906
|
{
|
|
1127
1907
|
id: 3,
|
|
1128
|
-
name: localization.inventoryMonitor.
|
|
1129
|
-
description:
|
|
1130
|
-
|
|
1908
|
+
name: localization.inventoryMonitor.transmitErrors,
|
|
1909
|
+
description:
|
|
1910
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription4,
|
|
1911
|
+
measurement: '',
|
|
1131
1912
|
units: localization.common.num,
|
|
1132
|
-
nameEn: '
|
|
1133
|
-
testId: 'counters-table-
|
|
1913
|
+
nameEn: 'errorsTransmitted',
|
|
1914
|
+
testId: 'counters-table-vm-errorsTransmitted-item',
|
|
1134
1915
|
},
|
|
1135
1916
|
{
|
|
1136
1917
|
id: 4,
|
|
1137
|
-
name: localization.inventoryMonitor.
|
|
1138
|
-
description:
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1918
|
+
name: localization.inventoryMonitor.receiveErrors,
|
|
1919
|
+
description:
|
|
1920
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription5,
|
|
1921
|
+
measurement: '',
|
|
1922
|
+
units: localization.common.num,
|
|
1923
|
+
nameEn: 'errorsReceived',
|
|
1924
|
+
testId: 'counters-table-vm-errorsReceived-item',
|
|
1143
1925
|
},
|
|
1144
1926
|
{
|
|
1145
1927
|
id: 5,
|
|
1146
|
-
name: localization.
|
|
1147
|
-
description:
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1928
|
+
name: localization.inventoryMonitor.packetsTransmitted2,
|
|
1929
|
+
description:
|
|
1930
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription6,
|
|
1931
|
+
measurement: '',
|
|
1932
|
+
units: localization.common.num,
|
|
1933
|
+
nameEn: 'totalPacketsTransmitted',
|
|
1934
|
+
testId: 'counters-table-vm-totalPacketsTransmitted-item',
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
id: 6,
|
|
1938
|
+
name: localization.inventoryMonitor.packetsReceived2,
|
|
1939
|
+
description:
|
|
1940
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription7,
|
|
1941
|
+
measurement: '',
|
|
1942
|
+
units: localization.common.num,
|
|
1943
|
+
nameEn: 'totalPacketsReceived',
|
|
1944
|
+
testId: 'counters-table-vm-totalPacketsReceived-item',
|
|
1152
1945
|
},
|
|
1946
|
+
{
|
|
1947
|
+
id: 7,
|
|
1948
|
+
name: localization.inventoryMonitor.transmitDrops,
|
|
1949
|
+
description:
|
|
1950
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription8,
|
|
1951
|
+
measurement: '',
|
|
1952
|
+
units: localization.common.num,
|
|
1953
|
+
nameEn: 'dropTransmitted',
|
|
1954
|
+
testId: 'counters-table-vm-dropTransmitted-item',
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
id: 8,
|
|
1958
|
+
name: localization.inventoryMonitor.receiveDrops,
|
|
1959
|
+
description:
|
|
1960
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription9,
|
|
1961
|
+
measurement: '',
|
|
1962
|
+
units: localization.common.num,
|
|
1963
|
+
nameEn: 'dropReceived',
|
|
1964
|
+
testId: 'counters-table-vm-dropReceived-item',
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
id: 9,
|
|
1968
|
+
name: localization.inventoryMonitor.broadcastTransmitted,
|
|
1969
|
+
description:
|
|
1970
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription10,
|
|
1971
|
+
measurement: '',
|
|
1972
|
+
units: localization.common.num,
|
|
1973
|
+
nameEn: 'broadcastTx',
|
|
1974
|
+
testId: 'counters-table-vm-broadcastTx-item',
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
id: 10,
|
|
1978
|
+
name: localization.inventoryMonitor.broadcastReceived,
|
|
1979
|
+
description:
|
|
1980
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription11,
|
|
1981
|
+
measurement: '',
|
|
1982
|
+
units: localization.common.num,
|
|
1983
|
+
nameEn: 'broadcastRx',
|
|
1984
|
+
testId: 'counters-table-vm-broadcastRx-item',
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
id: 11,
|
|
1988
|
+
name: localization.inventoryMonitor.multicastTransmitted,
|
|
1989
|
+
description:
|
|
1990
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription12,
|
|
1991
|
+
measurement: '',
|
|
1992
|
+
units: localization.common.num,
|
|
1993
|
+
nameEn: 'multicastTx',
|
|
1994
|
+
testId: 'counters-table-vm-multicastTx-item',
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
id: 12,
|
|
1998
|
+
name: localization.inventoryMonitor.multicastReceived,
|
|
1999
|
+
description:
|
|
2000
|
+
localization.inventoryMonitor.chartOptionsVmNetworkDescription13,
|
|
2001
|
+
measurement: '',
|
|
2002
|
+
units: localization.common.num,
|
|
2003
|
+
nameEn: 'multicastRx',
|
|
2004
|
+
testId: 'counters-table-vm-multicastRx-item',
|
|
2005
|
+
},
|
|
2006
|
+
// New Update End
|
|
1153
2007
|
]
|
|
1154
|
-
const
|
|
2008
|
+
const cpu: UI_I_AdvancedCounterItem[] = [
|
|
2009
|
+
// {
|
|
2010
|
+
// id: 0,
|
|
2011
|
+
// name: localization.inventoryMonitor.usedMhz,
|
|
2012
|
+
// description: localization.inventoryMonitor.amountUsedMHz,
|
|
2013
|
+
// measurement: localization.inventoryMonitor.usageInMHz,
|
|
2014
|
+
// units: localization.common.mhz,
|
|
2015
|
+
// nameEn: 'used mhz',
|
|
2016
|
+
// testId: 'counters-table-used-mhz-item',
|
|
2017
|
+
// },
|
|
2018
|
+
// {
|
|
2019
|
+
// id: 1,
|
|
2020
|
+
// name: localization.inventoryMonitor.provisionedMhz,
|
|
2021
|
+
// description: localization.inventoryMonitor.amountProvisionedMHz,
|
|
2022
|
+
// measurement: localization.inventoryMonitor.usageInMHz,
|
|
2023
|
+
// units: localization.common.mhz,
|
|
2024
|
+
// nameEn: 'provisioned mhz',
|
|
2025
|
+
// testId: 'counters-table-provisioned-mhz-item',
|
|
2026
|
+
// },
|
|
2027
|
+
// {
|
|
2028
|
+
// id: 2,
|
|
2029
|
+
// name: localization.inventoryMonitor.currentVCpus,
|
|
2030
|
+
// description: localization.inventoryMonitor.currentNumberVirtualCPUs,
|
|
2031
|
+
// measurement: localization.inventoryMonitor.usageInNum,
|
|
2032
|
+
// units: localization.common.num,
|
|
2033
|
+
// nameEn: 'current vcpus',
|
|
2034
|
+
// testId: 'counters-table-current-vcpus-item',
|
|
2035
|
+
// },
|
|
2036
|
+
// {
|
|
2037
|
+
// id: 3,
|
|
2038
|
+
// name: localization.inventoryMonitor.corePerSocket,
|
|
2039
|
+
// description: localization.inventoryMonitor.numberCoresPerSocket,
|
|
2040
|
+
// measurement: localization.inventoryMonitor.countCoresPerSocket,
|
|
2041
|
+
// units: localization.common.num,
|
|
2042
|
+
// nameEn: 'core per socket',
|
|
2043
|
+
// testId: 'counters-table-core-per-socket-item',
|
|
2044
|
+
// },
|
|
2045
|
+
// {
|
|
2046
|
+
// id: 4,
|
|
2047
|
+
// name: localization.inventoryMonitor.limitMhz,
|
|
2048
|
+
// description: localization.inventoryMonitor.limitMHz,
|
|
2049
|
+
// measurement: localization.inventoryMonitor.usageInMHz,
|
|
2050
|
+
// units: localization.common.mhz,
|
|
2051
|
+
// nameEn: 'limit mhz',
|
|
2052
|
+
// testId: 'counters-table-limit-mhz-item',
|
|
2053
|
+
// },
|
|
2054
|
+
// {
|
|
2055
|
+
// id: 5,
|
|
2056
|
+
// name: localization.common.usageCap,
|
|
2057
|
+
// description: localization.inventoryMonitor.cPUUsagePercentage,
|
|
2058
|
+
// measurement: localization.inventoryMonitor.usagePerc,
|
|
2059
|
+
// units: '%',
|
|
2060
|
+
// nameEn: 'usage',
|
|
2061
|
+
// testId: 'counters-table-usage-perc-item',
|
|
2062
|
+
// },
|
|
2063
|
+
// New Update Start
|
|
1155
2064
|
{
|
|
1156
2065
|
id: 0,
|
|
1157
|
-
name: localization.inventoryMonitor.
|
|
1158
|
-
description: localization.inventoryMonitor.
|
|
1159
|
-
measurement:
|
|
1160
|
-
units:
|
|
1161
|
-
nameEn: '
|
|
1162
|
-
testId: 'counters-table-
|
|
2066
|
+
name: localization.inventoryMonitor.cpuUsage,
|
|
2067
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription1,
|
|
2068
|
+
measurement: '',
|
|
2069
|
+
units: '%',
|
|
2070
|
+
nameEn: 'usage',
|
|
2071
|
+
testId: 'counters-table-vm-cpu-usage-item',
|
|
1163
2072
|
},
|
|
1164
2073
|
{
|
|
1165
2074
|
id: 1,
|
|
1166
|
-
name: localization.inventoryMonitor.
|
|
1167
|
-
description: localization.inventoryMonitor.
|
|
1168
|
-
measurement:
|
|
1169
|
-
units: localization.common.
|
|
1170
|
-
nameEn: '
|
|
1171
|
-
testId: 'counters-table-
|
|
2075
|
+
name: localization.inventoryMonitor.cpuUsed,
|
|
2076
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription2,
|
|
2077
|
+
measurement: '',
|
|
2078
|
+
units: localization.common.mhz,
|
|
2079
|
+
nameEn: 'usedMhz',
|
|
2080
|
+
testId: 'counters-table-vm-cpu-usedMhz-item',
|
|
1172
2081
|
},
|
|
1173
2082
|
{
|
|
1174
2083
|
id: 2,
|
|
1175
|
-
name: localization.inventoryMonitor.
|
|
1176
|
-
description: localization.inventoryMonitor.
|
|
1177
|
-
measurement:
|
|
2084
|
+
name: localization.inventoryMonitor.vCpus,
|
|
2085
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription3,
|
|
2086
|
+
measurement: '',
|
|
1178
2087
|
units: localization.common.num,
|
|
1179
|
-
nameEn: '
|
|
1180
|
-
testId: 'counters-table-
|
|
2088
|
+
nameEn: 'currentVcpus',
|
|
2089
|
+
testId: 'counters-table-vm-cpu-currentVcpus-item',
|
|
1181
2090
|
},
|
|
1182
2091
|
{
|
|
1183
2092
|
id: 3,
|
|
1184
|
-
name: localization.
|
|
1185
|
-
description: localization.inventoryMonitor.
|
|
1186
|
-
measurement:
|
|
2093
|
+
name: localization.inventoryMonitor.coresPerSocket,
|
|
2094
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription4,
|
|
2095
|
+
measurement: '',
|
|
1187
2096
|
units: localization.common.num,
|
|
1188
|
-
nameEn: '
|
|
1189
|
-
testId: 'counters-table-
|
|
2097
|
+
nameEn: 'corePerSocket',
|
|
2098
|
+
testId: 'counters-table-vm-cpu-corePerSocket-item',
|
|
1190
2099
|
},
|
|
1191
2100
|
{
|
|
1192
2101
|
id: 4,
|
|
1193
|
-
name: localization.inventoryMonitor.
|
|
1194
|
-
description: localization.inventoryMonitor.
|
|
1195
|
-
measurement:
|
|
1196
|
-
units: localization.
|
|
1197
|
-
nameEn: '
|
|
1198
|
-
testId: 'counters-table-
|
|
2102
|
+
name: localization.inventoryMonitor.totalCpuTime,
|
|
2103
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription5,
|
|
2104
|
+
measurement: '',
|
|
2105
|
+
units: localization.inventoryMonitor.ticks,
|
|
2106
|
+
nameEn: 'totalCpuTime',
|
|
2107
|
+
testId: 'counters-table-vm-cpu-totalCpuTime-item',
|
|
1199
2108
|
},
|
|
1200
2109
|
{
|
|
1201
2110
|
id: 5,
|
|
1202
|
-
name: localization.inventoryMonitor.
|
|
1203
|
-
description: localization.inventoryMonitor.
|
|
1204
|
-
measurement:
|
|
1205
|
-
units: localization.common.
|
|
1206
|
-
nameEn: '
|
|
1207
|
-
testId: 'counters-table-
|
|
2111
|
+
name: localization.inventoryMonitor.provisionedMhz,
|
|
2112
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription6,
|
|
2113
|
+
measurement: '',
|
|
2114
|
+
units: localization.common.mhz,
|
|
2115
|
+
nameEn: 'provisionedMhz',
|
|
2116
|
+
testId: 'counters-table-vm-cpu-provisionedMhz-item',
|
|
1208
2117
|
},
|
|
1209
2118
|
{
|
|
1210
2119
|
id: 6,
|
|
1211
|
-
name: localization.inventoryMonitor.
|
|
1212
|
-
description: localization.inventoryMonitor.
|
|
1213
|
-
measurement:
|
|
2120
|
+
name: localization.inventoryMonitor.cpuLimit,
|
|
2121
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription7,
|
|
2122
|
+
measurement: '',
|
|
2123
|
+
units: localization.common.mhz,
|
|
2124
|
+
nameEn: 'limitMhz',
|
|
2125
|
+
testId: 'counters-table-vm-cpu-limitMhz-item',
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
id: 7,
|
|
2129
|
+
name: localization.inventoryMonitor.userTime,
|
|
2130
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription8,
|
|
2131
|
+
measurement: '',
|
|
2132
|
+
units: localization.inventoryMonitor.ticks,
|
|
2133
|
+
nameEn: 'userTime',
|
|
2134
|
+
testId: 'counters-table-vm-cpu-userTime-item',
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
id: 8,
|
|
2138
|
+
name: localization.inventoryMonitor.systemTime,
|
|
2139
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription9,
|
|
2140
|
+
measurement: '',
|
|
2141
|
+
units: localization.inventoryMonitor.ticks,
|
|
2142
|
+
nameEn: 'systemTime',
|
|
2143
|
+
testId: 'counters-table-vm-cpu-systemTime-item',
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
id: 9,
|
|
2147
|
+
name: localization.inventoryMonitor.childrenUserTime,
|
|
2148
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription10,
|
|
2149
|
+
measurement: '',
|
|
2150
|
+
units: localization.inventoryMonitor.ticks,
|
|
2151
|
+
nameEn: 'childrenUserTime',
|
|
2152
|
+
testId: 'counters-table-vm-cpu-childrenUserTime-item',
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
id: 10,
|
|
2156
|
+
name: localization.inventoryMonitor.childrenSystemTime,
|
|
2157
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription11,
|
|
2158
|
+
measurement: '',
|
|
2159
|
+
units: localization.inventoryMonitor.ticks,
|
|
2160
|
+
nameEn: 'childrenSystemTime',
|
|
2161
|
+
testId: 'counters-table-vm-cpu-childrenSystemTime-item',
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
id: 11,
|
|
2165
|
+
name: localization.inventoryMonitor.coStopTime,
|
|
2166
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription12,
|
|
2167
|
+
measurement: '',
|
|
1214
2168
|
units: localization.common.num,
|
|
1215
|
-
nameEn: '
|
|
1216
|
-
testId: 'counters-table-
|
|
2169
|
+
nameEn: 'costop',
|
|
2170
|
+
testId: 'counters-table-vm-cpu-costop-item',
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
id: 12,
|
|
2174
|
+
name: localization.inventoryMonitor.throttledTime,
|
|
2175
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription13,
|
|
2176
|
+
measurement: '',
|
|
2177
|
+
units: localization.inventoryMonitor.mhz,
|
|
2178
|
+
nameEn: 'maxlimited',
|
|
2179
|
+
testId: 'counters-table-vm-cpu-maxlimited-item',
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
id: 13,
|
|
2183
|
+
name: localization.inventoryMonitor.cpuLatency,
|
|
2184
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription14,
|
|
2185
|
+
measurement: '',
|
|
2186
|
+
units: localization.common.ms,
|
|
2187
|
+
nameEn: 'cpuLatency',
|
|
2188
|
+
testId: 'counters-table-vm-cpu-cpuLatency-item',
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
id: 14,
|
|
2192
|
+
name: localization.inventoryMonitor.swapWait,
|
|
2193
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription15,
|
|
2194
|
+
measurement: '',
|
|
2195
|
+
units: localization.inventoryMonitor.ticks,
|
|
2196
|
+
nameEn: 'swapwait',
|
|
2197
|
+
testId: 'counters-table-vm-cpu-swapwait-item',
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
id: 15,
|
|
2201
|
+
name: localization.inventoryMonitor.hypervisorOverlap,
|
|
2202
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription16,
|
|
2203
|
+
measurement: '',
|
|
2204
|
+
units: localization.inventoryMonitor.ticks,
|
|
2205
|
+
nameEn: 'overlap',
|
|
2206
|
+
testId: 'counters-table-vm-cpu-overlap-item',
|
|
1217
2207
|
},
|
|
2208
|
+
{
|
|
2209
|
+
id: 16,
|
|
2210
|
+
name: localization.inventoryMonitor.cpuDemand,
|
|
2211
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription17,
|
|
2212
|
+
measurement: '',
|
|
2213
|
+
units: localization.common.mhz,
|
|
2214
|
+
nameEn: 'demand',
|
|
2215
|
+
testId: 'counters-table-vm-cpu-demand-item',
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
id: 17,
|
|
2219
|
+
name: localization.inventoryMonitor.cpuEntitlement,
|
|
2220
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription18,
|
|
2221
|
+
measurement: '',
|
|
2222
|
+
units: localization.common.mhz,
|
|
2223
|
+
nameEn: 'cpuEntitlement',
|
|
2224
|
+
testId: 'counters-table-vm-cpu-cpuEntitlement-item',
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
id: 18,
|
|
2228
|
+
name: localization.inventoryMonitor.numaNode,
|
|
2229
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription19,
|
|
2230
|
+
measurement: '',
|
|
2231
|
+
units: '-',
|
|
2232
|
+
nameEn: 'numaNode',
|
|
2233
|
+
testId: 'counters-table-vm-cpu-numaNode-item',
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
id: 19,
|
|
2237
|
+
name: localization.inventoryMonitor.affinityViolations,
|
|
2238
|
+
description: localization.inventoryMonitor.chartOptionsVmCpuDescription20,
|
|
2239
|
+
measurement: '',
|
|
2240
|
+
units: localization.common.num,
|
|
2241
|
+
nameEn: 'cpuAffinityViolations',
|
|
2242
|
+
testId: 'counters-table-vm-cpu-cpuAffinityViolations-item',
|
|
2243
|
+
},
|
|
2244
|
+
// New Update End
|
|
2245
|
+
]
|
|
2246
|
+
const memory: UI_I_AdvancedCounterItem[] = [
|
|
2247
|
+
// {
|
|
2248
|
+
// id: 0,
|
|
2249
|
+
// name: localization.inventoryMonitor.memorySizeMb,
|
|
2250
|
+
// description: localization.inventoryMonitor.sizeAvailableMemoryInMB,
|
|
2251
|
+
// measurement: localization.inventoryMonitor.usageInMb,
|
|
2252
|
+
// units: localization.common.mb,
|
|
2253
|
+
// nameEn: 'memory size mb',
|
|
2254
|
+
// testId: 'counters-table-memory-size-mb-item',
|
|
2255
|
+
// },
|
|
2256
|
+
// {
|
|
2257
|
+
// id: 1,
|
|
2258
|
+
// name: localization.inventoryMonitor.memoryUsedMb,
|
|
2259
|
+
// description: localization.inventoryMonitor.usedMemoryInMB,
|
|
2260
|
+
// measurement: localization.inventoryMonitor.usageInMb,
|
|
2261
|
+
// units: localization.common.mb,
|
|
2262
|
+
// nameEn: 'memory used mb',
|
|
2263
|
+
// testId: 'counters-table-memory-used-mb-item',
|
|
2264
|
+
// },
|
|
2265
|
+
// {
|
|
2266
|
+
// id: 2,
|
|
2267
|
+
// name: localization.inventoryMonitor.sharedPages,
|
|
2268
|
+
// description: localization.inventoryMonitor.sharedPagesDesc,
|
|
2269
|
+
// measurement: localization.common.num,
|
|
2270
|
+
// units: localization.common.num,
|
|
2271
|
+
// nameEn: 'shared pages',
|
|
2272
|
+
// testId: 'counters-table-memory-shared-pages-item',
|
|
2273
|
+
// },
|
|
2274
|
+
// {
|
|
2275
|
+
// id: 3,
|
|
2276
|
+
// name: localization.common.text,
|
|
2277
|
+
// description: localization.inventoryMonitor.textDesc,
|
|
2278
|
+
// measurement: localization.common.num,
|
|
2279
|
+
// units: localization.common.num,
|
|
2280
|
+
// nameEn: 'text',
|
|
2281
|
+
// testId: 'counters-table-memory-text-item',
|
|
2282
|
+
// },
|
|
2283
|
+
// {
|
|
2284
|
+
// id: 4,
|
|
2285
|
+
// name: localization.inventoryMonitor.library,
|
|
2286
|
+
// description: localization.inventoryMonitor.libraryDesc,
|
|
2287
|
+
// measurement: localization.common.kb,
|
|
2288
|
+
// units: localization.common.kb,
|
|
2289
|
+
// nameEn: 'library',
|
|
2290
|
+
// testId: 'counters-table-memory-library-item',
|
|
2291
|
+
// },
|
|
2292
|
+
// {
|
|
2293
|
+
// id: 5,
|
|
2294
|
+
// name: localization.inventoryMonitor.dataStack,
|
|
2295
|
+
// description: localization.inventoryMonitor.dataStackDesc,
|
|
2296
|
+
// measurement: localization.common.num,
|
|
2297
|
+
// units: localization.common.num,
|
|
2298
|
+
// nameEn: 'data stack',
|
|
2299
|
+
// testId: 'counters-table-memory-data-stack-item',
|
|
2300
|
+
// },
|
|
2301
|
+
// {
|
|
2302
|
+
// id: 6,
|
|
2303
|
+
// name: localization.inventoryMonitor.modifiedPages,
|
|
2304
|
+
// description: localization.inventoryMonitor.dirtyPagesDesc,
|
|
2305
|
+
// measurement: localization.common.num,
|
|
2306
|
+
// units: localization.common.num,
|
|
2307
|
+
// nameEn: 'dirty pages',
|
|
2308
|
+
// testId: 'counters-table-memory-dirty-pages-item',
|
|
2309
|
+
// },
|
|
2310
|
+
|
|
1218
2311
|
// {
|
|
1219
2312
|
// id: 0,
|
|
1220
2313
|
// name: localization.inventoryMonitor.memoryLimitMb2,
|
|
@@ -1269,6 +2362,279 @@ const vmItemsFunc = (
|
|
|
1269
2362
|
// nameEn: 'memory resident set size mb',
|
|
1270
2363
|
// testId: 'counters-table-memory-resident-set-size-mb-item',
|
|
1271
2364
|
// },
|
|
2365
|
+
|
|
2366
|
+
// New Update Start
|
|
2367
|
+
{
|
|
2368
|
+
id: 0,
|
|
2369
|
+
name: localization.inventoryMonitor.virtualMemory,
|
|
2370
|
+
description:
|
|
2371
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription1,
|
|
2372
|
+
measurement: '',
|
|
2373
|
+
units: localization.common.kb,
|
|
2374
|
+
nameEn: 'memory size mb',
|
|
2375
|
+
testId: 'counters-table-vm-memory-memory-size-mb-item',
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
id: 1,
|
|
2379
|
+
name: localization.inventoryMonitor.physicalMemoryRss,
|
|
2380
|
+
description:
|
|
2381
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription2,
|
|
2382
|
+
measurement: '',
|
|
2383
|
+
units: localization.common.kb,
|
|
2384
|
+
nameEn: 'memory used mb',
|
|
2385
|
+
testId: 'counters-table-vm-memory-memory-used-mb-item',
|
|
2386
|
+
},
|
|
2387
|
+
{
|
|
2388
|
+
id: 2,
|
|
2389
|
+
name: localization.inventoryMonitor.sharedPages2,
|
|
2390
|
+
description:
|
|
2391
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription3,
|
|
2392
|
+
measurement: '',
|
|
2393
|
+
units: localization.common.kb,
|
|
2394
|
+
nameEn: 'sharedPages',
|
|
2395
|
+
testId: 'counters-table-vm-memory-sharedPages-item',
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
id: 3,
|
|
2399
|
+
name: localization.inventoryMonitor.codeSegment,
|
|
2400
|
+
description:
|
|
2401
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription4,
|
|
2402
|
+
measurement: '',
|
|
2403
|
+
units: localization.common.kb,
|
|
2404
|
+
nameEn: 'text',
|
|
2405
|
+
testId: 'counters-table-vm-memory-text-item',
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
id: 4,
|
|
2409
|
+
name: localization.inventoryMonitor.sharedLibraries,
|
|
2410
|
+
description:
|
|
2411
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription5,
|
|
2412
|
+
measurement: '',
|
|
2413
|
+
units: localization.common.kb,
|
|
2414
|
+
nameEn: 'library',
|
|
2415
|
+
testId: 'counters-table-vm-memory-library-item',
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
id: 5,
|
|
2419
|
+
name: localization.inventoryMonitor.dataStack2,
|
|
2420
|
+
description:
|
|
2421
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription6,
|
|
2422
|
+
measurement: '',
|
|
2423
|
+
units: localization.common.kb,
|
|
2424
|
+
nameEn: 'dataStack',
|
|
2425
|
+
testId: 'counters-table-vm-memory-dataStack-item',
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
id: 6,
|
|
2429
|
+
name: localization.inventoryMonitor.dirtyPages2,
|
|
2430
|
+
description:
|
|
2431
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription7,
|
|
2432
|
+
measurement: '',
|
|
2433
|
+
units: localization.common.kb,
|
|
2434
|
+
nameEn: 'dirtyPages',
|
|
2435
|
+
testId: 'counters-table-vm-memory-dirtyPages-item',
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
id: 7,
|
|
2439
|
+
name: localization.inventoryMonitor.balloonCurrent,
|
|
2440
|
+
description:
|
|
2441
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription8,
|
|
2442
|
+
measurement: '',
|
|
2443
|
+
units: localization.common.kb,
|
|
2444
|
+
nameEn: 'balloonCurrent',
|
|
2445
|
+
testId: 'counters-table-vm-memory-balloonCurrent-item',
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
id: 8,
|
|
2449
|
+
name: localization.inventoryMonitor.balloonMax,
|
|
2450
|
+
description:
|
|
2451
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription9,
|
|
2452
|
+
measurement: '',
|
|
2453
|
+
units: localization.common.kb,
|
|
2454
|
+
nameEn: 'balloonMaximum',
|
|
2455
|
+
testId: 'counters-table-vm-memory-balloonMaximum-item',
|
|
2456
|
+
},
|
|
2457
|
+
{
|
|
2458
|
+
id: 9,
|
|
2459
|
+
name: localization.inventoryMonitor.balloonRss,
|
|
2460
|
+
description:
|
|
2461
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription10,
|
|
2462
|
+
measurement: '',
|
|
2463
|
+
units: localization.common.kb,
|
|
2464
|
+
nameEn: 'balloonRss',
|
|
2465
|
+
testId: 'counters-table-vm-memory-balloonRss-item',
|
|
2466
|
+
},
|
|
2467
|
+
{
|
|
2468
|
+
id: 10,
|
|
2469
|
+
name: localization.inventoryMonitor.vmSwap,
|
|
2470
|
+
description:
|
|
2471
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription11,
|
|
2472
|
+
measurement: '',
|
|
2473
|
+
units: localization.common.kb,
|
|
2474
|
+
nameEn: 'vmSwap',
|
|
2475
|
+
testId: 'counters-table-vm-memory-vmSwap-item',
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
id: 11,
|
|
2479
|
+
name: localization.inventoryMonitor.peakVirtualMemory,
|
|
2480
|
+
description:
|
|
2481
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription12,
|
|
2482
|
+
measurement: '',
|
|
2483
|
+
units: localization.common.kb,
|
|
2484
|
+
nameEn: 'vmPeak',
|
|
2485
|
+
testId: 'counters-table-vm-memory-vmPeak-item',
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
id: 12,
|
|
2489
|
+
name: localization.inventoryMonitor.peakPhysicalMemory,
|
|
2490
|
+
description:
|
|
2491
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription13,
|
|
2492
|
+
measurement: '',
|
|
2493
|
+
units: localization.common.kb,
|
|
2494
|
+
nameEn: 'vmHwm',
|
|
2495
|
+
testId: 'counters-table-vm-memory-vmHwm-item',
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
id: 13,
|
|
2499
|
+
name: localization.inventoryMonitor.memoryConsumed,
|
|
2500
|
+
description:
|
|
2501
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription14,
|
|
2502
|
+
measurement: '',
|
|
2503
|
+
units: localization.common.kb,
|
|
2504
|
+
nameEn: 'memConsumed',
|
|
2505
|
+
testId: 'counters-table-vm-memory-memConsumed-item',
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
id: 14,
|
|
2509
|
+
name: localization.inventoryMonitor.memoryOverhead,
|
|
2510
|
+
description:
|
|
2511
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription15,
|
|
2512
|
+
measurement: '',
|
|
2513
|
+
units: localization.common.kb,
|
|
2514
|
+
nameEn: 'memOverhead',
|
|
2515
|
+
testId: 'counters-table-vm-memory-memOverhead-item',
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
id: 15,
|
|
2519
|
+
name: localization.inventoryMonitor.memoryGranted,
|
|
2520
|
+
description:
|
|
2521
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription16,
|
|
2522
|
+
measurement: '',
|
|
2523
|
+
units: localization.common.kb,
|
|
2524
|
+
nameEn: 'memGranted',
|
|
2525
|
+
testId: 'counters-table-vm-memory-memGranted-item',
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
id: 16,
|
|
2529
|
+
name: localization.inventoryMonitor.activeMemory,
|
|
2530
|
+
description:
|
|
2531
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription17,
|
|
2532
|
+
measurement: '',
|
|
2533
|
+
units: localization.common.kb,
|
|
2534
|
+
nameEn: 'memActive',
|
|
2535
|
+
testId: 'counters-table-vm-memory-memActive-item',
|
|
2536
|
+
},
|
|
2537
|
+
{
|
|
2538
|
+
id: 17,
|
|
2539
|
+
name: localization.inventoryMonitor.activeWriteMemory,
|
|
2540
|
+
description:
|
|
2541
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription18,
|
|
2542
|
+
measurement: '',
|
|
2543
|
+
units: localization.common.kb,
|
|
2544
|
+
nameEn: 'memActivewrite',
|
|
2545
|
+
testId: 'counters-table-vm-memory-memActivewrite-item',
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
id: 18,
|
|
2549
|
+
name: localization.inventoryMonitor.compressedMemory,
|
|
2550
|
+
description:
|
|
2551
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription19,
|
|
2552
|
+
measurement: '',
|
|
2553
|
+
units: localization.common.kb,
|
|
2554
|
+
nameEn: 'memCompressed',
|
|
2555
|
+
testId: 'counters-table-vm-memory-memCompressed-item',
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
id: 19,
|
|
2559
|
+
name: localization.inventoryMonitor.compressionRate,
|
|
2560
|
+
description:
|
|
2561
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription20,
|
|
2562
|
+
measurement: '',
|
|
2563
|
+
units: '%',
|
|
2564
|
+
nameEn: 'memCompressionRate',
|
|
2565
|
+
testId: 'counters-table-vm-memory-memCompressionRate-item',
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
id: 20,
|
|
2569
|
+
name: localization.inventoryMonitor.memorySwapped,
|
|
2570
|
+
description:
|
|
2571
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription21,
|
|
2572
|
+
measurement: '',
|
|
2573
|
+
units: localization.common.kb,
|
|
2574
|
+
nameEn: 'memSwapped',
|
|
2575
|
+
testId: 'counters-table-vm-memory-memSwapped-item',
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
id: 21,
|
|
2579
|
+
name: localization.inventoryMonitor.swapInRate,
|
|
2580
|
+
description:
|
|
2581
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription22,
|
|
2582
|
+
measurement: '',
|
|
2583
|
+
units: localization.inventoryMonitor.kbs,
|
|
2584
|
+
nameEn: 'memSwapInRate',
|
|
2585
|
+
testId: 'counters-table-vm-memory-memSwapInRate-item',
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
id: 22,
|
|
2589
|
+
name: localization.inventoryMonitor.swapOutRate,
|
|
2590
|
+
description:
|
|
2591
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription23,
|
|
2592
|
+
measurement: '',
|
|
2593
|
+
units: localization.inventoryMonitor.kbs,
|
|
2594
|
+
nameEn: 'memSwapOutRate',
|
|
2595
|
+
testId: 'counters-table-vm-memory-memSwapOutRate-item',
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
id: 23,
|
|
2599
|
+
name: localization.inventoryMonitor.memoryLatency,
|
|
2600
|
+
description:
|
|
2601
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription24,
|
|
2602
|
+
measurement: '',
|
|
2603
|
+
units: localization.common.faults,
|
|
2604
|
+
nameEn: 'memLatency',
|
|
2605
|
+
testId: 'counters-table-vm-memory-memLatency-item',
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
id: 24,
|
|
2609
|
+
name: localization.inventoryMonitor.memoryEntitlement,
|
|
2610
|
+
description:
|
|
2611
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription25,
|
|
2612
|
+
measurement: '',
|
|
2613
|
+
units: localization.common.kb,
|
|
2614
|
+
nameEn: 'memEntitlement',
|
|
2615
|
+
testId: 'counters-table-vm-memory-memEntitlement-item',
|
|
2616
|
+
},
|
|
2617
|
+
{
|
|
2618
|
+
id: 25,
|
|
2619
|
+
name: localization.inventoryMonitor.numaLocalRatio,
|
|
2620
|
+
description:
|
|
2621
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription26,
|
|
2622
|
+
measurement: '',
|
|
2623
|
+
units: '%',
|
|
2624
|
+
nameEn: 'memNumaLocalRatio',
|
|
2625
|
+
testId: 'counters-table-vm-memory-memNumaLocalRatio-item',
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
id: 26,
|
|
2629
|
+
name: localization.inventoryMonitor.numaLocalRatio,
|
|
2630
|
+
description:
|
|
2631
|
+
localization.inventoryMonitor.chartOptionsVmMemoryDescription27,
|
|
2632
|
+
measurement: '',
|
|
2633
|
+
units: localization.common.kb,
|
|
2634
|
+
nameEn: 'memLlSwapUsed',
|
|
2635
|
+
testId: 'counters-table-vm-memory-memLlSwapUsed-item',
|
|
2636
|
+
},
|
|
2637
|
+
// New Update End
|
|
1272
2638
|
]
|
|
1273
2639
|
const datastore: UI_I_AdvancedCounterItem[] = [
|
|
1274
2640
|
{
|
|
@@ -1316,22 +2682,52 @@ export const countersItemsFunc = (
|
|
|
1316
2682
|
type: UI_T_AdvancedType,
|
|
1317
2683
|
chart: UI_T_ChartHost | UI_T_ChartVm,
|
|
1318
2684
|
localization: UI_I_Localization,
|
|
1319
|
-
|
|
2685
|
+
project: UI_T_Project,
|
|
2686
|
+
powerData: UI_I_AdvancedCounterItem[],
|
|
2687
|
+
temperatureData: UI_I_AdvancedCounterItem[]
|
|
1320
2688
|
): UI_I_AdvancedCounterItem[] => {
|
|
1321
2689
|
let result: UI_I_AdvancedCounterItem[] = []
|
|
1322
2690
|
|
|
1323
2691
|
switch (type) {
|
|
1324
2692
|
case 'zone':
|
|
1325
|
-
result = hostItemsFunc(
|
|
2693
|
+
result = hostItemsFunc(
|
|
2694
|
+
chart,
|
|
2695
|
+
localization,
|
|
2696
|
+
type,
|
|
2697
|
+
project,
|
|
2698
|
+
powerData,
|
|
2699
|
+
temperatureData
|
|
2700
|
+
)
|
|
1326
2701
|
break
|
|
1327
2702
|
case 'datacenter':
|
|
1328
|
-
result = hostItemsFunc(
|
|
2703
|
+
result = hostItemsFunc(
|
|
2704
|
+
chart,
|
|
2705
|
+
localization,
|
|
2706
|
+
type,
|
|
2707
|
+
project,
|
|
2708
|
+
powerData,
|
|
2709
|
+
temperatureData
|
|
2710
|
+
)
|
|
1329
2711
|
break
|
|
1330
2712
|
case 'cluster':
|
|
1331
|
-
result = hostItemsFunc(
|
|
2713
|
+
result = hostItemsFunc(
|
|
2714
|
+
chart,
|
|
2715
|
+
localization,
|
|
2716
|
+
type,
|
|
2717
|
+
project,
|
|
2718
|
+
powerData,
|
|
2719
|
+
temperatureData
|
|
2720
|
+
)
|
|
1332
2721
|
break
|
|
1333
2722
|
case 'host':
|
|
1334
|
-
result = hostItemsFunc(
|
|
2723
|
+
result = hostItemsFunc(
|
|
2724
|
+
chart,
|
|
2725
|
+
localization,
|
|
2726
|
+
type,
|
|
2727
|
+
project,
|
|
2728
|
+
powerData,
|
|
2729
|
+
temperatureData
|
|
2730
|
+
)
|
|
1335
2731
|
break
|
|
1336
2732
|
case 'vm':
|
|
1337
2733
|
result = vmItemsFunc(chart, localization)
|
|
@@ -1342,42 +2738,54 @@ export const countersItemsFunc = (
|
|
|
1342
2738
|
}
|
|
1343
2739
|
|
|
1344
2740
|
export const getDefaultMetricName = (type: string, view: string): string => {
|
|
1345
|
-
const someNames = [
|
|
2741
|
+
const someNames = [
|
|
2742
|
+
'memory',
|
|
2743
|
+
'disk',
|
|
2744
|
+
'network',
|
|
2745
|
+
'nfs',
|
|
2746
|
+
'services',
|
|
2747
|
+
'power',
|
|
2748
|
+
'temperature',
|
|
2749
|
+
]
|
|
1346
2750
|
|
|
1347
2751
|
if (type === 'datacenter') return 'cpu'
|
|
1348
2752
|
else if (view === 'cpuUsageInPercent') return 'cpu'
|
|
2753
|
+
else if (view === 'hyperConvergedInfrastructure') return 'hci'
|
|
1349
2754
|
else if (someNames.includes(view)) return view
|
|
1350
2755
|
|
|
1351
2756
|
return ''
|
|
1352
2757
|
}
|
|
1353
2758
|
|
|
1354
|
-
export const getDefaultCounters = (
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
}
|
|
2759
|
+
// export const getDefaultCounters = (
|
|
2760
|
+
// type: string,
|
|
2761
|
+
// view: string,
|
|
2762
|
+
// project?: UI_T_Project
|
|
2763
|
+
// ): UI_I_AdvancedCounterItem[] => {
|
|
2764
|
+
// switch (type) {
|
|
2765
|
+
// case 'datacenter':
|
|
2766
|
+
// return [hostItemsFunc('cpu', {})[0]]
|
|
2767
|
+
// case 'host':
|
|
2768
|
+
// switch (view) {
|
|
2769
|
+
// case 'cpuUsageInPercent':
|
|
2770
|
+
// return hostItemsFunc('cpu', {}).splice(0, 2)
|
|
2771
|
+
// case 'disk':
|
|
2772
|
+
// return hostItemsFunc('disk', {}).filter((_, key) =>
|
|
2773
|
+
// [0, 14].includes(key)
|
|
2774
|
+
// )
|
|
2775
|
+
// case 'memory':
|
|
2776
|
+
// return hostItemsFunc('memory', {})
|
|
2777
|
+
// case 'network':
|
|
2778
|
+
// return hostItemsFunc('network', {}).splice(1, 3)
|
|
2779
|
+
// case 'services':
|
|
2780
|
+
// return hostItemsFunc('services', {}, '', project)
|
|
2781
|
+
// }
|
|
2782
|
+
// break
|
|
2783
|
+
// case 'vm':
|
|
2784
|
+
// switch (view) {
|
|
2785
|
+
// case 'cpuUsageInPercent':
|
|
2786
|
+
// return []
|
|
2787
|
+
// }
|
|
2788
|
+
// }
|
|
2789
|
+
//
|
|
2790
|
+
// return []
|
|
2791
|
+
// }
|