This is an automated email from the ASF dual-hosted git repository.

curth pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new ca26dbd8b feat(csharp/src/Telemetry/Traces/Listeners): add parameter 
identifiers for adbcfile options (#4119)
ca26dbd8b is described below

commit ca26dbd8baa6753a79d2dd3a5adc28b89461753e
Author: Bruce Irschick <[email protected]>
AuthorDate: Thu Mar 19 11:30:34 2026 -0700

    feat(csharp/src/Telemetry/Traces/Listeners): add parameter identifiers for 
adbcfile options (#4119)
    
    Add parameter identifiers for adbcfile options.
    * location
    * max file size (in KB)
    * max number of files
---
 csharp/src/Telemetry/Traces/Listeners/ListenersOptions.cs | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/csharp/src/Telemetry/Traces/Listeners/ListenersOptions.cs 
b/csharp/src/Telemetry/Traces/Listeners/ListenersOptions.cs
index ad59d7499..2c6529fb6 100644
--- a/csharp/src/Telemetry/Traces/Listeners/ListenersOptions.cs
+++ b/csharp/src/Telemetry/Traces/Listeners/ListenersOptions.cs
@@ -31,5 +31,12 @@ namespace Apache.Arrow.Adbc.Telemetry.Traces.Listeners
             public const string None = "none";
             public const string AdbcFile = "adbcfile";
         }
+
+        public static class AdbcFile
+        {
+            public const string Location = 
"adbc.traces.exporter.adbcfile.location";
+            public const string MaxTraceFileSizeKb = 
"adbc.traces.exporter.adbcfile.maxtracesizekb";
+            public const string MaxTraceFiles = 
"adbc.traces.exporter.adbcfile.maxtracefiles";
+        }
     }
 }

Reply via email to