🚨 Prevent issues on your database
BEFORE the deployment
Metis let you to see the SQL commands running in your environments, get insights about the performance and potential errors, and understand if it’s safe to deploy changes to production.
You will be able to see SQL commands running on your developer environment:
You will get insights about the performance and potential errors:
You will be able to understand the query details and see how it works behind the scenes:
Let’s start by integrating your application with Metis.
How it works
In order to provide you with all the details, we need to do the following:
- Capture signals about what network API your application exposes and how it’s being called;
- Capture execution plans of the SQL queries your application sends to the database;
- Deliver the execution plans to the Metis platform.
Capture signals about your network API
To capture the signals about the network API your application exposes (point one from the above), we provide an SDK that integrates with your Open Telemetry configuration and emits traces to the Metis platform. These traces capture the details of the network requests your application processes, and SQL queries your application sends to the database. We do not extract any confidential data nor personal information. We only capture the metadata about the latency, executed query, execution plan, and metrics from the database.
Open Telemetry
Open Telemetry is common nowadays. Just like we have a logging library integrated with our frameworks, libraries, and business code, the telemetry is now available out of the box. Your web framework or database driver is most likely already integrated with it. Therefore, we don’t add anything new in terms of the dependencies. We only configure a new Exporter for the Open Telemetry signals that will deliver the signals to Metis platform. It’s like adding a new log file to your application.
Capture execution plans of the SQL queries
To capture the execution plans of the SQL queries your application sends to the database (point two from the above), we use the EXPLAIN command. The command takes your query and emits an execution plan that describes all the physical operations the database server needs to execute. We can run the EXPLAIN command in one of the many ways:
- Instrument your application code with our SDK to send the EXPLAIN query whenever your application sends a regular SQL query;
- Use pg_store_plans extension directly in the database to automatically store the execution plans for each query;
- Use auto_explain extension directly in the database to automatically explain the queries and store the execution plans in the logs.
Deliver the execution plans to the Metis platform
To deliver the execution plans to the Metis platform (point three from the above) we again have a number of ways, depending on how we obtained the execution plan. If we instrumented the application code with our SDK, then the SDK will deliver the plans automatically. If we used one of the extensions for the database, then we need to use the Metis Agent 🤖 Deploy Metis Agent to extract the plans from the logs by using either file_fdw extension or log_fdw extension.
Once we have all the signals delivered to the platform, everything will work automatically.
Integrating Metis
To do that, follow the documentation for the technology stack you have in the 🔧 Setup Metis section. The steps you need to take come down to:
- Add Open Telemetry dependencies if you don’t have them in your project already;
- Add new Exporter to Open Telemetry to capture signals about REST requests (using our SDK);
- Get execution plans for the SQL queries (using our SDK or by configuring your database, depending on the technology you use);
- Deliver execution plans to Metis (using our SDK or by running Metis Agent, depending on the technology you use).
You can also see How To Seamlessly Integrate Sequelize with Node.js and JavaScript for Database Monitoring blog post taking you step by step through the integration of Sequelize ORM library with Metis platform.
Once you do that, you will see Staging card in your main project page:
Once you click on it, you will see the list of your endpoints with all the executions captured by Metis:
You can see the HTTP code returned by the network call (1), the duration (2), and the number of insights with their severities (3). Once you click on any of the calls, you will see the insights page:
Insights page
The main page of the call shows the following parts (see the screenshot above):
- List of all spans and queries sent within this network call;
- Tabs showing details of the SQL query;
- List of insights for the SQL query;
- Details of a particular insight;
- Impact of the given insight;
- Instructions how improve the query.
You can now examine the query and get the actionable results. If you see critical insights, then it is most likely not safe to deploy these changes to production.
If you want to see the query statement, then click on the SQL tab:
You can see the query text and how many rows were filtered along the way. You can also see the visualization of the plan by clicking on the Query Tale:
This shows you the order and types operations, how many rows were passed between the stages, and other details about the performance. You can click on the Tables tab to see the tables included in the query:
This shows the tables, number of extracted rows, which indexes were used, and other metrics. You can also get the raw execution plan by clicking on Execution Plan:
This way you can learn all the details about the query, reason about its performance, see how to improve it, and apply corrective actions.
DURING the deployment
At the end of this section you’ll be able to see the SQL commands running in your CI/CD pipeline, get insights about the schema migrations, and understand if it’s safe to deploy changes to production.
You’ll get the list of performance insights and schema migration insights for each pull request:
You’ll also get the insights for the SQL migrations:
Each migration will be automatically analyzed and details will be provided:
How it works
Metis can analyze changes in your pull request in the CI/CD pipeline the same way as with queries running in your local environment. To do that, we need to do the following:
- Submit code changes with schema migrations;
- Execute end-to-end tests in the CI/CD pipeline;
- Capture signals from the execution in the CI/CD pipeline;
- Analyze the schema migrations with Metis and correlate the execution with a particular pull request.
Points 1 and 2 are outside of Metis. You need to configure them the regular way depending on your CI/CD platform. For instance, you can 🎬 Add Metis’s GitHub actions to your repository
To achieve point 3, you need to do the same things as in the previous section Integrating Metis. Depending on your technology stack, you may need to use the Metis Agent.
To achieve point 4, follow 🎬 Add Metis’s GitHub actions to your repository
GitHub Actions Integration with Metis
Configure your CI/CD actions the regular way. Create new token in GitHub to be used with Action: go to GitHub Settings, generate new token (classic), and assign permissions to workflow:
Configure GitHub Action variables and secrets in your repository to include the token and the Metis API key:
Next, run Metis Test Action in your CI/CD:
Similarly, run the action to analyze schema migrations:
Once you submit a pull request, you should get comments from Metis:
You can also go to the Metis project page and see the list of pull requests:
You can now dive deep into each migration or test and see how it performed.