You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As an ETL pipeline user, I want to know which database connection log messages correspond to so that I can have a better idea of where my process is.
Description
When messages from ETL Helper logger are consumed by other handlers they can end up like this:
16:43:26 etlhelper INFO Fetching rows
16:43:27 etlhelper INFO 108 rows returned
16:43:30 etlhelper INFO Executing query
If the pipeline involves multiple databases, there is no way to know which database the messages correspond to. The messages should be updated to provide some information about the connection.
(It is probably not possible to put the DbParams variable name in the message there as I'm not sure if that is accessible when the log messages are written. If it was possible, that would be best. It may be necessary to add a "name" attribute to DbParams classes.)
Acceptance criteria
Log messages look like:
[ ] 16:43:30 etlhelper INFO Fetching rows from MY_DB
of if that isn't possible
[ ] 16:43:30 etlhelper INFO Fetching rows from [email protected]:1234/db
The text was updated successfully, but these errors were encountered:
Summary
As an ETL pipeline user, I want to know which database connection log messages correspond to so that I can have a better idea of where my process is.
Description
When messages from ETL Helper logger are consumed by other handlers they can end up like this:
If the pipeline involves multiple databases, there is no way to know which database the messages correspond to. The messages should be updated to provide some information about the connection.
(It is probably not possible to put the DbParams variable name in the message there as I'm not sure if that is accessible when the log messages are written. If it was possible, that would be best. It may be necessary to add a "name" attribute to DbParams classes.)
Acceptance criteria
Log messages look like:
16:43:30 etlhelper INFO Fetching rows from MY_DB
of if that isn't possible
16:43:30 etlhelper INFO Fetching rows from [email protected]:1234/db
The text was updated successfully, but these errors were encountered: