Monte Carlo
Euno's Monte Carlo integration surfaces active data quality alerts directly on impacted warehouse tables and columns, and on the dbt resources that define them (dbt_model, dbt_source, dbt_seed, dbt_snapshot, dbt_column). It also introduces the originating Monte Carlo monitor as a first-class resource in the Euno data model.
Monte Carlo remains the source of truth for alerts. Euno retrieves alert payloads via the Monte Carlo GraphQL API and computes a set of resource-level indicators for discovery and filtering.
Only active alerts are ingested:
InvestigatingNo Status(newly opened, not yet triaged)
Alerts in terminal states (Fixed, No Action Needed, False Positive, Expected, Resolved, Closed, Acknowledged) are not fetched, stored, or displayed.
Alert lookback window: Euno fetches alerts whose updatedTime falls within the last 30 days. An alert that remains in an active state but has not been updated in Monte Carlo for longer than that window may not appear in Euno until it is updated again.
Euno's Monte Carlo integration supports auto-discovery of:
montecarlo_accountβ top-level account container holding warehouse connection metadatamontecarlo_monitorβ one resource per monitor returned by Monte Carlo'sgetMonitorsAPI (including monitors with no active alerts)
In addition, the integration enriches existing table, column, dbt_model, dbt_source, dbt_seed, dbt_snapshot, and dbt_column resources with active-alert properties. It does not discover or import warehouse hierarchy from Monte Carlo.
Prerequisites
A Monte Carlo account with at least one configured warehouse connection.
Administrator access to Monte Carlo to create an Account Service Key.
The tables, columns, and dbt resources you want to enrich with alerts must already exist in Euno from another source integration (Snowflake, BigQuery, dbt, etc.). Euno resolves alerts to existing resources β it does not create warehouse hierarchy from Monte Carlo.
Stage 1: Configure Monte Carlo
Step 1: Create a Monte Carlo Account Service Key
Log in to your Monte Carlo account as an administrator.
Navigate to Settings β API.
Create a new Account Service Key.
Copy the API Key ID and API Key Secret β you'll need these for Euno configuration.
Account-level token required when SSO is enabled: If your Monte Carlo account uses SSO, you must provide an account-level Account Service Key (not a user-scoped key) for this integration to work. User-scoped tokens issued under SSO will not authenticate successfully against the headless GraphQL API used by the integration.
Stage 2: Configure New Monte Carlo Source in Euno
Step 1: Access the Sources Page
Go to the Sources page in Euno.
Click on Add New Source and select Monte Carlo from the list of supported platforms.
Step 2: General Configuration
Asterisk (*) means a mandatory field.
Name*
Enter a name for your Monte Carlo source (e.g., "Monte Carlo - Data Observability").
API Key ID*
Account Service Key ID from Step 1. Sent on every request as the x-mcd-id header.
API Key Secret*
Account Service Key secret from Step 1. Sent on every request as the x-mcd-token header. Stored securely.
GraphQL API URL
(Advanced) Base URL of the Monte Carlo GraphQL API. Leave blank to use https://api.getmontecarlo.com/graphql. Override only if your account uses a custom endpoint.
Warehouse URI prefix mapping
(Advanced) Optional JSON mapping of Monte Carlo-reported warehouse URI prefixes or coordinates to the Euno URI prefixes or coordinates used by your warehouse/dbt sources. See Warehouse URI prefix mapping below.
Warehouse URI prefix mapping
If Monte Carlo reports warehouse coordinates differently from the URI prefixes Euno uses for tables (for example, Snowflake locator format vs. org-account format), configure Warehouse URI prefix mapping in the source's advanced settings.
Keys are the warehouse URI prefixes or coordinate prefixes Euno derives from Monte Carlo alert payloads. Values are the Euno URI prefixes or coordinate prefixes used by the existing warehouse and dbt resources in your account. Euno applies the longest matching prefix before resolving alerts to tables, columns, and defining dbt resources (dbt_model, dbt_source, dbt_seed, dbt_snapshot, dbt_column).
Common examples:
Snowflake β map the Monte Carlo-reported Snowflake account prefix to the Snowflake prefix used by your Snowflake/dbt source. For example, Monte Carlo may report locator format
snowflake.jgb69604.us-west-2.awswhile Euno resources use org-account formatsnowflake.zwfkgsy-bdb54493.BigQuery β use
bigqueryor a more specificbigquery.project/bigquery.project.datasetprefix when a project or dataset needs to be remapped.Specific coordinates β map a longer prefix such as
snowflake.old_account.analytics.publictosnowflake.new_account.analytics.publicwhen only a database/schema coordinate differs.
For backward compatibility, Euno still accepts legacy keys based on Monte Carlo warehouse metadata (warehouse UUID/name or connection UUID/id), but new configurations should use reported URI prefixes or coordinate prefixes.
Step 3: Schedule
Enable the Schedule option.
Choose:
Weekly: Set specific days and times.
Hourly: Define the interval in hours (e.g., every 4 hours).
Recommended: Schedule the Monte Carlo integration to run every 4 hours so active alert state stays close to real-time. Manual runs are also supported.
Step 4: Resource Cleanup
Immediate Cleanup is the default and recommended setting for this integration.
Immediate Cleanup:
montecarlo_monitorresources not observed in the most recent successful crawl are removed. This keeps the monitor inventory aligned with Monte Carlo'sgetMonitorsresults.
Use Immediate Cleanup for Monte Carlo sources. No Cleanup can leave stale montecarlo_monitor resources after monitors are deleted in Monte Carlo.
active_montecarlo_alerts is updated when a monitor's active alerts change, but resolved alerts may leave stale data on impacted resources until those resources are updated again. Prefer Immediate Cleanup and re-run the integration after major alert triage in Monte Carlo.
Step 5: Save Configuration
Click the Test & Save button to complete the setup. Euno will:
Authenticate to the Monte Carlo GraphQL API using the provided API Key ID and Secret.
Verify access via the Monte Carlo API (
getUser).Save the configuration if validation passes.
If the test fails, review the error message and verify your credentials. The most common cause of failure is a user-scoped token in an SSO-enabled account β see the note in Step 1.
What Euno Discovers
montecarlo_accountβ The top-level Monte Carlo account container. Holds warehouse connection metadata and the warehouse-to-Euno mapping context used to resolve alerts to the correct resources.montecarlo_monitorβ A Monte Carlo data quality monitor. One resource is created per monitor returned by Monte Carlo'sgetMonitorsAPI. Stores the full monitor payload and its list of active alerts.
In addition, existing table, column, dbt_model, dbt_source, dbt_seed, dbt_snapshot, and dbt_column resources are enriched with alert properties when they are the impacted asset of one or more active Monte Carlo alerts.
For detailed information about discovered resources and their indexed properties, see Monte Carlo Integration Discovered Resources.
Last updated