diff --git a/redash/query_runner/snowflake.py b/redash/query_runner/snowflake.py index e8747ea1b2..f296264fc2 100644 --- a/redash/query_runner/snowflake.py +++ b/redash/query_runner/snowflake.py @@ -5,6 +5,7 @@ except ImportError: enabled = False +from redash import __version__ from redash.query_runner import BaseQueryRunner, register from redash.query_runner import ( TYPE_STRING, @@ -129,6 +130,7 @@ def _get_connection(self): account=account, region=region, host=host, + application="Redash/{} (Snowflake)".format(__version__.split("-")[0]), ) return connection