...

/

Preparing the Data

Preparing the Data

Learn how to prepare your data for anomaly detection.

We'll cover the following...

Data in server logs

Application servers such as Nginx, Apache, and IIS write very useful information to access logs. The data in these logs can be instrumental in identifying anomalies.

We will analyze logs of a web application, so the data we are most interested in is the timestamp and the status code of every response from the server. To illustrate the type of insight, we can draw from this data:

  • A sudden increase in the 500 status code: You may have a problem with the server. Did you push a new version? Is there an
...