> ## Documentation Index
> Fetch the complete documentation index at: https://elementary-more-explicit-webhook-instructions.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# event_timestamp_column

`event_timestamp_column: [column name]`

Configuration for the test `event_freshness_anomalies`.
This test compliments the freshness\_anomalies test and is primarily intended for data that is updated in a continuous / streaming fashion.

The test can work in a couple of modes:

* If only an event\_timestamp\_column is supplied, the test measures over time the difference between the current timestamp (“now”) and the most recent event timestamp.

* If both an event\_timestamp\_column and an update\_timestamp\_column are provided, the test will measure over time the difference between these two columns.

* *Default: None*

* *Relevant tests: `event_freshness_anomalies`*

* *Configuration level: test*

<RequestExample>
  ```yml test
  models:
    - name: this_is_a_model
      tests:
        - elementary.event_timestamp_column:
            event_timestamp_column: "event_timestamp"
            update_timestamp_column: "created_at"
  ```
</RequestExample>
