<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Custom MariaDB 10.3.5+ - Extension in Extensions</title>
    <link>https://community.dynatrace.com/t5/Extensions/Custom-MariaDB-10-3-5-Extension/m-p/277790#M6469</link>
    <description>&lt;H3&gt;&lt;STRONG&gt;Disclaimer &amp;amp; Introduction&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;This document outlines the configuration for a custom MariaDB extension. Please note the following:&lt;/P&gt;&lt;P&gt;This extension was developed as a proof-of-concept for MariaDB monitoring, specifically because the existing official Dynatrace extension for MySQL did not fully meet the requirements or function as expected with MariaDB in our testing environment. The development involved adapting queries from the current MySQL extension to be compatible with MariaDB. Some queries were modified where the originals did not yield the necessary information from MariaDB.&lt;/P&gt;&lt;P&gt;Consider this extension to be in a &lt;STRONG&gt;beta phase&lt;/STRONG&gt;. While it has been tested and is functional, it may not encompass all scenarios or have the same level of polish as an officially released product.&lt;/P&gt;&lt;P&gt;Regarding &lt;STRONG&gt;certificates for the extension&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can upload the Certificate Authority (CA) to the Dynatrace credential vault.&lt;/LI&gt;&lt;LI&gt;Alternatively, and &lt;STRONG&gt;this is the recommended approach&lt;/STRONG&gt;, you can follow the process to set up a local signing environment, generate your own certificates, and then upload your self-signed extension.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Should you have any questions regarding the certificate generation process or any other aspect of this extension, the official Dynatrace documentation provides clear guidance. However, feel free to reach out to me through this channel, Discord, or WhatsApp for assistance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;H2&gt;MariaDB Configuration for Dynatrace Extension&lt;/H2&gt;&lt;P&gt;To ensure the proper functioning and comprehensive metric capture of your MariaDB/MySQL instance with the Dynatrace extension, the following configurations are necessary. These instructions are based on &lt;STRONG&gt;MariaDB version 10.11.9&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_0-1747903385679.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28132i6CA605208BB08952/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rgarzon1_0-1747903385679.png" alt="rgarzon1_0-1747903385679.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_1-1747903397982.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28133i509A26B2B6119887/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rgarzon1_1-1747903397982.png" alt="rgarzon1_1-1747903397982.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;Enabling Essential Features in MariaDB&lt;/H3&gt;&lt;P&gt;The following steps describe how to permanently enable the &lt;STRONG&gt;Slow Query Log&lt;/STRONG&gt; and the &lt;STRONG&gt;Performance Schema&lt;/STRONG&gt;. It is crucial to edit your MariaDB/MySQL server's configuration file (my.cnf or my.ini), adding the specified directives within the [mysqld] section.&lt;/P&gt;&lt;H4&gt;1. Enable the Slow Query Log&lt;/H4&gt;&lt;P&gt;This feature allows you to identify queries that exceed a defined time threshold, facilitating performance optimization.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Access the MariaDB/MySQL configuration file&lt;/STRONG&gt;. Common locations are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;/etc/my.cnf&lt;/LI&gt;&lt;LI&gt;/etc/mysql/my.cnf&lt;/LI&gt;&lt;LI&gt;/usr/local/mysql/etc/my.cnf&lt;/LI&gt;&lt;LI&gt;~/.my.cnf (in the user's home directory)&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Add or modify the following lines&lt;/STRONG&gt; under the [mysqld] section:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Ini, TOML&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;[mysqld]&lt;/SPAN&gt;
&lt;SPAN class=""&gt;slow_query_log&lt;/SPAN&gt; = &lt;SPAN class=""&gt;ON&lt;/SPAN&gt;
&lt;SPAN class=""&gt;slow_query_log_file&lt;/SPAN&gt; = /var/log/mariadb/slow-query.log
&lt;SPAN class=""&gt;long_query_time&lt;/SPAN&gt; = &lt;SPAN class=""&gt;1&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;slow_query_log = ON: Activates the slow query log.&lt;/LI&gt;&lt;LI&gt;slow_query_log_file: Specifies the path and filename where the logs will be stored. Ensure the directory exists and has the appropriate permissions.&lt;/LI&gt;&lt;LI&gt;long_query_time = 1: Sets the threshold in seconds. Queries taking longer than 1 second to execute will be logged.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H4&gt;2. Enable the Performance Schema&lt;/H4&gt;&lt;P&gt;The Performance Schema provides detailed instrumentation about server execution, which is essential for advanced performance monitoring.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;In the same configuration file (my.cnf or my.ini), &lt;STRONG&gt;add or edit the following line&lt;/STRONG&gt; under the [mysqld] section:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Ini, TOML&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;[mysqld]&lt;/SPAN&gt;
&lt;SPAN class=""&gt;performance_schema&lt;/SPAN&gt; = &lt;SPAN class=""&gt;ON&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;performance_schema = ON: Enables the Performance Schema.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H4&gt;3. Apply Changes&lt;/H4&gt;&lt;P&gt;For the modifications in the configuration file to take effect, it is &lt;STRONG&gt;necessary to restart the MariaDB/MySQL service&lt;/STRONG&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Execute the following command in your terminal (superuser privileges may be required):&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Bash&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;sudo systemctl restart mariadb&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Or the equivalent command for your operating system if you are not using systemd (e.g., sudo service mysql restart).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H3&gt;Certificate Installation for the Extension&lt;/H3&gt;&lt;P&gt;For the remote extension to function correctly in Dynatrace, it is essential to &lt;STRONG&gt;sign it with a developer root certificate&lt;/STRONG&gt;. This certificate must be deployed on the ActiveGate that will run the extension.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Required Certificate CA.PEM:&lt;/STRONG&gt; (It is assumed that the certificate will be provided or linked here (inside SharedCertificates.zip)&amp;nbsp; .&lt;BR /&gt;The original Dynatrace documentation link is a general reference on signing extensions).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Option B: Deploying a Developer Root Certificate to the ActiveGate (For local signing)&lt;/STRONG&gt; If you are signing the extension locally with your own developer certificate:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Save your developer root certificate file.&lt;/LI&gt;&lt;LI&gt;Copy the certificate file to the corresponding directory within your ActiveGate:&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Linux:&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN class=""&gt;&amp;lt;CONFIG&amp;gt;/remotepluginmodule/agent/conf/certificates/&lt;/SPAN&gt;&lt;SPAN class=""&gt; (Default: &lt;/SPAN&gt;&lt;SPAN class=""&gt;/var/lib/dynatrace/remotepluginmodule/agent/conf/certificates/&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Windows:&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN class=""&gt;%PROGRAMDATA%\dynatrace\remotepluginmodule\agent\conf\certificates\&lt;/SPAN&gt; For more details on signing extensions, refer to the &lt;A&gt;.zip file).&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H3&gt;MariaDB Version Considerations&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Reference Version:&lt;/STRONG&gt; The configuration and available metrics have been validated with &lt;STRONG&gt;MariaDB 10.11.9&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Compatibility with Older Versions:&lt;/STRONG&gt; If you are using an older version, such as &lt;STRONG&gt;MariaDB 10.2.8&lt;/STRONG&gt;, the extension should still function. However, it is important to note that &lt;STRONG&gt;some advanced performance metrics may not be available&lt;/STRONG&gt;. This is because the Performance Schema in MariaDB versions prior to 10.3.5 did not include all the tables and instrumentation that more recent versions possess. It is recommended to consider upgrading your MariaDB instance to take full advantage of the monitoring capabilities.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Virus total Analisis:&amp;nbsp;&lt;A href="https://www.virustotal.com/gui/file/da2f5329d551e0731af5f65794b2e5d17ab01698c9432cf6186d89939c94efd6?nocache=1" target="_blank" rel="noopener"&gt;VirusTotal - File - da2f5329d551e0731af5f65794b2e5d17ab01698c9432cf6186d89939c94efd6&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 May 2025 08:47:39 GMT</pubDate>
    <dc:creator>rgarzon1</dc:creator>
    <dc:date>2025-05-22T08:47:39Z</dc:date>
    <item>
      <title>Custom MariaDB 10.3.5+ - Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Custom-MariaDB-10-3-5-Extension/m-p/277790#M6469</link>
      <description>&lt;H3&gt;&lt;STRONG&gt;Disclaimer &amp;amp; Introduction&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;This document outlines the configuration for a custom MariaDB extension. Please note the following:&lt;/P&gt;&lt;P&gt;This extension was developed as a proof-of-concept for MariaDB monitoring, specifically because the existing official Dynatrace extension for MySQL did not fully meet the requirements or function as expected with MariaDB in our testing environment. The development involved adapting queries from the current MySQL extension to be compatible with MariaDB. Some queries were modified where the originals did not yield the necessary information from MariaDB.&lt;/P&gt;&lt;P&gt;Consider this extension to be in a &lt;STRONG&gt;beta phase&lt;/STRONG&gt;. While it has been tested and is functional, it may not encompass all scenarios or have the same level of polish as an officially released product.&lt;/P&gt;&lt;P&gt;Regarding &lt;STRONG&gt;certificates for the extension&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can upload the Certificate Authority (CA) to the Dynatrace credential vault.&lt;/LI&gt;&lt;LI&gt;Alternatively, and &lt;STRONG&gt;this is the recommended approach&lt;/STRONG&gt;, you can follow the process to set up a local signing environment, generate your own certificates, and then upload your self-signed extension.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Should you have any questions regarding the certificate generation process or any other aspect of this extension, the official Dynatrace documentation provides clear guidance. However, feel free to reach out to me through this channel, Discord, or WhatsApp for assistance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;H2&gt;MariaDB Configuration for Dynatrace Extension&lt;/H2&gt;&lt;P&gt;To ensure the proper functioning and comprehensive metric capture of your MariaDB/MySQL instance with the Dynatrace extension, the following configurations are necessary. These instructions are based on &lt;STRONG&gt;MariaDB version 10.11.9&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_0-1747903385679.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28132i6CA605208BB08952/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rgarzon1_0-1747903385679.png" alt="rgarzon1_0-1747903385679.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_1-1747903397982.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28133i509A26B2B6119887/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rgarzon1_1-1747903397982.png" alt="rgarzon1_1-1747903397982.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;Enabling Essential Features in MariaDB&lt;/H3&gt;&lt;P&gt;The following steps describe how to permanently enable the &lt;STRONG&gt;Slow Query Log&lt;/STRONG&gt; and the &lt;STRONG&gt;Performance Schema&lt;/STRONG&gt;. It is crucial to edit your MariaDB/MySQL server's configuration file (my.cnf or my.ini), adding the specified directives within the [mysqld] section.&lt;/P&gt;&lt;H4&gt;1. Enable the Slow Query Log&lt;/H4&gt;&lt;P&gt;This feature allows you to identify queries that exceed a defined time threshold, facilitating performance optimization.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Access the MariaDB/MySQL configuration file&lt;/STRONG&gt;. Common locations are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;/etc/my.cnf&lt;/LI&gt;&lt;LI&gt;/etc/mysql/my.cnf&lt;/LI&gt;&lt;LI&gt;/usr/local/mysql/etc/my.cnf&lt;/LI&gt;&lt;LI&gt;~/.my.cnf (in the user's home directory)&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Add or modify the following lines&lt;/STRONG&gt; under the [mysqld] section:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Ini, TOML&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;[mysqld]&lt;/SPAN&gt;
&lt;SPAN class=""&gt;slow_query_log&lt;/SPAN&gt; = &lt;SPAN class=""&gt;ON&lt;/SPAN&gt;
&lt;SPAN class=""&gt;slow_query_log_file&lt;/SPAN&gt; = /var/log/mariadb/slow-query.log
&lt;SPAN class=""&gt;long_query_time&lt;/SPAN&gt; = &lt;SPAN class=""&gt;1&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;slow_query_log = ON: Activates the slow query log.&lt;/LI&gt;&lt;LI&gt;slow_query_log_file: Specifies the path and filename where the logs will be stored. Ensure the directory exists and has the appropriate permissions.&lt;/LI&gt;&lt;LI&gt;long_query_time = 1: Sets the threshold in seconds. Queries taking longer than 1 second to execute will be logged.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H4&gt;2. Enable the Performance Schema&lt;/H4&gt;&lt;P&gt;The Performance Schema provides detailed instrumentation about server execution, which is essential for advanced performance monitoring.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;In the same configuration file (my.cnf or my.ini), &lt;STRONG&gt;add or edit the following line&lt;/STRONG&gt; under the [mysqld] section:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Ini, TOML&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;[mysqld]&lt;/SPAN&gt;
&lt;SPAN class=""&gt;performance_schema&lt;/SPAN&gt; = &lt;SPAN class=""&gt;ON&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;performance_schema = ON: Enables the Performance Schema.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H4&gt;3. Apply Changes&lt;/H4&gt;&lt;P&gt;For the modifications in the configuration file to take effect, it is &lt;STRONG&gt;necessary to restart the MariaDB/MySQL service&lt;/STRONG&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Execute the following command in your terminal (superuser privileges may be required):&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Bash&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;sudo systemctl restart mariadb&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Or the equivalent command for your operating system if you are not using systemd (e.g., sudo service mysql restart).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H3&gt;Certificate Installation for the Extension&lt;/H3&gt;&lt;P&gt;For the remote extension to function correctly in Dynatrace, it is essential to &lt;STRONG&gt;sign it with a developer root certificate&lt;/STRONG&gt;. This certificate must be deployed on the ActiveGate that will run the extension.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Required Certificate CA.PEM:&lt;/STRONG&gt; (It is assumed that the certificate will be provided or linked here (inside SharedCertificates.zip)&amp;nbsp; .&lt;BR /&gt;The original Dynatrace documentation link is a general reference on signing extensions).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Option B: Deploying a Developer Root Certificate to the ActiveGate (For local signing)&lt;/STRONG&gt; If you are signing the extension locally with your own developer certificate:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Save your developer root certificate file.&lt;/LI&gt;&lt;LI&gt;Copy the certificate file to the corresponding directory within your ActiveGate:&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Linux:&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN class=""&gt;&amp;lt;CONFIG&amp;gt;/remotepluginmodule/agent/conf/certificates/&lt;/SPAN&gt;&lt;SPAN class=""&gt; (Default: &lt;/SPAN&gt;&lt;SPAN class=""&gt;/var/lib/dynatrace/remotepluginmodule/agent/conf/certificates/&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Windows:&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN class=""&gt;%PROGRAMDATA%\dynatrace\remotepluginmodule\agent\conf\certificates\&lt;/SPAN&gt; For more details on signing extensions, refer to the &lt;A&gt;.zip file).&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H3&gt;MariaDB Version Considerations&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Reference Version:&lt;/STRONG&gt; The configuration and available metrics have been validated with &lt;STRONG&gt;MariaDB 10.11.9&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Compatibility with Older Versions:&lt;/STRONG&gt; If you are using an older version, such as &lt;STRONG&gt;MariaDB 10.2.8&lt;/STRONG&gt;, the extension should still function. However, it is important to note that &lt;STRONG&gt;some advanced performance metrics may not be available&lt;/STRONG&gt;. This is because the Performance Schema in MariaDB versions prior to 10.3.5 did not include all the tables and instrumentation that more recent versions possess. It is recommended to consider upgrading your MariaDB instance to take full advantage of the monitoring capabilities.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Virus total Analisis:&amp;nbsp;&lt;A href="https://www.virustotal.com/gui/file/da2f5329d551e0731af5f65794b2e5d17ab01698c9432cf6186d89939c94efd6?nocache=1" target="_blank" rel="noopener"&gt;VirusTotal - File - da2f5329d551e0731af5f65794b2e5d17ab01698c9432cf6186d89939c94efd6&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 08:47:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Custom-MariaDB-10-3-5-Extension/m-p/277790#M6469</guid>
      <dc:creator>rgarzon1</dc:creator>
      <dc:date>2025-05-22T08:47:39Z</dc:date>
    </item>
  </channel>
</rss>

