Open
Description
Is your feature request related to a problem? Please describe.
Sometimes redis commands (such as GET SET) are executed very quickly, but before a redis command is executed, it usually goes to an operation to get a redis connection from the redis connection pool, which is sometimes very time-consuming (the size of the connection pool is not necessarily appropriate). This situation cannot be visualised in the existing instrumentation.
Describe the solution you'd like
- Monitor the operation like
org.springframework.data.redis.connection.RedisConnection#getNativeConnection
- Monitor the usage of redis connection pool
Describe alternatives you've considered
No response
Additional context
No response