File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -549,6 +549,8 @@ defmodule DBConnection do
549
549
550
550
A `[:db_connection, :connection_error]` event is published whenever a
551
551
connection checkout receives a `%DBConnection.ConnectionError{}`.
552
+ This event is emitted from the process that attempts to checkout the
553
+ connection.
552
554
553
555
Measurements:
554
556
@@ -560,8 +562,9 @@ defmodule DBConnection do
560
562
561
563
* `:opts` - All options given to the pool operation
562
564
563
- See `DBConnection.TelemetryListener` for enabling `[:db_connection, :connected]`
564
- and `[:db_connection, :disconnected]` events.
565
+ You may also consume `[:db_connection, :connected]` and `[:db_connection, :disconnected]`
566
+ events by spawning a `DBConnection.TelemetryListener` process that subscribes to the pool
567
+ and emits them in a robust manner.
565
568
"""
566
569
@ spec start_link ( module , [ start_option ( ) ] | Keyword . t ( ) ) :: GenServer . on_start ( )
567
570
def start_link ( conn_mod , opts ) do
You can’t perform that action at this time.
0 commit comments