@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
10 lines (9 loc) • 464 B
TypeScript
import { type NamespaceName } from '../../../types/namespace/namespace-name.js';
import { type PodName } from '../../../integration/kube/resources/pod/pod-name.js';
import { Metrics } from './metrics.js';
export declare class PodMetrics extends Metrics {
readonly namespace: NamespaceName;
readonly podName: PodName;
constructor(namespace: NamespaceName, podName: PodName, cpuInMillicores: number, memoryInMebibytes: number);
toString(): string;
}