Retrieving Events

After publishing events to Fiddler, you may want to retrieve them for further analysis.

Querying production data

You can query production data from the Analyze tab by issuing the following SQL query to Fiddler.

SELECT
    *
FROM
    "production.MODEL_ID"

The above query will return the entire production table (all published events) for a model with a model ID of MODEL_ID.

Querying a baseline dataset

You can query a baseline dataset that has been uploaded to Fiddler with the following SQL query.

SELECT
    *
FROM
    "DATASET_ID.MODEL_ID"

Here, this will return the entire baseline dataset that has been uploaded with an ID of DATASET_ID to a model with an ID of MODEL_ID.