16 May 2023 02:35 PM - last edited on 17 May 2023 11:10 AM by AgataWlodarczyk
Can someone please explain what this metric represents ("Failed DataBase Connects")?
Solved! Go to Solution.
16 May 2023 02:51 PM
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
18 May 2023 08:18 AM
Thankyou @Babar_Qayyum , This helps!
16 May 2023 07:21 PM
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.
18 May 2023 08:18 AM
Thankyou @richard_guerra This helps!