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
Copy file name to clipboardExpand all lines: examples/Console/Program.cs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -163,6 +163,12 @@ internal class LogsOptions
163
163
164
164
[Option('p',"protocol",HelpText="Transport protocol used by OTLP exporter. Supported values: grpc and http/protobuf. Only applicable if Exporter is OTLP",Default="grpc")]
165
165
publicstringProtocol{get;set;}
166
+
167
+
[Option("processorType",Default="batch",HelpText="export processor type. Supported values: simple and batch",Required=false)]
168
+
publicstringProcessorType{get;set;}
169
+
170
+
[Option("scheduledDelay",Default=5000,HelpText="The delay interval in milliseconds between two consecutive exports.",Required=false)]
171
+
publicintScheduledDelayInMilliseconds{get;set;}
166
172
}
167
173
168
174
[Verb("inmemory",HelpText="Specify the options required to test InMemory Exporter")]
The following environment variables can be used to override the default
129
170
values of the `PeriodicExportingMetricReaderOptions`
130
171
(following the [OpenTelemetry specification](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.12.0/specification/sdk-environment-variables.md#periodic-exporting-metricreader).
0 commit comments