How Netdata's ML-based Anomaly Detection Works

Advanced Algorithms for Proactive System Health Management

title image

How does Netdata’s machine learning (ML) based anomaly detection actually work? Read on to find out!

Design considerations

Lets first start with some of the key design considerations and principles of Netdata’s anomaly detection (and some comments in parenthesis along the way):

  1. We don’t have any labels or examples of previous anomalies. This means we are in an unsupervised setting (best we can try to do is learn what “normal” data looks like assuming the collected data is “mostly” normal).
  2. Needs to be lightweight and run on the agent (or a parent).
    • Need to be very careful of impact on CPU overhead when training and scoring (lots of cheap models are better than a few expensive and heavy ones).
    • Models themselves need to be small so as to not drastically increase the agents memory footprint (model objects need to be small for storage).
    • This has implications for the ML formulation (sorry - no deep learning models yet) and its implementation (we need to be surgical and optimized).
  3. Needs to scale for thousands of metrics and score in realtime every second as metrics are collected.
    • Typical Netdata nodes have thousands of metrics and we want to be able to score every metric every second with minimal latency overhead (we need to use sensible approaches to training like spreading the training cost over a wide training window).
  4. Needs to be able to handle a wide variety of metrics.
    • There is no single perfect model or approach for all types of metrics so we need a good all rounder that can work well enough across any and all different types of time seres metrics (for any given metric of course you could handcraft a better model but thats not feasible here, we need something like a “weak learners” approach of lots of generally useful models adding up to “more than the sum of their parts”).
  5. Needs to be written in C or C++ as that is the language of the Netdata agent (We are using dlib for the current implementation).
  6. We Need to be very careful about taking big or complex dependencies if using third party libraries.
    • We want to be able to easily build and deploy Netdata on any Linux system without having to worry about installing or managing complex dependencies (we need to be careful of more complex algorithms that would have larger dependencies and potentially limit where Netdata can run).

The above considerations are important and useful to keep in mind as we explore the system in more detail.

Two Important Concepts

Key to understanding how anomaly detection works in Netdata are two important concepts:

  1. Anomaly Bit: The anomaly bit is the 0 (normal) or 1 (anomalous) generated each time a metric is collected.
  2. Anomaly Rate: The anomaly rate is the percentage of anomaly bits that are 1 (anomalous) over a given time window and/or set of metrics.

Anomaly Bit

The core concept underlying how anomaly detection works in Netdata is the “Anomaly Bit”. The anomaly bit is the basic lego block on which everything else is built.

The simplest way to think about the anomaly bit is that in addition to Netdata collecting a raw metric each second (e.g. cpu usage) if also generates a corresponding anomaly bit. The anomaly bit is a single bit (literally it is a bit in the internal storage representation of the agent) that is either 0 (normal) or 1 (anomalous) based on the pattern of very recent last few collected values for the metric (more on this later).

To be as clear as possible - here you can see some recent raw user system cpu metrics from one of our demo nodes. It should look something like this:

{
        "labels":["time","user"],
        "data":[
            [1684852570,0.7518797],
            [1684852569,0.5076142],
            [1684852568,1.2531328],
            [1684852567,0.75],
            [1684852566,0.2518892],
            [1684852565,0.5050505],
            [1684852564,0.5076142],
            [1684852563,0.7575758],
            [1684852562,0.5089059],
            [1684852561,0.5089059]
        ]
    }

Here (by adding the options=anomaly-bit param) are the corresponding anomaly bits (probably mostly all 0 in this example):

{
        "labels":["time","user"],
        "data":[
            [1684852570,0],
            [1684852569,0],
            [1684852568,0],
            [1684852567,0],
            [1684852566,0],
            [1684852565,0],
            [1684852564,0],
            [1684852563,0],
            [1684852562,0],
            [1684852561,0]
        ]
    }

Anomaly Rate

The beauty of the anomaly bit is that as soon as we aggregate beyond 1 second in time (or for that matter if you aggregate across multiple metrics or nodes but for the same point in time, you can ignore this for now) the anomaly bit turns into an “Anomaly Rate”.

It is literally the percentage of time in a window that the Netdata agent considered the raw metric values to be anomalous.

So in the same way that Netdata, in addition to collecting each raw metric also has a corresponding “Anomaly Bit”, for each time series in Netdata there is also a corresponding “Anomaly Rate” time series for that metric.

Again an example might help - here is the same user system cpu metric from earlier for the last 60 seconds but aggregated to 10 second intervals.

{
        "labels":["time","user"],
        "data":[
            [1684852770,0.5797338],
            [1684852760,0.7823281],
            [1684852750,0.6829874],
            [1684852740,0.7056189],
            [1684852730,0.9331536],
            [1684852720,0.681133]
        ]
    }

And here is the corresponding anomaly rate for this metric.

{
        "labels":["time","user"],
        "data":[
            [1684852770,0],
            [1684852760,0],
            [1684852750,0],
            [1684852740,0],
            [1684852730,0],
            [1684852720,0]
        ]
    }

So the last building block then is the concept of the “Anomaly Rate” which really is just some (typically average) aggregation over a set of anomaly bits.

Congratulations! We now have all the building blocks needed to understand how anomaly detection works in Netdata.

So how does the ML actually work then?

Now that we understand the anomaly bit and anomaly rate concepts, all that is left is to understand how the anomaly bit itself gets flipped from its default of 0 (normal) to 1 (anomalous). This is where the ML comes in.

As of writing (and we expect this will change over time as we work on the ML), Netdata uses an unsupervised anomaly detection approach based on K-means clustering under the hood (k=2 for the hard core ML folks reading this).

The basic idea is that we train (and regularly retrain) K-means model(s) for each metric. As raw metrics are collected they are scored against a set of trained models (spanning for example the last 24 hours - discussed in this blog post), if a metric is anomalous on all trained models then the anomaly bit is flipped to 1 (anomalous). This is based on an internal score that essentially is the euclidean distance of the most recent data to the cluster centers of the trained models.

If you would like to dive deeper checkout this deepdive notebook, this slide deck or this YouTube Video.

Click see some slides illustrating how we go from raw metrics to anomaly rate.

processing raw data

feature vectors

anomaly score

anomaly bit

anomaly rate

Netdata Anomaly Detection - Slides

Putting it all together

So now we have all the pieces to understand how anomaly detection works in Netdata. Let’s see where the various parts of the Netdata UI fit in.

Anomaly Rate Ribbon

The anomaly rate ribbon sits at the top of every netdata chart. Brighter spots in the ribbon correspond to windows of time where one or more metrics on the chart were anomalous.

anomaly rate ribbon

You can zoom and and hover on the ribbon to see what the AR% was for that window of time for each metric.

anomaly rate ribbon hover

Node Anomaly Rate Chart

The node anomaly rate chart (anomaly_detection.anomaly_rate) gives an overall anomaly rate across all metrics and nodes as a single high level time series.

node ar chart

You can of course group by node to see the anomaly rate for each node.

node ar chart group by node

Anomaly Advisor

The Anomaly Advisor (anomalies tab) builds on the node anomaly rate and lets you drill down into the metrics that are contributing to the overall anomaly rate.

anomaly advisor

You can highlight and area to see an ordered list of the most anomalous metrics in that window of time.

anomaly advisor results

Learn More!

Stay tuned as we plan on doing a series of posts like this to dive deeper into how ML works in Netdata and various related topics from tips and tricks to configuration options and more. In the meantime below is a list of useful links and resources you might be interested in if you have read this far 🙂