SlideShare a Scribd company logo
Observability for Emerging Infra
The Future of Observability in Complex Systems
@mipsytipsy
Operations Engineer
“the only good diff is a red diff”
@grepory, Monitorama 2016
“Monitoring is dead.”
“Monitoring systems have not changed significantly in 20 years and has fallen behind the way we
build software. Our software is now large distributed systems made up of many non-uniform
interacting components while the core functionality of monitoring systems has stagnated.”
@mipsytipsy
hates monitoring
… not a monitoring company
We don’t *know* what the questions are, all
we have are unreliable symptoms or reports.
Complexity is exploding everywhere,
but our tools are designed for
a predictable world.
As soon as we know the question, we usually
know the answer too.
@grepory, 2016
This is a outdated model for complex systems.
Many catastrophic states exist at any given time.
Your system is never entirely ‘up’
Observability
Observability is about the unknown-unknowns. A system is
observable when you can ask any arbitrary question about it and dive
deep, explore, follow bread crumbs. Observability is about being
able to trace the inner workings, just by observing the outside.
Monitoring
Observability
Observability is a superset of …
How you operate a service.
Actionable checks, outputs
within parameters, alerts, dashboards.
Monitoring
How you develop a service
to be monitorable & observable.
Timers, gauges, counters, events etc.
Instrumentation
Observability is about making systems …
How you track down
operational failures and
programmatic bugs
Debuggable
How you answer questions
about your systems and
understand trends … unrelated to
outages or operational issues.
Understandable
Complexity:
Can be inherent or incidental.
Arises out of (software * architecture * human process)
Annoyingly subjective
Complexity is increasing
# of contributors, LoC, rate of change
Halstead volume. cyclomatic complexity.
size, distribution, users. # of types of components.
storage formats. reliability requirements. features.
algorithmic complexity. novelty vs maturity of components.
Architectural complexity
Parse, 2015LAMP stack, 2005
monitoring => observability
known unknowns => unknown unknowns
The app tier capacity is exceeded. Maybe we
rolled out a build with a perf regression, or
maybe some app instances are down.
DB queries are slower than normal. Maybe
we deployed a bad new query, or there is lock
contention.
Errors or latency are high. We will look at
several dashboards that reflect common root
causes, and one of them will show us why.
“Photos are loading slowly for some people. Why?”
Monitoring
(LAMP stack)
monitor these things
Characteristics
Monitoring
• Known-unknowns predominate
• Intuition-friendly
• Dashboards are valuable.
• Monolithic app, single data source.
• The health of the system more or less accurately
represents the experience of the individual users.
(LAMP stack)
Best Practices
Monitoring
• Lots of actionable active checks and alerts
• Proactively notify engineers of failures and warnings
• Maintain a runbook for stable production systems
“Photos are loading slowly for some people. Why?”
(microservices)
Any microservices running on c2.4xlarge
instances and PIOPS storage in us-east-1b has a
1/20 chance of running on degraded hardware,
and will take 20x longer to complete for requests
that hit the disk with a blocking call. This
disproportionately impacts people looking at
older archives due to our fanout model.
Canadian users who are using the French
language pack on the iPad running iOS 9, are
hitting a firmware condition which makes it fail
saving to local cache … which is why it FEELS
like photos are loading slowly
Our newest SDK makes db queries
sequentially if the developer has enabled an
optional feature flag. Working as intended;
the reporters all had debug mode enabled.
But flag should be renamed for clarity sake.
wtf do i ‘monitor’ for?!
Monitoring?!?
Problems Symptoms
"I have twenty microservices and a sharded
db and three other data stores across three
regions, and everything seems to be getting a
little bit slower over the past two weeks but
nothing has changed that we know of, and
oddly, latency is usually back to the historical
norm on Tuesdays.
“All twenty app micro services have 10% of
available nodes enter a simultaneous crash
loop cycle, about five times a day, at
unpredictable intervals. They have nothing in
common afaik and it doesn’t seem to impact
the stateful services. It clears up before we
can debug it, every time.”
“Our users can compose their own queries that
we execute server-side, and we don’t surface it
to them when they are accidentally doing full
table scans or even multiple full table scans, so
they blame us.”
Observability
(microservices)
Still More Symptoms
“Several users in Romania and Eastern
Europe are complaining that all push
notifications have been down for them … for
days.”
“Disney is complaining that once in a while,
but not always, they don’t see the photo they
expected to see — they see someone else’s
photo! When they refresh, it’s fixed. Actually,
we’ve had a few other people report this too,
we just didn’t believe them.”
“Sometimes a bot takes off, or an app is
featured on the iTunes store, and it takes us a
long long time to track down which app or user
is generating disproportionate pressure on
shared components of our system (esp
databases). It’s different every time.”
Observability
“We run a platform, and it’s hard to
programmatically distinguish between
problems that users are inflicting themselves
and problems in our own code, since they all
manifest as the same errors or timeouts."
(microservices)
These are all unknown-unknowns
that may have never happened before, or ever happen again
They are also the overwhelming majority of what you have to
care about for the rest of your life.
Characteristics
• Unknown-unknowns are most of the problems
• “Many” components and storage systems
• You cannot model the entire system in your head.
Dashboards may be actively misleading.
• The hardest problem is often identifying which
component(s) to debug or trace.
• The health of the system is irrelevant. The health of
each individual request is of supreme consequence.
(microservices/complex systems)
Observability
Best Practices
• Rich instrumentation.
• Events, not metrics.
• Sampling, not write-time aggregation.
• Few (if any) dashboards.
• Test in production.. a lot.
• Very few paging alerts.
Observability
(microservices/complex systems)
Why:
Instrumentation?
Events, not metrics?
No dashboards?
Sampling, not time series aggregation?
Test in production?
Fewer alerts?
Instrumentation?
Start at the edge and work down
Internal state from software you didn’t write, too
Wrap every network call, every data call
Structured data only
`gem install` magic will only get you so far
Events, not metrics?
(trick question.. you’ll need both
but you’ll rely on events more and more)
Cardinality
Context
Structured data
Metrics are cheap, but terribly limited in context or cardinality.
Metrics
(+tags)
Metrics are cheap, but terribly limited in context or cardinality.
Metrics
(+tags)
UUIDs
db raw queries
normalized queries
comments
firstname, lastname
PID/PPID
app ID
device ID
HTTP header type
build ID
IP:port
shopping cart ID
userid
... etc
Some of these …
might be …
useful …
YA THINK??!
High cardinality will save your ass.
Metrics
(cardinality)
You must be able to break down by 1/millions and
THEN by anything/everything else
High cardinality is not a nice-to-have
‘Platform problems’ are now everybody’s problems
Looking for a needle in
your haystack? Be
descriptive, add unique
identifiers.
Structured Data
Read-time aggregation
lets you compute
percentiles,
derived columns.
Events tell stories.
Arbitrarily wide events mean you can amass more and more context
over time. Use sampling to control costs and bandwidth.
Structure your data at the source to reap
massive efficiencies over strings.
Events
(“Logs” are just a transport mechanism for events)
Dashboards??
Dashboards
Jumps to an answer, instead of starting with a question
You don’t know what you don’t know.
Dashboards
Artifacts of past failures.
Raw
Fast
Iterative
Interactive
Exploratory
Dashboards
must die
Unknown-unknowns
demand explorability
and an open mind.
sampling, not aggregation
Raw requests:
Aggregation is a one-way trip
Destroying raw events eliminates your ability to ask new questions.
Forever.
Aggregates are the devil
Aggregates destroy your precious details.
You need MORE detail and MORE context.
Aggregates
Raw Requests
You can’t hunt needles if your tools don’t handle extreme outliers, aggregation
by arbitrary values in a high-cardinality dimension, super-wide rich context…
Black swans are the norm
you must care about max/min, 99%, 99.9th, 99.99th, 99.999th …
Raw data examples
“Sum up all the time spent holding the user.*
table lock by INSERT queries, broken down by
user id and the size of the object written, and
show me any users using more than 30% of
the overall row lock.”
“Latency seems elevated for HTTP requests.
Requests can loop recursively back into the
API multiple times; are requests getting
progressively slower as the iteration stack
gets deeper? What is the MAX recursive call
depth, and max latency over the past day? Is
it still growing? What do the 100 slowest have
in common?”
“Show me all the 50x errors broken down by
user id or app id. Show me all the abandoned
carts with the most items in them. Show me
the users rate limited in the past hour, broken
down by browser type or mobile device type
and release version string.”
Zero users care what the “system” health is
All users care about THEIR experience.
Nines don’t matter if users aren’t happy.
Nines don’t matter if users aren’t happy.
Nines don’t matter if users aren’t happy.
Nines don’t matter if users aren’t happy.
Nines don’t matter if users aren’t happy.Raw Requests
Test in production
SWEs own their own services
Services need owners, not operators.
Engineers
must be designed for generalist SWEs.
Observability:
SaaS, APIs, SDKs.
Ops lives on the other side of an API
Operations skills are not optional for software engineers
in 2016. They are not “nice-to-have”,
they are table stakes.
Engineers
Monitoring Instrumentation is part of building software
Engineers
Watch it run in production.
Accept no substitute.
Get used to observing your systems when they AREN’T on fire.
Engineers
Engineers
You win …
Drastically fewer paging alerts!
Monitoring
Dashboards
Metrics
Aggregates
Operators
• Write checks, define thresholds
• Craft dashboard views
• Tag metrics
• Tend to health of the system
• Quickly identify which component is
the problem
• Unknown-unknowns are rare, known-
unknowns the norm
• Failures well understood
Observability
Exploratory
Structured Events
Raw Requests
Engineers
• A vanishingly long tail of black swan
or nearly-impossible events
• Platforms; user-defined server-side
functions or queries; flexibility, outliers
• System may be perfectly functional
yet useless for many users
• Requests may loop back in multiple
times.
• Microservices, polyglot persistence,
IoT, mobile, high variance experience
Old New
Monitoring Observability
Dashboards
Metrics
Exploratory
Structured Events
Aggregates Raw Requests
EngineersOperators
Thank you!
Observability for Emerging Infra (what got you here won't get you there)

More Related Content

PDF
More Aim, Less Blame: How to use postmortems to turn failures into something ...
Daniel Kanchev
 
PDF
Performance - a challenging craft
Fabian Lange
 
PDF
Mere Paas Teensy Hai (Nikhil Mittal)
ClubHack
 
PDF
Creating An Incremental Architecture For Your System
Giovanni Asproni
 
PPT
Troubleshooting: A High-Value Asset For The Service-Provider Discipline
Sagi Brody
 
PDF
The Present and Future of Serverless Observability
C4Media
 
PDF
Chaos Engineering Without Observability ... Is Just Chaos
Charity Majors
 
PDF
RedisConf17 - Observability and the Glorious Future
Redis Labs
 
More Aim, Less Blame: How to use postmortems to turn failures into something ...
Daniel Kanchev
 
Performance - a challenging craft
Fabian Lange
 
Mere Paas Teensy Hai (Nikhil Mittal)
ClubHack
 
Creating An Incremental Architecture For Your System
Giovanni Asproni
 
Troubleshooting: A High-Value Asset For The Service-Provider Discipline
Sagi Brody
 
The Present and Future of Serverless Observability
C4Media
 
Chaos Engineering Without Observability ... Is Just Chaos
Charity Majors
 
RedisConf17 - Observability and the Glorious Future
Redis Labs
 

Similar to Observability for Emerging Infra (what got you here won't get you there) (20)

PDF
SRE Topics with Charity Majors and Liz Fong-Jones of Honeycomb
Daniel Zivkovic
 
PPTX
Observability for Application Developers (1)-1.pptx
OpsTree solutions
 
PDF
See through software
Matthew Mark Miller
 
PPTX
Monitoring & alerting presentation sabin&mustafa
Lama K Banna
 
PPTX
Observability - the good, the bad, and the ugly
Aleksandr Tavgen
 
PPTX
Observability – the good, the bad, and the ugly
Timetrix
 
PDF
OSMC 2019 | How to improve database Observability by Charles Judith
NETWAYS
 
PPTX
Agile Gurugram 2023 | Observability for Modern Applications. How does it help...
AgileNetwork
 
PDF
#OSSPARIS19 - How to improve database observability - CHARLES JUDITH, Criteo
Paris Open Source Summit
 
PPTX
Evolution of Monitoring and Prometheus (Dublin 2018)
Brian Brazil
 
PPTX
An Introduction to Prometheus (GrafanaCon 2016)
Brian Brazil
 
PDF
Observe 2020-d mc
Dave McAllister
 
PDF
Monitoring Complex Systems - Chicago Erlang, 2014
Brian Troutwine
 
PDF
Building data intensive applications
Amit Kejriwal
 
PPTX
Prometheus - Open Source Forum Japan
Brian Brazil
 
PDF
Building Reliability - The Realities of Observability
All Things Open
 
PDF
Seeing RED: Monitoring and Observability in the Age of Microservices
Dave McAllister
 
PDF
Building Reliability - The Realities of Observability
All Things Open
 
PPTX
Migrating Monitoring to Observability – How to Transform DevOps from being Re...
Liz Masters Lovelace
 
PDF
The present and future of serverless observability (QCon London)
Yan Cui
 
SRE Topics with Charity Majors and Liz Fong-Jones of Honeycomb
Daniel Zivkovic
 
Observability for Application Developers (1)-1.pptx
OpsTree solutions
 
See through software
Matthew Mark Miller
 
Monitoring & alerting presentation sabin&mustafa
Lama K Banna
 
Observability - the good, the bad, and the ugly
Aleksandr Tavgen
 
Observability – the good, the bad, and the ugly
Timetrix
 
OSMC 2019 | How to improve database Observability by Charles Judith
NETWAYS
 
Agile Gurugram 2023 | Observability for Modern Applications. How does it help...
AgileNetwork
 
#OSSPARIS19 - How to improve database observability - CHARLES JUDITH, Criteo
Paris Open Source Summit
 
Evolution of Monitoring and Prometheus (Dublin 2018)
Brian Brazil
 
An Introduction to Prometheus (GrafanaCon 2016)
Brian Brazil
 
Observe 2020-d mc
Dave McAllister
 
Monitoring Complex Systems - Chicago Erlang, 2014
Brian Troutwine
 
Building data intensive applications
Amit Kejriwal
 
Prometheus - Open Source Forum Japan
Brian Brazil
 
Building Reliability - The Realities of Observability
All Things Open
 
Seeing RED: Monitoring and Observability in the Age of Microservices
Dave McAllister
 
Building Reliability - The Realities of Observability
All Things Open
 
Migrating Monitoring to Observability – How to Transform DevOps from being Re...
Liz Masters Lovelace
 
The present and future of serverless observability (QCon London)
Yan Cui
 
Ad

Recently uploaded (20)

PDF
An Experience-Based Look at AI Lead Generation Pricing, Features & B2B Results
Thomas albart
 
PDF
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
PPTX
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
PPTX
Explanation about Structures in C language.pptx
Veeral Rathod
 
PDF
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
PDF
lesson-2-rules-of-netiquette.pdf.bshhsjdj
jasmenrojas249
 
PDF
MiniTool Power Data Recovery Crack New Pre Activated Version Latest 2025
imang66g
 
PDF
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
PDF
New Download FL Studio Crack Full Version [Latest 2025]
imang66g
 
PDF
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
PPTX
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
PPTX
Maximizing Revenue with Marketo Measure: A Deep Dive into Multi-Touch Attribu...
bbedford2
 
PDF
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
PDF
Generating Union types w/ Static Analysis
K. Matthew Dupree
 
PPTX
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
PPTX
oapresentation.pptx
mehatdhavalrajubhai
 
PPTX
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
PPTX
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
PDF
Enhancing Healthcare RPM Platforms with Contextual AI Integration
Cadabra Studio
 
PDF
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
An Experience-Based Look at AI Lead Generation Pricing, Features & B2B Results
Thomas albart
 
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
Explanation about Structures in C language.pptx
Veeral Rathod
 
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
lesson-2-rules-of-netiquette.pdf.bshhsjdj
jasmenrojas249
 
MiniTool Power Data Recovery Crack New Pre Activated Version Latest 2025
imang66g
 
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
New Download FL Studio Crack Full Version [Latest 2025]
imang66g
 
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
Maximizing Revenue with Marketo Measure: A Deep Dive into Multi-Touch Attribu...
bbedford2
 
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
Generating Union types w/ Static Analysis
K. Matthew Dupree
 
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
oapresentation.pptx
mehatdhavalrajubhai
 
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
Enhancing Healthcare RPM Platforms with Contextual AI Integration
Cadabra Studio
 
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
Ad

Observability for Emerging Infra (what got you here won't get you there)

  • 1. Observability for Emerging Infra The Future of Observability in Complex Systems
  • 2. @mipsytipsy Operations Engineer “the only good diff is a red diff”
  • 3. @grepory, Monitorama 2016 “Monitoring is dead.” “Monitoring systems have not changed significantly in 20 years and has fallen behind the way we build software. Our software is now large distributed systems made up of many non-uniform interacting components while the core functionality of monitoring systems has stagnated.”
  • 5. We don’t *know* what the questions are, all we have are unreliable symptoms or reports. Complexity is exploding everywhere, but our tools are designed for a predictable world. As soon as we know the question, we usually know the answer too.
  • 6. @grepory, 2016 This is a outdated model for complex systems.
  • 7. Many catastrophic states exist at any given time. Your system is never entirely ‘up’
  • 8. Observability Observability is about the unknown-unknowns. A system is observable when you can ask any arbitrary question about it and dive deep, explore, follow bread crumbs. Observability is about being able to trace the inner workings, just by observing the outside.
  • 10. Observability is a superset of … How you operate a service. Actionable checks, outputs within parameters, alerts, dashboards. Monitoring How you develop a service to be monitorable & observable. Timers, gauges, counters, events etc. Instrumentation
  • 11. Observability is about making systems … How you track down operational failures and programmatic bugs Debuggable How you answer questions about your systems and understand trends … unrelated to outages or operational issues. Understandable
  • 12. Complexity: Can be inherent or incidental. Arises out of (software * architecture * human process) Annoyingly subjective
  • 14. # of contributors, LoC, rate of change Halstead volume. cyclomatic complexity. size, distribution, users. # of types of components. storage formats. reliability requirements. features. algorithmic complexity. novelty vs maturity of components.
  • 16. monitoring => observability known unknowns => unknown unknowns
  • 17. The app tier capacity is exceeded. Maybe we rolled out a build with a perf regression, or maybe some app instances are down. DB queries are slower than normal. Maybe we deployed a bad new query, or there is lock contention. Errors or latency are high. We will look at several dashboards that reflect common root causes, and one of them will show us why. “Photos are loading slowly for some people. Why?” Monitoring (LAMP stack) monitor these things
  • 18. Characteristics Monitoring • Known-unknowns predominate • Intuition-friendly • Dashboards are valuable. • Monolithic app, single data source. • The health of the system more or less accurately represents the experience of the individual users. (LAMP stack)
  • 19. Best Practices Monitoring • Lots of actionable active checks and alerts • Proactively notify engineers of failures and warnings • Maintain a runbook for stable production systems
  • 20. “Photos are loading slowly for some people. Why?” (microservices) Any microservices running on c2.4xlarge instances and PIOPS storage in us-east-1b has a 1/20 chance of running on degraded hardware, and will take 20x longer to complete for requests that hit the disk with a blocking call. This disproportionately impacts people looking at older archives due to our fanout model. Canadian users who are using the French language pack on the iPad running iOS 9, are hitting a firmware condition which makes it fail saving to local cache … which is why it FEELS like photos are loading slowly Our newest SDK makes db queries sequentially if the developer has enabled an optional feature flag. Working as intended; the reporters all had debug mode enabled. But flag should be renamed for clarity sake. wtf do i ‘monitor’ for?! Monitoring?!?
  • 21. Problems Symptoms "I have twenty microservices and a sharded db and three other data stores across three regions, and everything seems to be getting a little bit slower over the past two weeks but nothing has changed that we know of, and oddly, latency is usually back to the historical norm on Tuesdays. “All twenty app micro services have 10% of available nodes enter a simultaneous crash loop cycle, about five times a day, at unpredictable intervals. They have nothing in common afaik and it doesn’t seem to impact the stateful services. It clears up before we can debug it, every time.” “Our users can compose their own queries that we execute server-side, and we don’t surface it to them when they are accidentally doing full table scans or even multiple full table scans, so they blame us.” Observability (microservices)
  • 22. Still More Symptoms “Several users in Romania and Eastern Europe are complaining that all push notifications have been down for them … for days.” “Disney is complaining that once in a while, but not always, they don’t see the photo they expected to see — they see someone else’s photo! When they refresh, it’s fixed. Actually, we’ve had a few other people report this too, we just didn’t believe them.” “Sometimes a bot takes off, or an app is featured on the iTunes store, and it takes us a long long time to track down which app or user is generating disproportionate pressure on shared components of our system (esp databases). It’s different every time.” Observability “We run a platform, and it’s hard to programmatically distinguish between problems that users are inflicting themselves and problems in our own code, since they all manifest as the same errors or timeouts." (microservices)
  • 23. These are all unknown-unknowns that may have never happened before, or ever happen again They are also the overwhelming majority of what you have to care about for the rest of your life.
  • 24. Characteristics • Unknown-unknowns are most of the problems • “Many” components and storage systems • You cannot model the entire system in your head. Dashboards may be actively misleading. • The hardest problem is often identifying which component(s) to debug or trace. • The health of the system is irrelevant. The health of each individual request is of supreme consequence. (microservices/complex systems) Observability
  • 25. Best Practices • Rich instrumentation. • Events, not metrics. • Sampling, not write-time aggregation. • Few (if any) dashboards. • Test in production.. a lot. • Very few paging alerts. Observability (microservices/complex systems)
  • 26. Why: Instrumentation? Events, not metrics? No dashboards? Sampling, not time series aggregation? Test in production? Fewer alerts?
  • 27. Instrumentation? Start at the edge and work down Internal state from software you didn’t write, too Wrap every network call, every data call Structured data only `gem install` magic will only get you so far
  • 28. Events, not metrics? (trick question.. you’ll need both but you’ll rely on events more and more) Cardinality Context Structured data
  • 29. Metrics are cheap, but terribly limited in context or cardinality. Metrics (+tags)
  • 30. Metrics are cheap, but terribly limited in context or cardinality. Metrics (+tags)
  • 31. UUIDs db raw queries normalized queries comments firstname, lastname PID/PPID app ID device ID HTTP header type build ID IP:port shopping cart ID userid ... etc Some of these … might be … useful … YA THINK??! High cardinality will save your ass. Metrics (cardinality)
  • 32. You must be able to break down by 1/millions and THEN by anything/everything else High cardinality is not a nice-to-have ‘Platform problems’ are now everybody’s problems
  • 33. Looking for a needle in your haystack? Be descriptive, add unique identifiers. Structured Data Read-time aggregation lets you compute percentiles, derived columns.
  • 34. Events tell stories. Arbitrarily wide events mean you can amass more and more context over time. Use sampling to control costs and bandwidth. Structure your data at the source to reap massive efficiencies over strings. Events (“Logs” are just a transport mechanism for events)
  • 37. Jumps to an answer, instead of starting with a question You don’t know what you don’t know. Dashboards Artifacts of past failures.
  • 41. Aggregation is a one-way trip Destroying raw events eliminates your ability to ask new questions. Forever. Aggregates are the devil
  • 42. Aggregates destroy your precious details. You need MORE detail and MORE context. Aggregates
  • 43. Raw Requests You can’t hunt needles if your tools don’t handle extreme outliers, aggregation by arbitrary values in a high-cardinality dimension, super-wide rich context… Black swans are the norm you must care about max/min, 99%, 99.9th, 99.99th, 99.999th …
  • 44. Raw data examples “Sum up all the time spent holding the user.* table lock by INSERT queries, broken down by user id and the size of the object written, and show me any users using more than 30% of the overall row lock.” “Latency seems elevated for HTTP requests. Requests can loop recursively back into the API multiple times; are requests getting progressively slower as the iteration stack gets deeper? What is the MAX recursive call depth, and max latency over the past day? Is it still growing? What do the 100 slowest have in common?” “Show me all the 50x errors broken down by user id or app id. Show me all the abandoned carts with the most items in them. Show me the users rate limited in the past hour, broken down by browser type or mobile device type and release version string.”
  • 45. Zero users care what the “system” health is All users care about THEIR experience. Nines don’t matter if users aren’t happy. Nines don’t matter if users aren’t happy. Nines don’t matter if users aren’t happy. Nines don’t matter if users aren’t happy. Nines don’t matter if users aren’t happy.Raw Requests
  • 46. Test in production SWEs own their own services
  • 47. Services need owners, not operators. Engineers must be designed for generalist SWEs. Observability: SaaS, APIs, SDKs. Ops lives on the other side of an API
  • 48. Operations skills are not optional for software engineers in 2016. They are not “nice-to-have”, they are table stakes. Engineers
  • 49. Monitoring Instrumentation is part of building software Engineers
  • 50. Watch it run in production. Accept no substitute. Get used to observing your systems when they AREN’T on fire. Engineers
  • 52. You win … Drastically fewer paging alerts!
  • 53. Monitoring Dashboards Metrics Aggregates Operators • Write checks, define thresholds • Craft dashboard views • Tag metrics • Tend to health of the system • Quickly identify which component is the problem • Unknown-unknowns are rare, known- unknowns the norm • Failures well understood
  • 54. Observability Exploratory Structured Events Raw Requests Engineers • A vanishingly long tail of black swan or nearly-impossible events • Platforms; user-defined server-side functions or queries; flexibility, outliers • System may be perfectly functional yet useless for many users • Requests may loop back in multiple times. • Microservices, polyglot persistence, IoT, mobile, high variance experience
  • 55. Old New Monitoring Observability Dashboards Metrics Exploratory Structured Events Aggregates Raw Requests EngineersOperators