Chapter 7: Metrics & Measurement

“What gets measured gets managed, but what gets measured wrong gets mismanaged.”

๐ŸŽฏ Learning Objectives

By the end of this chapter, you will understand:

  • The four categories of SysOps Framework metrics
  • How to design effective dashboards for different audiences
  • Key performance indicators that align with operational goals
  • How to measure framework implementation success

Principles in play. Metrics are how Service Reliability First stops being a slogan and becomes a number, and how Risk Management (Chapter 2) turns into something you can see coming rather than explain afterward.

๐Ÿ“Š The SysOps Metrics Framework

SysOps Metrics Dashboard

Traditional agile metrics like velocity and story points don’t capture the value that operations teams provide. The SysOps Framework requires different metrics that reflect operational realities and demonstrate business value. Our metrics framework organizes measurements into four key categories, each serving different stakeholders and decision-making needs.

A warning before you build a single dashboard: a metric is a streetlight, not the street. The moment a number becomes a target, people optimize the number - sometimes at the expense of the thing it was supposed to represent. Measure MTTR badly and you’ll teach your team to close incidents fast and fix them never. Reward “tickets closed” and watch one real problem get split into nine tickets. Every metric in this chapter comes with the same unwritten footnote: measure it because it helps you decide something, not because it looks good on a slide.

Who Needs Which Metric

Not every metric is for every person. Each role in the team cares about a different slice:

RolePrimary CategoriesWhat They Act OnWhen They Look
On-Call EngineerService Reliability, Operational EfficiencyActive alerts, error budget burn rate, incident statusReal-time / during shift
Team Lead / Ops ManagerOperational Efficiency, Team PerformanceChange success rate, MTTR trends, cross-training coverage, tool effectivenessDaily standup, weekly review
Platform / Infra ManagerService Reliability, Business ValueSLO compliance, capacity utilization, cost per service unit, FinOps metricsWeekly cycle, monthly report
Executive SponsorBusiness Value, Service Reliability (summary)Availability trends, cost efficiency, risk mitigation, strategic initiative progressMonthly review, quarterly business review

These aren’t hard boundaries - an on-call engineer might look at cost anomalies when debugging, and an executive sponsor might care about a specific incident’s MTTR. But the table tells you what default view each role needs on their dashboard. Build for that first; add secondary views later.

Rule of thumb. If you can’t name the person who will act on a metric within 24 hours of it turning red, that metric is noise. Remove it.

Leading and Lagging Metrics

Every dashboard should separate leading indicators from lagging indicators.

Metric typePurposeExamplesBad use
LeadingShows risk before failureError budget burn, unresolved high-risk changes, alert noise, backup test ageUsed to blame a person before context is known
LaggingShows what already happenedAvailability, MTTR, change failure rate, incident count, audit findingsTreated as the only measure of team performance

A good SysOps dashboard gives the team enough leading signal to act before the monthly report becomes a post-mortem.

๐Ÿ›ก๏ธ Service Reliability Metrics

Linked practices (Chapter 6): these metrics are the scoreboard for Service Level Management (Practice 1), Incident and Problem Management (Practice 2), and Backup & Recovery Operations (Practice 12). If a number here is unhealthy, the corresponding practice is where you go to fix it.

Primary Indicators

MetricDefinitionTarget RangeMeasurementBusiness Value
Uptime and AvailabilityPercentage of time services are operational and accessible99.9%+ for critical services, 99.5%+ for important servicesAutomated monitoring with synthetic transactionsDirect correlation to revenue and customer satisfaction
Mean Time to Recovery (MTTR)Average time from incident detection to service restoration<30 min for critical services, <2 hr for standard servicesIncident tracking from alert to resolution confirmationMinimizes business impact of service disruptions
Mean Time Between Failures (MTBF)Average operational time between service failures>720 hours for critical systemsTime tracking between incident occurrencesIndicates system stability and reliability investment effectiveness
SLO Compliance (Google SRE Book - Ch. 4)Percentage of time meeting defined service level targets95%+ compliance across all defined SLOsAutomated calculation based on SLI dataDemonstrates commitment to service quality standards
Error Budget Burn RateRate at which reliability budget is being consumed<50% of monthly budget consumedReal-time tracking of error budget consumptionBalances reliability with innovation and change velocity

Implementation Example

Service: Customer Payment Processing System

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
SLOs:
  availability:
    target: 99.95%
    measurement_window: monthly
    current: 99.97%
  latency:
    target: 95th percentile < 500ms
    measurement_window: daily
    current: 320ms
  error_rate:
    target: < 0.1%
    measurement_window: hourly
    current: 0.03%

Error Budget:
  monthly_allowance: 22_minutes
  consumed_this_month: 8_minutes
  remaining: 14_minutes
  burn_rate: healthy

Audience: On-call engineers watch burn rate and MTTR in real time. Team leads review SLO attainment weekly. Executives see only the monthly summary - unless a service is burning its error budget faster than planned, in which case everyone sees it.

โšก Operational Efficiency Metrics

Linked practices (Chapter 6): these track the health of Change and Configuration Management (Practice 3), Capacity and Performance Management (Practice 4), Release Management (Practice 8), and Service Request Management (Practice 10).

Automation and Process Metrics

MetricDefinitionTarget RangeMeasurementBusiness Value
Automation CoveragePercentage of routine tasks performed automatically70%+ of repetitive tasks automatedTask inventory with automation status trackingReduces manual effort and increases consistency
Incident Response TimeTime from alert generation to initial human response<15 min for critical alerts, <60 min for warningsTimestamp analysis from monitoring to acknowledgmentDemonstrates operational readiness and responsiveness
Change Success RatePercentage of changes implemented without causing incidents95%+ success rate for normal changesChange tracking with incident correlation analysisShows process maturity and risk management effectiveness
Capacity UtilizationOptimal resource usage without performance degradation60โ€“80% utilization for most resourcesResource monitoring with performance correlationMaximizes infrastructure investment while maintaining performance
Tool Effectiveness ScoreTeam satisfaction and productivity with operational tools8/10 average satisfaction scoreRegular surveys and productivity analysisEnsures tool investments support team effectiveness

๐ŸŽฎ Interactive Exercise: Efficiency Optimization

Scenario: Your team currently handles 200 tasks per month. Analysis shows:

  • 80 tasks are fully manual (40%)
  • 60 tasks are partially automated (30%)
  • 40 tasks are fully automated (20%)
  • 20 tasks are ad-hoc/undefined (10%)

Challenge Questions:

  1. What’s your current automation coverage percentage?
  2. Which task category should you prioritize for automation?
  3. What would be a realistic 6-month automation target?
  4. How would you measure the business value of automation improvements?

Framework Approach:

  1. Current Coverage: 20% fully automated + 15% (half of partial) = 35%
  2. Priority: Standardize ad-hoc tasks first, then automate high-frequency manual tasks
  3. Target: 60% automation coverage (realistic 25% improvement)
  4. Value Measurement: Time savings ร— hourly cost + error reduction + capacity for strategic work

Audience: Team leads own these metrics - they’re the operational health scorecard. Platform managers watch change success rate and capacity utilization as proxy measures for process maturity. On-call engineers contribute data but shouldn’t need to track the aggregate numbers.

๐Ÿ‘ฅ Team Performance Metrics

Linked practices (Chapter 6): these measure the payoff from Knowledge and Documentation Management (Practice 5) and Team and Skill Development (Practice 6) - the practices that decide whether your team is resilient or just a bus-factor of one.

Knowledge and Capability Indicators

MetricDefinitionTarget RangeMeasurementBusiness Value
Knowledge Transfer RateEffectiveness of knowledge sharing and documentation practices90%+ of critical knowledge documented and accessibleKnowledge audits and accessibility testingReduces single points of failure and improves team resilience
Cross-Training CompletionPercentage of team members trained on multiple critical systems80%+ of team cross-trained on critical systemsSkills matrix tracking and competency assessmentsImproves team flexibility and reduces knowledge silos
On-Call Rotation HealthSustainability and fairness of on-call responsibilities“Green” status with balanced load distributionRotation analysis, workload distribution, team feedbackMaintains team morale and prevents burnout
Problem Resolution TimeAverage time to resolve complex problems (not incidents)<2 hr for standard problems, <8 hr for complex issuesProblem tracking from identification to permanent resolutionDemonstrates team capability and process maturity
Documentation CoveragePercentage of systems and processes with current documentation85%+ coverage with quarterly update verificationDocumentation inventory with currency trackingEnables effective knowledge transfer and faster onboarding

Team Health Assessment

Monthly Team Health Indicators:

  • Workload balance and stress levels
  • Skill development progress and satisfaction
  • Collaboration effectiveness and communication
  • Innovation time and continuous improvement engagement
  • Career development and growth opportunities

Audience: Team leads review cross-training coverage and skill development monthly. Managers watch documentation coverage and problem resolution time as indicators of team maturity. Individual team members see only their own development progress - comparing cross-training stats across the team undermines the practice.

๐Ÿ’ฐ Business Value Metrics

Linked practices (Chapter 6): these connect operations to the balance sheet, drawing on Vendor and Contract Management (Practice 7), Asset Management (Practice 9), and Financial Management (Practice 11). The FinOps metrics below are the operational expression of Practice 11.

Strategic Impact Measurements

MetricDefinitionTarget RangeMeasurementBusiness Value
Customer Satisfaction ScoreInternal customer satisfaction with IT services and support4.5/5 average satisfaction ratingRegular surveys and feedback collectionDemonstrates service quality and stakeholder alignment
Business Service AvailabilityUptime of business-critical services during business hours99.5%+ availability during business hoursBusiness-hour focused availability trackingDirect impact on business operations and revenue
Cost Per Service UnitTotal cost of operations divided by service units deliveredDecreasing trend year-over-yearFinancial analysis with service volume correlationDemonstrates operational efficiency and cost optimization

FinOps (Financial Operations) Metrics (FinOps Foundation)

MetricDefinitionTarget RangeMeasurementBusiness Value
Cloud Cost AllocationAccurate attribution of cloud costs to services, teams, or departments100% allocation with <5% unallocated “shared” costsCloud billing analysis with tagging compliance trackingEnables cost accountability and chargeback models
Cloud Waste RatioPercentage of cloud spending on idle or underutilized resources<15% waste (industry average is 30%)Instance utilization analysis, reserved instance coverage, storage auditsDirect opportunity for cost reduction
Unit EconomicsCost per key business metric (e.g., per transaction, per user, per GB processed)Decreasing trend month-over-monthCloud costs divided by application metricsDemonstrates how cost relates to business outcomes
Reserved Instance and Commitment CoveragePercentage of workloads using reserved capacity vs. on-demand pricing60%+ for predictable workloads, 20%+ for variable workloadsCommitment utilization tracking and forecast comparisonDemonstrates cost optimization through commitment planning
Right-Sizing EfficiencyPercentage of instances operating within optimal sizing parameters85%+ of instances properly sized (not over- or under-provisioned)CPU/memory utilization analysis with instance type cost efficiencyIdentifies quick wins for cost reduction
Cost Anomaly DetectionAbility to identify unusual spending patterns quicklyDetect anomalies within 24โ€“48 hours of occurrenceAutomated cost trending and deviation analysisPrevents runaway costs and identifies infrastructure issues

Example: Cloud Cost Management Dashboard

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
Cloud Cost Metrics:
  Monthly_Spend: $50,000 (โ†‘ 2% from last month)
  Projected_Annual: $600,000
  Cost_per_Transaction: $0.0025 (โ†“ 0.0003 from last month)

  FinOps_Metrics:
    Waste_Ratio: 12% ($6,000 monthly opportunity)
    Reserved_Instance_Coverage: 65%
    Unallocated_Costs: 3.5%
    Right_Sizing_Efficiency: 87%

  Optimization_Opportunities:
    Idle_Instances: $2,100/month
    Oversized_Instances: $1,800/month
    Unused_Storage: $950/month
    Commitment_Gaps: $1,150/month

Audience: Platform managers and FinOps practitioners track cost allocation and waste ratio weekly. Executives see the unit economics trend and budget variance monthly - not the raw numbers. Showing an executive a dashboard full of FinOps line items is how you get eye contact with their coffee mug. Show them cost per transaction and whether it’s going down.


MetricDefinitionTarget RangeMeasurementBusiness Value
Innovation Time PercentageTime spent on improvements and innovation vs. maintenance20%+ of time dedicated to improvements and innovationTime tracking with activity categorizationShows focus on continuous improvement and strategic value
Risk Mitigation EffectivenessSuccess rate in identifying and preventing operational risks“High” effectiveness with proactive issue preventionRisk assessment tracking with outcome analysisDemonstrates proactive management and business protection

๐Ÿ“ˆ Dashboard Design and Implementation

Reality check. A dashboard nobody opens is just an expensive screensaver. Before adding a metric, ask who will act on it and what decision it changes - if the honest answer is “it’s nice to see,” it belongs in a report, not on the wall. The best operational dashboards are slightly boring and frequently glanced at; the worst are beautiful, comprehensive, and ignored.

Multi-Level Dashboard Strategy

Executive Dashboard (Strategic View)

Update Frequency: Monthly

Key Metrics:

  • Overall service availability trends
  • Business impact of IT services
  • Cost efficiency and optimization
  • Strategic initiative progress
  • Risk mitigation summary

Example Layout:

1
2
3
4
5
6
Executive Dashboard:
  Service Health: 99.7% (โ†‘ 0.2% from last month)
  Business Impact: $12K revenue protected through uptime
  Cost Efficiency: 8% reduction in cost per service unit
  Strategic Projects: 3/4 on track, 1 delayed
  Risk Status: 2 high risks mitigated, 1 medium under review

Management Dashboard (Tactical View)

Update Frequency: Weekly

Key Metrics:

  • Service level objective compliance
  • Incident trends and resolution effectiveness
  • Team performance and capacity
  • Process improvement progress
  • Resource utilization optimization

Operational Dashboard (Real-Time View)

Update Frequency: Real-time

Key Metrics:

  • Current service status and alerts
  • Active incidents and response progress
  • System performance and capacity
  • On-call status and escalation queues
  • Change implementation status

Dashboard Implementation Guidelines

Design Principles:

  • Clarity: Information should be immediately understandable
  • Relevance: Show metrics that matter to the specific audience
  • Actionability: Enable quick decision-making and response
  • Context: Provide historical trends and comparative data
  • Accessibility: Available on multiple devices and platforms

Technical Requirements:

  • Real-time data integration from multiple sources
  • Automated alerting for threshold violations
  • Historical data retention and trending analysis
  • Role-based access and customization options
  • Mobile-friendly responsive design

KPI Specification Template

Before you add a single metric to any dashboard, write its specification. This template forces you to answer the hard questions upfront - so you don’t discover six months later that nobody knows what “green” means or who was supposed to fix a red number.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
metric_name: "<human-readable name>"
category: "<one of: service_reliability, operational_efficiency, team_performance, business_value>"
definition: "<precise formula or measurement method>"
unit: "<ms, %, count, $, ratio>"

owner:
  role: "<on-call_engineer | team_lead | platform_manager | executive_sponsor>"
  review_cadence: "<daily | weekly | monthly | quarterly>"

thresholds:
  green: "<healthy range or condition>"
  amber: "<warning range - investigate soon>"
  red: "<breach - immediate action required>"
  action_on_red: "<what happens when red: page, create ticket, escalate>"

data_source: "<which tool or system provides this metric>"
measurement_window: "<rolling_hour | rolling_day | calendar_month | trailing_28d>"

gaming_risk: "<how someone could cheat this metric>"
mitigation: "<how to detect or prevent the gaming>"

Example - filled template:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
metric_name: "Error Budget Burn Rate"
category: "service_reliability"
definition: "(error budget consumed this month) / (total monthly error budget)"
unit: "%"

owner:
  role: "on-call_engineer"
  review_cadence: "daily"

thresholds:
  green: "< 50% consumed"
  amber: "50โ€“80% consumed"
  red: "> 80% consumed - freeze feature deployments until next month"
  action_on_red: "Slack alert to #release-coordination; change approval requires director sign-off"

data_source: "Prometheus SLO recording rules + Grafana dashboard"
measurement_window: "calendar_month"

gaming_risk: "Artificially inflate error budget by extending the SLO target (e.g., 99.9% โ†’ 99.0% makes more budget)"
mitigation: "SLO targets locked behind change management; quarterly SLO review requires team lead approval"

Apply this template to every metric on your dashboard. The gaming_risk field is the most important - if you can’t think of how someone might game it, you haven’t thought hard enough.

๐Ÿ”„ Continuous Improvement Through Metrics

Metrics-Driven Improvement Process

1. Baseline Establishment

  • Document current performance levels across all metric categories
  • Identify areas of strength and improvement opportunities
  • Set realistic but challenging improvement targets
  • Establish measurement methodologies and data collection processes

2. Regular Review Cycles

  • Daily: Operational metrics review and incident response
  • Weekly: Process effectiveness and team performance analysis
  • Monthly: Strategic metrics evaluation and trend analysis
  • Quarterly: Comprehensive metrics review and target adjustment

3. Improvement Planning

  • Use metrics data to prioritize improvement initiatives
  • Connect improvement efforts to business value demonstration
  • Track improvement implementation effectiveness
  • Adjust targets based on capability maturity and business needs

4. Stakeholder Communication

  • Translate technical metrics into business language
  • Provide regular updates on performance and improvement trends
  • Demonstrate value delivery through metric improvements
  • Build confidence through consistent performance reporting

๐ŸŽฏ Measuring Framework Implementation Success

Implementation Maturity Indicators

Month 1-2: Foundation Metrics

  • Baseline establishment completion: 100%
  • Team training and buy-in: >90% participation
  • Initial dashboard deployment: Basic operational view
  • Stakeholder communication: Regular update cadence established

Month 3-4: Process Integration Metrics

  • Operational cycle adherence: >80% consistency
  • Incident response improvement: 20% reduction in MTTR
  • Documentation coverage increase: +15% from baseline
  • Team satisfaction with new processes: >7/10

Month 5-6: Value Demonstration Metrics

  • Service reliability improvement: Measurable SLO improvements
  • Operational efficiency gains: >25% automation coverage increase
  • Team capability development: Cross-training targets met
  • Business stakeholder satisfaction: >4/5 rating improvement

Long-Term Success Indicators

Year 1 Targets:

  • Sustained service reliability improvements
  • Demonstrable cost efficiency gains
  • Team expertise and satisfaction growth
  • Framework adoption becoming organizational standard

Ongoing Evolution:

  • Continuous metric refinement and improvement
  • Integration with broader organizational metrics
  • Influence on other team methodology adoption
  • Innovation and best practice sharing

๐Ÿ› ๏ธ Tools and Technologies for Metrics

Monitoring and Data Collection

  • Infrastructure Monitoring: Prometheus, Grafana, Datadog, New Relic
  • Application Performance: APM tools with business transaction monitoring
  • Synthetic Monitoring: Uptime robots and user experience simulation
  • Log Aggregation: ELK Stack, Splunk, Fluentd for centralized logging

Dashboard and Visualization

  • Real-Time Dashboards: Grafana, Tableau, Power BI for live visualization
  • Executive Reporting: Automated report generation and distribution
  • Mobile Accessibility: Responsive dashboards and mobile applications
  • Custom Visualizations: Tailored charts and graphs for specific audiences

Analytics and Intelligence

  • Predictive Analytics: Machine learning for capacity and failure prediction
  • Trend Analysis: Statistical analysis for performance trending
  • Correlation Analysis: Identifying relationships between metrics and outcomes
  • Anomaly Detection: Automated identification of unusual patterns

๐Ÿงน Metric Governance and the Metric Graveyard

Metrics should expire unless they keep proving their value. Once per month, review the dashboard and ask:

  • Who uses this metric to make a decision?
  • What action happens when it moves?
  • Can the team game it?
  • Does it still reflect the service or risk we care about?
  • Should it be archived, replaced, or promoted?

Create a metric graveyard for retired metrics. Keep the reason for retirement visible. This prevents old numbers from returning later as management folklore.

๐Ÿ’ก Common Metrics Pitfalls and Solutions

The Big Four

PitfallHow It Shows UpWhy It HappensHow to Fix It
Vanity MetricsDashboard looks great, nobody acts on itMetric measures activity, not outcomeBefore adding a metric, write down exactly what decision it will change and who makes it
Metric Overload47 metrics on one screen, all “important”No clear owner per metric; fear of missing somethingMax 7 metrics per dashboard. If you need more, you need more audiences, not more numbers
Stale BaselinesComparing this month’s performance against a pre-migration baseline from 18 months agoBaselines set once and forgottenSchedule baseline reviews alongside quarterly business reviews; update after any major infrastructure change
Goodhart’s LawMTTR drops to 8 minutes but incidents recur because nobody fixes root causesMetric is optimized, the underlying outcome is notEvery metric needs a counter-metric (e.g., MTTR + recurrence rate). Balanced scorecards catch gaming

What Not to Measure

Some things look measurable but aren’t worth the cost of collection, or actively cause harm when measured.

Avoid measuring:

  • Individual incident response time - it teaches people to delay declaring an incident (the clock only starts when they acknowledge). Measure team-level MTTR instead.
  • Uptime percent to two decimal places for low-criticality systems - 99.73% vs 99.74% for an internal wiki is noise. Binary (green/red) is enough for Tier 3 and below.
  • Number of runbooks written - a terrible runbook that nobody uses counts as “written.” Measure runbook usage and accuracy instead.
  • Hours worked / overtime - this metric inevitably becomes a target, and the target is always “work more.” Measure sustainable on-call load, not hours.
  • Velocity / story points - these measure agile software delivery, not operations. They actively misrepresent ops work, where value is in prevention and stability, not feature output.

What to measure instead:

Instead ofMeasure
Uptime to 5 nines for everythingSLO attainment per criticality tier
Individual response timeTeam MTTR + recurrence rate
Runbooks writtenRunbook usage during incidents + accuracy score (post-incident review question: “did the runbook help?”)
Hours workedOn-call health score (interruptions slept through, pages per shift, time to decompress)

How Metrics Can Be Gamed

Every metric worth tracking can be manipulated. The trick is knowing how so you can build safeguards.

Common gaming patterns:

  1. MTTR gaming: Close the incident ticket without fixing the root cause. MTTR drops, but the same incident happens next week. Defense: Track recurrence rate alongside MTTR. Any incident that reoccurs within 30 days counts as a failure.

  2. SLO attainment gaming: Set SLO targets so low they’re never breached. 99.9% attainment on a 99.0% SLO is not an achievement. Defense: Lock SLO targets in change management. Require team lead approval to relax a target. Track SLO target hardening (are SLOs getting tighter over time?).

  3. Automation coverage gaming: Count every tiny script as “automation” to inflate the percentage. Defense: Define “automation” as “eliminates a manual step that previously required a human decision.” A cron job that existed before the metrics started doesn’t count as new automation.

  4. Cost per service unit gaming: Include only direct infrastructure costs and exclude the labor, support, and overhead that make up 60% of the real cost. Defense: Use total cost of ownership (TCO) as the denominator. If a cost can’t be attributed, publish it as “unattributed” rather than hiding it.

  5. Ticket closure gaming: Split a single problem into five tickets to show five “resolved” items. Defense: Require problem-to-ticket linkage. If five tickets share the same root cause, they count as one.

Litmus test. Ask yourself: “If this metric was the only thing my bonus depended on, what would I do differently?” If the honest answer is something that makes the system worse, you need to redesign the metric - or add a counter-metric that catches the bad behavior.

๐ŸŽฏ Chapter Summary

Effective measurement is crucial for demonstrating the value of the SysOps Framework and driving continuous improvement. The four-category metrics approach ensures comprehensive coverage of service reliability, operational efficiency, team performance, and business value.

Success depends on choosing the right metrics for each audience, implementing effective dashboards and reporting, and using metrics data to drive decision-making and improvement efforts. The key is balancing comprehensive measurement with actionable insights that support both operational excellence and strategic business objectives.

๐Ÿ”ฎ Looking Ahead

In the next chapter, we’ll explore the tools and technologies that support effective implementation of the SysOps Framework, including automation platforms, monitoring systems, and collaboration tools that enable the metrics and practices we’ve discussed.

๐Ÿ’ญ Reflection Questions

  1. Current Metrics: What metrics does your team currently track, and how well do they align with the SysOps categories?
  2. Value Demonstration: How could better metrics help you demonstrate your team’s value to stakeholders?
  3. Improvement Focus: Which metric category would provide the most immediate benefit for your team?

๐ŸŽฎ Gamification Element - Chapter 7 Badge Design a comprehensive metrics dashboard for your team including all four categories and earn the “Metrics Master” badge.


โ† Previous: Chapter 6 - Management Practices | Next: Chapter 8 - Tools & Technology โ†’