Fix bug 1833: fix DATA_SOURCE_NAME in mysqld-exporter
[osm/devops.git] / installers / charm / mysqld-exporter / src / charm.py
index 91be02a..46588b9 100755 (executable)
@@ -185,9 +185,9 @@ class MysqlExporterCharm(CharmedOsmBase):
         self._check_missing_dependencies(config)
 
         data_source = (
-            config.mysql_uri.replace("mysql://", "").split("/")[0]
+            f'{config.mysql_uri.replace("mysql://", "").replace("@", "@(").split("/")[0]})/'
             if config.mysql_uri
-            else f"root:{self.mysql_client.root_password}@{self.mysql_client.host}:{self.mysql_client.port}"
+            else f"root:{self.mysql_client.root_password}@({self.mysql_client.host}:{self.mysql_client.port})/"
         )
 
         # Create Builder for the PodSpec