mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-19 04:26:39 +00:00
newly added system info including: 1. Cluster num 2. App running num 3. cpu and mem usage condition of vela-core 4. cpu and mem usage condition of vela-core cluster gateway Signed-off-by: HanMengnan <1448189829@qq.com> Signed-off-by: HanMengnan <1448189829@qq.com>
29 lines
832 B
Go
29 lines
832 B
Go
/*
|
|
Copyright 2022 The KubeVela Authors.
|
|
|
|
Licensed 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.
|
|
*/
|
|
|
|
package config
|
|
|
|
const (
|
|
// HeaderRowNum ui header max row num
|
|
HeaderRowNum = 7
|
|
// FooterRowNum ui footer max row num
|
|
FooterRowNum = 1
|
|
// MenuRowNum menu component max row num
|
|
MenuRowNum = 6
|
|
// LogoColumnNum logo component max column num
|
|
LogoColumnNum = 50
|
|
)
|