16 May 2023
06:35 AM
- last edited on
17 May 2023
03:10 AM
by
AgataWlodarczyk
Can someone please explain what this metric represents ("Failed DataBase Connects")?
Solved! Go to Solution.
Hello @Sahil2308
It is one of the database anomly. Please have a look at the below link for more insight.
https://www.dynatrace.com/support/help/observe-and-explore/metrics/built-in-metrics
Regards,
Babar
Your application code will open a connection to a database to access or update data therein. "Failed DataBase Connects" is an exception where this connection to the database cannot be made. An example from one of my applications: org.springframework.jdbc.CannotGetJdbcConnectionException.
The reason for a failed database connection could be related to the connection-pool within your code (pool vs load), a resource issue on the database side, or even an issue in-between (e.g. network connectivity).
*I wish Dynatrace was better with monitoring connection-pools.