UNPKG

@nitin15j/plugin-dora-frontend

Version:
38 lines (35 loc) 885 B
import { MetricType, Performance } from '../types/metrics.esm.js'; const PERFORMANCE_THRESHOLDS = { [MetricType.Frequency]: { [Performance.Elite]: 1, [Performance.High]: 0.5, [Performance.Medium]: 0.1, [Performance.Low]: 0 }, [MetricType.LeadTime]: { [Performance.Elite]: 3600, // 1 hour [Performance.High]: 86400, // 24 hours [Performance.Medium]: 604800, // 1 week [Performance.Low]: Infinity }, [MetricType.FailureRate]: { [Performance.Elite]: 5, [Performance.High]: 10, [Performance.Medium]: 15, [Performance.Low]: Infinity }, [MetricType.Mttr]: { [Performance.Elite]: 3600, // 1 hour [Performance.High]: 86400, // 24 hours [Performance.Medium]: 604800, // 1 week [Performance.Low]: Infinity } }; export { PERFORMANCE_THRESHOLDS }; //# sourceMappingURL=thresholds.esm.js.map