Skip to content

Commit

Permalink
Merge branch 'master' into custom-slack-channel-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Maayan-s authored Sep 10, 2023
2 parents a7cf89e + f557757 commit d42b96e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Elementary anomaly detection tests will use this column to create time buckets a
It is highly recommended to configure a timestamp column (if there is one).
The best column for this would be an `updated_at`/`created_at`/`loaded_at` timestamp for each row (date type also works).

- When you specify a `timestamp_column`, when the test runs it splits the data to buckets according to the timestamp in this column, calculates the metric for each bucket and checks for anomalies between these buckets.
This also means that if the table has enough historical data, the test can start working right away.
- When you do not specify a `timestamp_column`, each time the test runs it calculates the metric for all of the data in the table, and checks for anomalies between the metric from previous runs.
This also means that it will take the test `days_back` days to start working, as it needs to the time to collect the necessary metrics.

If undefined, default is null (no time buckets).

- _Default: none_
Expand Down

0 comments on commit d42b96e

Please sign in to comment.