@@ -36,8 +36,8 @@ weight: 3
3636 * [ Built-in processors] ( #built-in-processors )
3737 + [ Simple processor] ( #simple-processor )
3838 + [ Batching processor] ( #batching-processor )
39- + [ Severity based processor ] ( #severity-based-processor )
40- + [ Trace based processor ] ( #trace-based-processor )
39+ + [ Severity filter ] ( #severity-filter )
40+ + [ Trace based filter ] ( #trace-based-filter )
4141- [ LogRecordExporter] ( #logrecordexporter )
4242 * [ LogRecordExporter operations] ( #logrecordexporter-operations )
4343 + [ Export] ( #export )
@@ -459,7 +459,7 @@ The standard OpenTelemetry SDK MUST implement both simple and batch processors,
459459as described below.
460460
461461** Status** : [ Development] ( ../document-status.md ) - The SDK SHOULD implement
462- severity based and trace based processors , as described below.
462+ the severity filter and trace based filter , as described below.
463463
464464Other common processing scenarios SHOULD be first considered
465465for implementation out-of-process
@@ -500,36 +500,36 @@ to make sure that they are not invoked concurrently.
500500* ` maxExportBatchSize ` - the maximum batch size of every export. It must be
501501 smaller or equal to ` maxQueueSize ` . The default value is ` 512 ` .
502502
503- #### Severity based processor
503+ #### Severity filter
504504
505505** Status** : [ Development] ( ../document-status.md )
506506
507- This processor filters log records by minimum severity level.
507+ This is a processor that filters log records by minimum severity level.
508508
509509** Required operations:**
510510
511511* [ ` Enabled ` ] ( #enabled-1 ) - MUST return ` false ` if the provided
512512 [ Severity Number] ( ./data-model.md#field-severitynumber ) is below the
513- configured ` minimumSeverity ` . Otherwise, MUST forward to the delegate's
513+ configured ` severity ` . Otherwise, MUST forward to the delegate's
514514 ` Enabled ` method if available and return ` true ` if not available.
515515* [ ` OnEmit ` ] ( #onemit ) - If the log record's severity is below the configured
516- ` minimumSeverity ` , MUST NOT forward it to the delegate. Otherwise, MUST forward the
516+ ` severity ` , MUST NOT forward it to the delegate. Otherwise, MUST forward the
517517 log record to the delegate.
518518* [ ` Shutdown ` ] ( #shutdown ) - MUST forward to the delegate's ` Shutdown ` method.
519519* [ ` ForceFlush ` ] ( #forceflush-1 ) - MUST forward to the delegate's ` ForceFlush ` method.
520520
521521** Configurable parameters:**
522522
523- * ` minimumSeverity ` - the minimum severity level required for passing the
523+ * ` severity ` - the minimum severity level required for passing the
524524 log record on to the delegate.
525525* ` delegate ` - the processor to delegate to for log records that are not
526526 filtered out.
527527
528- #### Trace based processor
528+ #### Trace based filter
529529
530530** Status** : [ Development] ( ../document-status.md )
531531
532- This processor filters log records by span sampling status.
532+ This is a processor that filters log records by span sampling status.
533533
534534** Required operations:**
535535
0 commit comments