skyline/src/pages/container-service/containers/Containers/Detail/BaseDetail.jsx
xusongfu 251a353e98 feat: show stats of a zun container
Show stats of a zun container

Change-Id: I508a97d1a86217a590ccb624a0009cc44daef95f
2022-08-02 14:34:10 +08:00

213 lines
4.5 KiB
JavaScript

// Copyright 2021 99cloud
//
// 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.
import Base from 'containers/BaseDetail';
import React from 'react';
import { inject, observer } from 'mobx-react';
import { containerStatus } from 'resources/zun/container';
import { isEmpty } from 'lodash';
export class BaseDetail extends Base {
get leftCards() {
const cards = [this.baseInfoCard, this.statsCard, this.miscellaneousCard];
return cards;
}
get rightCards() {
return [this.specCard];
}
get stringifyContent() {
return (value) =>
isEmpty(value) ? (
'-'
) : (
<div>
<pre>{JSON.stringify(value, null, 4)}</pre>
</div>
);
}
get baseInfoCard() {
const options = [
{
label: t('Status Detail'),
dataIndex: 'status_detail',
render: (value) => containerStatus[value] || value,
},
{
label: t('Status Reason'),
dataIndex: 'status_reason',
},
{
label: t('Task State'),
dataIndex: 'task_state',
},
{
label: t('Command'),
dataIndex: 'command',
render: this.stringifyContent,
},
];
return {
title: t('Base Info'),
options,
};
}
get miscellaneousCard() {
const options = [
{
label: t('Host'),
dataIndex: 'host',
},
{
label: t('Workdir'),
dataIndex: 'workdir',
},
{
label: t('Environment'),
dataIndex: 'environment',
render: this.stringifyContent,
},
{
label: t('Interactive'),
dataIndex: 'interactive',
valueRender: 'yesNo',
},
{
label: t('Labels'),
dataIndex: 'labels',
render: this.stringifyContent,
},
];
return {
title: t('Miscellaneous'),
options,
};
}
get specCard() {
const options = [
{
label: t('Image'),
dataIndex: 'image',
},
{
label: t('Image Driver'),
dataIndex: 'image_driver',
},
{
label: t('Image Pull Policy'),
dataIndex: 'image_pull_policy',
},
{
label: t('Hostname'),
dataIndex: 'hostname',
},
{
label: t('Runtime'),
dataIndex: 'runtime',
},
{
label: t('CPU (Core)'),
dataIndex: 'cpu',
},
{
label: t('Memory (MiB)'),
dataIndex: 'memory',
},
{
label: t('Disk (GiB)'),
dataIndex: 'disk',
},
{
label: t('Restart Policy'),
dataIndex: 'restart_policy',
render: this.stringifyContent,
},
{
label: t('Auto Remove'),
dataIndex: 'auto_remove',
},
{
label: t('Auto Heal'),
dataIndex: 'auto_heal',
},
{
label: t('Addresses'),
dataIndex: 'addresses',
render: this.stringifyContent,
},
{
label: t('Ports'),
dataIndex: 'ports',
render: this.stringifyContent,
},
{
label: t('Security Groups'),
dataIndex: 'security_groups',
render: this.stringifyContent,
},
];
return {
title: t('Spec'),
labelCol: 4,
options,
};
}
get statsCard() {
const options = [
{
label: t('BLOCK I/O(B)'),
dataIndex: 'BLOCK I/O(B)',
},
{
label: t('NET I/O(B)'),
dataIndex: 'NET I/O(B)',
},
{
label: t('CPU %'),
dataIndex: 'CPU %',
render: (value = 0) => value.toFixed(4),
},
{
label: t('MEM LIMIT(MiB)'),
dataIndex: 'MEM LIMIT(MiB)',
},
{
label: t('MEM USAGE(MiB)'),
dataIndex: 'MEM USAGE(MiB)',
render: (value = 0) => value.toFixed(4),
},
{
label: t('MEM %'),
dataIndex: 'MEM %',
render: (value = 0) => value.toFixed(4),
},
];
return {
title: t('Stats Information'),
options,
};
}
}
export default inject('rootStore')(observer(BaseDetail));