@Elias Bonnici Our apologies for the inconvenience caused to you.
Please Configure audit logging to get more details on each connection, its origin, query text etc.
This should help you understand which other clients are connecting to your database.
You can then query Log Analytics using the below query to fetch the required information
AzureDiagnostics
| where Category == ‘MySqlAuditLogs’
| order by TimeGenerated desc
| project TimeGenerated, event_class_s, event_subclass_s, user_s, external_user_s, connection_id_d, thread_id_d, event_time_t, sql_text_s, db_s, table_s, error_code_d
Read more about this topic here
Please let us know if you have any further queries.
----------
If an answer is helpful, please "Accept answer" or "Up-Vote" which might help other community members reading this thread.