Skip to content

Commit

Permalink
Track dbt application name in telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
prdpsvs committed Jul 7, 2023
1 parent 6ee2ec8 commit 74f3243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbt/adapters/fabric/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.4.0-rc2"
version = "1.4.0-rc3"
2 changes: 1 addition & 1 deletion dbt/adapters/fabric/fabric_connection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def open(cls, connection: Connection) -> Connection:

plugin_version = __version__.version
application_name = f"dbt-{credentials.type}/{plugin_version}"
con_str.append(f"Application Name={application_name}")
con_str.append(f"APP={application_name}")

con_str_concat = ";".join(con_str)

Expand Down

0 comments on commit 74f3243

Please sign in to comment.