UNPKG

@zombienet/orchestrator

Version:

ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks

17 lines (16 loc) 541 B
import { Client } from "../../client"; import { PodSpec } from "./types"; export declare class PrometheusResource { private readonly namespace; private readonly configPath; private readonly dataPath; constructor(client: Client, namespace: string); generateSpec(): Promise<PodSpec>; private createVolumeDirectories; private generatePrometheusConfig; private generateVolumes; private generateVolumesMounts; private generateContainersPorts; private generateContainers; private generatePodSpec; }