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
[Option("useExporter",Default="console",HelpText="Options include otlp or console.",Required=false)]
86
-
publicstringUseExporter{get;set;}
86
+
publicstring?UseExporter{get;set;}
87
87
88
88
[Option('e',"endpoint",HelpText="Target to which the exporter is going to send metrics (default value depends on protocol).",Default=null)]
89
-
publicstringEndpoint{get;set;}
89
+
publicstring?Endpoint{get;set;}
90
90
91
91
[Option('p',"useGrpc",HelpText="Use gRPC or HTTP when using the OTLP exporter",Required=false,Default=true)]
92
92
publicboolUseGrpc{get;set;}
@@ -121,26 +121,26 @@ internal class OpenTracingShimOptions
121
121
internalclassOtlpOptions
122
122
{
123
123
[Option('e',"endpoint",HelpText="Target to which the exporter is going to send traces (default value depends on protocol).",Default=null)]
124
-
publicstringEndpoint{get;set;}
124
+
publicstring?Endpoint{get;set;}
125
125
126
126
[Option('p',"protocol",HelpText="Transport protocol used by exporter. Supported values: grpc and http/protobuf.",Default="grpc")]
127
-
publicstringProtocol{get;set;}
127
+
publicstring?Protocol{get;set;}
128
128
}
129
129
130
130
[Verb("logs",HelpText="Specify the options required to test Logs")]
131
131
internalclassLogsOptions
132
132
{
133
133
[Option("useExporter",Default="otlp",HelpText="Options include otlp or console.",Required=false)]
134
-
publicstringUseExporter{get;set;}
134
+
publicstring?UseExporter{get;set;}
135
135
136
136
[Option('e',"endpoint",HelpText="Target to which the OTLP exporter is going to send logs (default value depends on protocol).",Default=null)]
137
-
publicstringEndpoint{get;set;}
137
+
publicstring?Endpoint{get;set;}
138
138
139
139
[Option('p',"protocol",HelpText="Transport protocol used by OTLP exporter. Supported values: grpc and http/protobuf. Only applicable if Exporter is OTLP",Default="grpc")]
140
-
publicstringProtocol{get;set;}
140
+
publicstring?Protocol{get;set;}
141
141
142
142
[Option("processorType",Default="batch",HelpText="export processor type. Supported values: simple and batch",Required=false)]
143
-
publicstringProcessorType{get;set;}
143
+
publicstring?ProcessorType{get;set;}
144
144
145
145
[Option("scheduledDelay",Default=5000,HelpText="The delay interval in milliseconds between two consecutive exports.",Required=false)]
0 commit comments