Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ release.

### Logs

- Define BatchLogRecordProcessor default configuration values.
([#3002](https://github.com/open-telemetry/opentelemetry-specification/pull/3002))

### Resource

### Semantic Conventions
Expand Down
8 changes: 4 additions & 4 deletions specification/logs/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,13 +292,13 @@ representations to the configured `LogRecordExporter`.

* `exporter` - the exporter where the `LogRecords` are pushed.
* `maxQueueSize` - the maximum queue size. After the size is reached logs are
dropped. The default value is TODO.
dropped. The default value is `2048`.
* `scheduledDelayMillis` - the delay interval in milliseconds between two
consecutive exports. The default value is TODO.
consecutive exports. The default value is `1000`.
* `exportTimeoutMillis` - how long the export can run before it is cancelled.
The default value is TODO.
The default value is `30000`.
* `maxExportBatchSize` - the maximum batch size of every export. It must be
smaller or equal to `maxQueueSize`. The default value is TODO.
smaller or equal to `maxQueueSize`. The default value is `512`.

## LogRecordExporter

Expand Down