@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
12 lines (9 loc) • 343 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type NamespaceName} from '../../../../types/namespace/namespace-name.js';
import {type PodName} from './pod-name.js';
export interface PodMetricsItem {
readonly namespace: NamespaceName;
readonly podName: PodName;
readonly cpuInMillicores: number;
readonly memoryInMebibytes: number;
}