@graphql-yoga/plugin-prometheus
Version:
Prometheus plugin for GraphQL Yoga.
12 lines (11 loc) • 537 B
TypeScript
import { PrometheusTracingPluginConfig as EnvelopPrometheusTracingPluginConfig } from '@envelop/prometheus';
import { Plugin } from 'graphql-yoga';
export interface PrometheusTracingPluginConfig extends EnvelopPrometheusTracingPluginConfig {
http?: boolean | EnvelopPrometheusTracingPluginConfig['execute'];
/**
* The endpoint to serve metrics exposed by this plugin.
* Defaults to "/metrics".
*/
endpoint?: string;
}
export declare function usePrometheus(options: PrometheusTracingPluginConfig): Plugin<any>;