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

13 lines (12 loc) 504 B
export interface Metrics { [propertyName: string]: { [propertyName: string]: number; }; } export interface BucketHash { [le: string]: number; } export declare function fetchMetrics(metricUri: string, node_name?: string): Promise<Metrics>; export declare function getHistogramBuckets(metricUri: string, metricName: string): Promise<BucketHash>; export declare function getMetricName(metricName: string): string; export declare function getProcessStartTimeKey(prefix?: string): string;