mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* add no-unused-vars and no-unused-imports * added quotes: double, and remove ignore pattern * move itif and describeif into utils Signed-off-by: Sebastian Malton <sebastian@malton.name>
187 lines
6.8 KiB
TypeScript
187 lines
6.8 KiB
TypeScript
import "./nodes.scss";
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { RouteComponentProps } from "react-router";
|
|
import { t, Trans } from "@lingui/macro";
|
|
import { cssNames, interval } from "../../utils";
|
|
import { TabLayout } from "../layout/tab-layout";
|
|
import { nodesStore } from "./nodes.store";
|
|
import { podsStore } from "../+workloads-pods/pods.store";
|
|
import { KubeObjectListLayout } from "../kube-object";
|
|
import { INodesRouteParams } from "./nodes.route";
|
|
import { Node } from "../../api/endpoints/nodes.api";
|
|
import { LineProgress } from "../line-progress";
|
|
import { _i18n } from "../../i18n";
|
|
import { bytesToUnits } from "../../utils/convertMemory";
|
|
import { Tooltip, TooltipPosition } from "../tooltip";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import upperFirst from "lodash/upperFirst";
|
|
import { KubeObjectStatusIcon } from "../kube-object-status-icon";
|
|
|
|
enum sortBy {
|
|
name = "name",
|
|
cpu = "cpu",
|
|
memory = "memory",
|
|
disk = "disk",
|
|
conditions = "condition",
|
|
taints = "taints",
|
|
roles = "roles",
|
|
age = "age",
|
|
version = "version",
|
|
status = "status",
|
|
}
|
|
|
|
interface Props extends RouteComponentProps<INodesRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class Nodes extends React.Component<Props> {
|
|
private metricsWatcher = interval(30, () => nodesStore.loadUsageMetrics());
|
|
|
|
componentDidMount() {
|
|
this.metricsWatcher.start(true);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.metricsWatcher.stop();
|
|
}
|
|
|
|
renderCpuUsage(node: Node) {
|
|
const metrics = nodesStore.getLastMetricValues(node, ["cpuUsage", "cpuCapacity"]);
|
|
if (!metrics || !metrics[1]) return <LineProgress value={0}/>;
|
|
const usage = metrics[0];
|
|
const cores = metrics[1];
|
|
return (
|
|
<LineProgress
|
|
max={cores}
|
|
value={usage}
|
|
tooltip={{
|
|
preferredPositions: TooltipPosition.BOTTOM,
|
|
children: _i18n._(t`CPU:`) + ` ${Math.ceil(usage * 100) / cores}\%, ` + _i18n._(t`cores:`) + ` ${cores}`
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderMemoryUsage(node: Node) {
|
|
const metrics = nodesStore.getLastMetricValues(node, ["memoryUsage", "memoryCapacity"]);
|
|
if (!metrics || !metrics[1]) return <LineProgress value={0}/>;
|
|
const usage = metrics[0];
|
|
const capacity = metrics[1];
|
|
return (
|
|
<LineProgress
|
|
max={capacity}
|
|
value={usage}
|
|
tooltip={{
|
|
preferredPositions: TooltipPosition.BOTTOM,
|
|
children: _i18n._(t`Memory:`) + ` ${Math.ceil(usage * 100 / capacity)}%, ${bytesToUnits(usage, 3)}`
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderDiskUsage(node: Node): any {
|
|
const metrics = nodesStore.getLastMetricValues(node, ["fsUsage", "fsSize"]);
|
|
if (!metrics || !metrics[1]) return <LineProgress value={0}/>;
|
|
const usage = metrics[0];
|
|
const capacity = metrics[1];
|
|
return (
|
|
<LineProgress
|
|
max={capacity}
|
|
value={usage}
|
|
tooltip={{
|
|
preferredPositions: TooltipPosition.BOTTOM,
|
|
children: _i18n._(t`Disk:`) + ` ${Math.ceil(usage * 100 / capacity)}%, ${bytesToUnits(usage, 3)}`
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderConditions(node: Node) {
|
|
if (!node.status.conditions) {
|
|
return null;
|
|
}
|
|
const conditions = node.getActiveConditions();
|
|
return conditions.map(condition => {
|
|
const { type } = condition;
|
|
const tooltipId = `node-${node.getName()}-condition-${type}`;
|
|
return (
|
|
<div key={type} id={tooltipId} className={cssNames("condition", kebabCase(type))}>
|
|
{type}
|
|
<Tooltip targetId={tooltipId} formatters={{ tableView: true }}>
|
|
{Object.entries(condition).map(([key, value]) =>
|
|
<div key={key} className="flex gaps align-center">
|
|
<div className="name">{upperFirst(key)}</div>
|
|
<div className="value">{value}</div>
|
|
</div>
|
|
)}
|
|
</Tooltip>
|
|
</div>);
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<TabLayout>
|
|
<KubeObjectListLayout
|
|
className="Nodes"
|
|
store={nodesStore} isClusterScoped
|
|
isReady={nodesStore.isLoaded && nodesStore.metricsLoaded}
|
|
dependentStores={[podsStore]}
|
|
isSelectable={false}
|
|
sortingCallbacks={{
|
|
[sortBy.name]: (node: Node) => node.getName(),
|
|
[sortBy.cpu]: (node: Node) => nodesStore.getLastMetricValues(node, ["cpuUsage"]),
|
|
[sortBy.memory]: (node: Node) => nodesStore.getLastMetricValues(node, ["memoryUsage"]),
|
|
[sortBy.disk]: (node: Node) => nodesStore.getLastMetricValues(node, ["fsUsage"]),
|
|
[sortBy.conditions]: (node: Node) => node.getNodeConditionText(),
|
|
[sortBy.taints]: (node: Node) => node.getTaints().length,
|
|
[sortBy.roles]: (node: Node) => node.getRoleLabels(),
|
|
[sortBy.age]: (node: Node) => node.metadata.creationTimestamp,
|
|
[sortBy.version]: (node: Node) => node.getKubeletVersion(),
|
|
}}
|
|
searchFilters={[
|
|
(node: Node) => node.getSearchFields(),
|
|
(node: Node) => node.getRoleLabels(),
|
|
(node: Node) => node.getKubeletVersion(),
|
|
(node: Node) => node.getNodeConditionText(),
|
|
]}
|
|
renderHeaderTitle={<Trans>Nodes</Trans>}
|
|
renderTableHeader={[
|
|
{ title: <Trans>Name</Trans>, className: "name", sortBy: sortBy.name },
|
|
{ className: "warning" },
|
|
{ title: <Trans>CPU</Trans>, className: "cpu", sortBy: sortBy.cpu },
|
|
{ title: <Trans>Memory</Trans>, className: "memory", sortBy: sortBy.memory },
|
|
{ title: <Trans>Disk</Trans>, className: "disk", sortBy: sortBy.disk },
|
|
{ title: <Trans>Taints</Trans>, className: "taints", sortBy: sortBy.taints },
|
|
{ title: <Trans>Roles</Trans>, className: "roles", sortBy: sortBy.roles },
|
|
{ title: <Trans>Version</Trans>, className: "version", sortBy: sortBy.version },
|
|
{ title: <Trans>Age</Trans>, className: "age", sortBy: sortBy.age },
|
|
{ title: <Trans>Conditions</Trans>, className: "conditions", sortBy: sortBy.conditions },
|
|
]}
|
|
renderTableContents={(node: Node) => {
|
|
const tooltipId = `node-taints-${node.getId()}`;
|
|
return [
|
|
node.getName(),
|
|
<KubeObjectStatusIcon key="icon" object={node} />,
|
|
this.renderCpuUsage(node),
|
|
this.renderMemoryUsage(node),
|
|
this.renderDiskUsage(node),
|
|
<>
|
|
<span id={tooltipId}>{node.getTaints().length}</span>
|
|
<Tooltip targetId={tooltipId} style={{ whiteSpace: "pre-line" }}>
|
|
{node.getTaints().map(({ key, effect }) => `${key}: ${effect}`).join("\n")}
|
|
</Tooltip>
|
|
</>,
|
|
node.getRoleLabels(),
|
|
node.status.nodeInfo.kubeletVersion,
|
|
node.getAge(),
|
|
this.renderConditions(node),
|
|
];
|
|
}}
|
|
/>
|
|
</TabLayout>
|
|
);
|
|
}
|
|
}
|