MySQL connects directly, with its own host and credentials. See How telemetry
works for how investigations query your stack, and the telemetry
overview for how data sources fit together.
What we support
Investigations query MySQL with read-only SQL. They write the query, run it for the window that matters, and read back the results — joining across tables, filtering and aggregating, and reading from tables and views.Exploring your schema
Investigations don’t need you to describe your database. They learn its shape on their own: the tables you have, their columns and types, primary and foreign keys, and how tables relate. From there they explore progressively — starting with an overview of the database, then pulling fuller detail on the specific tables a question turns out to need, rather than loading everything up front. That keeps queries accurate against large schemas and grounded in tables that actually exist. How investigations learn and use this structure is covered in How telemetry works.Connecting MySQL
Connect MySQL directly with its connection details. What you’ll need:- The host and port of your database (port defaults to 3306).
- The database name to connect to.
- A username and password.
- The TLS mode to use, and any client certificate, client key, or CA certificate your database requires. Mutual TLS is supported for environments that need it.
- From the Investigations settings, add a telemetry data source and choose MySQL.
- Enter the connection details and credentials, then test the connection.
- Once connected, the database is enabled for investigations. You can disable it at any time.
Best practice
- Connect a read-only user. Investigations only ever read, and a read-only user makes that enforceable on your side.
- Point it at a replica rather than your primary, so investigation queries never compete with production traffic.
- Grant access to the tables investigations should see and no more. They explore only what the user can read.
Related
Telemetry overview
How providers, capabilities, and data sources fit together.
How telemetry works
How investigations explore your schema and query your data.