n8n
Version:
n8n Workflow Automation Tool
7 lines (6 loc) • 330 B
TypeScript
export type MetricCategory = 'default' | 'routes' | 'cache' | 'logs' | 'queue';
export type MetricLabel = 'credentialsType' | 'nodeType' | 'workflowId' | 'workflowName' | 'apiPath' | 'apiMethod' | 'apiStatusCode';
export type Includes = {
metrics: Record<MetricCategory, boolean>;
labels: Record<MetricLabel, boolean>;
};