Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 27, 2022 08:53 pm GMT

Incident Management Metrics and Key Performance Indicators

In 2008, I got my first job at a software-as-a-service company. We built learning management software and ran it on servers in the small data center connected to our office.

We released new software onto these production servers monthly and measured quality by counting bugs per release. We also had account managers who kept us informed of how many large clients seemed upset about the last release.

Occasionally, when something went wrong, we would do a stability release and spend a month only fixing bugs. Testing was not a part of our build process but a part of our team: every feature team had quality assurance people who tested each feature before it was released.

This wasn't that long ago, but cloud software development has matured a lot since this time. Incident management has become standard practice, and many great metrics and Key Performance Indicators (KPIs) exist for measuring release quality. Let's review some of them.

Mean Time Between Failures (MTBF)

When software is being released only once a month, on a fixed timeline, with extensive manual testing, counting the number of bugs might work. But once you start releasing many times per week or per day, this won't work, and another way to measure software quality is required.

Mean time between failures is a metric from the field of reliability engineering. Calculating it is simple: it is time over the number of failures that occurred during that time. If in the last 30 days you have had two production incidents, then the mean time between failure is 15 days.

Calculating MTBF

Incidents in last 30 days
#1Jan 3rd
#2Jan 25

Mean Time Between Failures =

: 30 days / 2 Incidents = 15 days

Mean Time to Recovery (MTTR)

Something funny happens when you start releasing more frequently. You may end up with a higher count of issues in production, but resolving them will happen much faster. If each change is released separately using a continuous delivery model, then recovering gets easier -- often, all that is required is hitting a rollback button.

If you are measuring MTBF, your software may be getting much better, but your numbers will be getting worse. Enter mean time to recovery. Mean time to recovery is just what it sounds like: you start a timer when the incident begins and stop it when production is healthy again - even a simple rollback counts. Average this number across incidents, and you have MTTR. You now have a metric that captures the health of your incidence response process.

Calculating Mean Time to Recovery

Incident #1
Reported10:00 am.
Recovered12:00 pm.
Recovery Time2 Hours
Incident #2
Reported10:00 am.
Recovered2 days later at 10:00 am.
Recovery Time48 Hours

Mean Time To Recovery =

: 2 hour + 48 hours / 2 failures = 25 hours

Mean Time to Resolve (MTTRe)

Acronyms Collision Alert

Mean Time To Resolve, MTTRe, differs from Mean Time To Recover, MTTR, but some resources use MTTR for both. To avoid confusion, ensure you are using the correct terminology for your metric.

Rolling back to address an incident is a great idea: it's often the quickest way to get things back in a good place. But there are other types of incidents. Imagine your application deadlocks every once in a while, and you have to restart it to unlock. You may have an excellent mean time to recovery, but you've never actually addressed the root cause. This is what MTTRe measures, not the time to get the service back up and running but to resolve the root cause and ensure the problem never happens again.

The never-happens-again part is hard to achieve but vital. If you are responding quickly but never getting to the root cause, you will be living in a stressful world of constant fire fighting. However, if you are resolving the root cause of each incident, then quality will increase over time.

Calculating Mean Time to Resolve

Incident #3
Reportedday 1
Addressedday 1
Root Cause Analysisday 2
Root Cause Addressedday 31
Resolve Time30 days
Incident #4
Reportedday 1
Addressedday 1
Root Cause Analysisday 2
Root Cause Addressedday 11
Resolve Time10 days

Mean Time To Resolve =

: 30 days + 10 days / 2 incidents = 20 days

Mean Time to Acknowledge (MTTA)

An essential part of good incident management is an on-call rotation. You need someone around to respond to incidents when they occur. Our previous metrics would be unable to differentiate between an incident that took 3 hours to recover from and one that was recoverable in 5 minutes but took two hours and 55 minutes to be acknowledged.

MTTA highlights this difference. It is a metric for measuring the responsiveness of the on-call person to any alerts.

Calculating Mean Time to Acknowledge

Incident #5
Reported10 am
Acknowledged10: 05 am
Recovered12:00 pm
Acknowledge Time5 minutes
Incident #6
Reported10 am
Acknowledged11: 55 am
Recovered12:00 pm
Acknowledge Time115 minutes

Mean Time To Acknowledge =

: 5 minutes + 115 minutes / 2 incidents = 60 minutes

Summary

There are many ways to measure the quality of your software as a service product. MTBF, MTTR, MTTRe, and MTTA can each offer a different lens for viewing your software release life cycle. As you improve your Software Development Life Cycle, find ways to collect aggregate metrics like these and choose one or two to target for improvement.

Invest in improving these metrics, and you'll make up for it in time saved fighting fires. Also, focusing on aggregate metrics can be an effective way to move the discussion from blame about specific incidents to a higher-level debate around changing the process to better support the company's goals.

If your build pipeline is taking more than 15 minutes and therefore negatively affecting your metrics, then take a look at Earthly's free and open build tool.

Originally published on Earthly's blog


Original Link: https://dev.to/adamgordonbell/incident-management-metrics-and-key-performance-indicators-45nf

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To