UNPKG

@nitin15j/plugin-dora-frontend

Version:
18 lines (15 loc) 771 B
import { MetricType } from '../common/types/metrics.esm.js'; const METRIC_DESCRIPTIONS = { [MetricType.Frequency]: "How often an organization successfully releases to production", [MetricType.LeadTime]: "The amount of time it takes a commit to get into production", [MetricType.Mttr]: "How long it takes an organization to recover from a failure in production", [MetricType.FailureRate]: "The percentage of deployments causing a failure in production" }; const METRIC_TARGETS = { [MetricType.Frequency]: "Multiple deploys per day", [MetricType.LeadTime]: "Less than one hour", [MetricType.FailureRate]: "Less than 15%", [MetricType.Mttr]: "Less than one hour" }; export { METRIC_DESCRIPTIONS, METRIC_TARGETS }; //# sourceMappingURL=constants.esm.js.map