Skip to content
goodguydaniel.com

SLIs, SLOs and SLAs in 2 minutes

Measuring the service level of your application

Ops1 min read

Service Level Indicator (SLI)

An SLI is a service level indicator — a carefully defined quantitative measure of some aspect of the level of service that is provided.

source: Google SRE book

Examples: error rate; request latency; throughput (e.g., requests p/second); availability (time the service is usable); durability (for data storages: the confidence of retaining data over time).

Where and how to measure them?
  • Processing server logs - derive them from server-side logs. You can do this on the fly or retroactively with some post-processing job that runs on your records and collects data to backfill your SLI information.
  • Application-level metrics - capture individual request metrics' performance at the application level (e.g., how long did the server took to perform a particular operation).
  • Front-end metrics - getting closer to the users. We can measure key user interaction points with some (out of the box) tooling made available by cloud providers. We can also perform some manual logging in specific checkpoints of the user journey with the help of platforms such as datadog.
  • Synthetic clients - this method consists of implementing bots that emulate user interaction to make sure it's possible to complete a user journey. Bots are just an approximation of the real user behavior. Users are creative and often do unexpected things. Synthetic clients generally require higher implementation effort. The previous two arguments make synthetic clients one of my least preferred methods.

Service Level Objective (SLO)

An SLO is a service level objective: a target value or range of or a service level that is measured by an SLI. A natural structure for SLOs is thus SLI ≤ target, or lower bound ≤ SLI ≤ upper bound.

source: Google SRE book

I'm new to this, but I would stick with a range of values as much as possible. The SLO maps to the SLI by adding boundaries. It sets a goal for an SLI over a period of time.

Service Level Agreement (SLA)

service level agreements: an explicit or implicit contract with your users that includes consequences of meeting (or missing) the SLOs they contain.

source: Google SRE book

It might be useful to think of the SLA as your answer: "What happens if one fails to comply with the agreed SLOs?"

If you liked this article, consider sharing (tweeting) it to your followers.