| 1 | export interface IMetricsProvider { |
| 2 | getName(): string |
| 3 | initializeCounters(): void |
| 4 | setupMetricsEndpoint(): void |
| 5 | incrementCounter(counter: FLOWISE_METRIC_COUNTERS, payload: any): void |
| 6 | } |
| 7 | |
| 8 | export enum FLOWISE_COUNTER_STATUS { |
| 9 | SUCCESS = 'success', |
no outgoing calls
no test coverage detected