jeremytang-db commented on code in PR #3191: URL: https://github.com/apache/arrow-adbc/pull/3191#discussion_r2261675241
########## csharp/src/Drivers/Databricks/DatabricksConnection.cs: ########## @@ -76,15 +86,16 @@ internal class DatabricksConnection : SparkHttpConnection public DatabricksConnection(IReadOnlyDictionary<string, string> properties) : base(properties) { + _guid = Guid.NewGuid(); ValidateProperties(); + _databricksActivityListener = new DatabricksActivityListener(_telemetryHelper, this.AssemblyName, _guid); } public override IEnumerable<KeyValuePair<string, object?>>? GetActivitySourceTags(IReadOnlyDictionary<string, string> properties) { IEnumerable<KeyValuePair<string, object?>>? tags = base.GetActivitySourceTags(properties); - // TODO: Add any additional tags specific to Databricks connection - //tags ??= []; - //tags.Concat([new("key", "value")]); + tags ??= []; + tags.Concat([new("guid",_guid)]); Review Comment: updated -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org