diff --git a/ui/src/config/section/infra.js b/ui/src/config/section/infra.js index e5eda5c3f9b..fc12b125800 100644 --- a/ui/src/config/section/infra.js +++ b/ui/src/config/section/infra.js @@ -56,8 +56,7 @@ export default { title: 'label.cpu.sockets', icon: 'inbox', permission: ['listHosts'], - params: { type: 'routing' }, - columns: ['hypervisor', 'hosts', 'cpusockets'] + component: () => import('@/views/infra/CpuSockets.vue') }, { name: 'managementserver', diff --git a/ui/src/views/infra/CpuSockets.vue b/ui/src/views/infra/CpuSockets.vue new file mode 100644 index 00000000000..bcbb8c1a7c4 --- /dev/null +++ b/ui/src/views/infra/CpuSockets.vue @@ -0,0 +1,179 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + + + + + +