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

18 lines (17 loc) 613 B
import { Client } from "../../client"; import { PodSpec } from "./types"; export declare class GrafanaResource { private readonly namespace; private readonly prometheusIp; private readonly tempoIp; private readonly dataSourcesPath; constructor(client: Client, namespace: string, prometheusIp: string, tempoIp: string); generateSpec(): Promise<PodSpec>; private createVolumeDirectories; private generateGrafanaConfig; private generateVolumes; private generateVolumesMounts; private generateContainersPorts; private generateContainers; private generatePodSpec; }