@@ -36,8 +36,8 @@ weight: 3
36
36
* [ Built-in processors] ( #built-in-processors )
37
37
+ [ Simple processor] ( #simple-processor )
38
38
+ [ 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 )
41
41
- [ LogRecordExporter] ( #logrecordexporter )
42
42
* [ LogRecordExporter operations] ( #logrecordexporter-operations )
43
43
+ [ Export] ( #export )
@@ -459,7 +459,7 @@ The standard OpenTelemetry SDK MUST implement both simple and batch processors,
459
459
as described below.
460
460
461
461
** 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.
463
463
464
464
Other common processing scenarios SHOULD be first considered
465
465
for implementation out-of-process
@@ -500,36 +500,36 @@ to make sure that they are not invoked concurrently.
500
500
* ` maxExportBatchSize ` - the maximum batch size of every export. It must be
501
501
smaller or equal to ` maxQueueSize ` . The default value is ` 512 ` .
502
502
503
- #### Severity based processor
503
+ #### Severity filter
504
504
505
505
** Status** : [ Development] ( ../document-status.md )
506
506
507
- This processor filters log records by minimum severity level.
507
+ This is a processor that filters log records by minimum severity level.
508
508
509
509
** Required operations:**
510
510
511
511
* [ ` Enabled ` ] ( #enabled-1 ) - MUST return ` false ` if the provided
512
512
[ 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
514
514
` Enabled ` method if available and return ` true ` if not available.
515
515
* [ ` 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
517
517
log record to the delegate.
518
518
* [ ` Shutdown ` ] ( #shutdown ) - MUST forward to the delegate's ` Shutdown ` method.
519
519
* [ ` ForceFlush ` ] ( #forceflush-1 ) - MUST forward to the delegate's ` ForceFlush ` method.
520
520
521
521
** Configurable parameters:**
522
522
523
- * ` minimumSeverity ` - the minimum severity level required for passing the
523
+ * ` severity ` - the minimum severity level required for passing the
524
524
log record on to the delegate.
525
525
* ` delegate ` - the processor to delegate to for log records that are not
526
526
filtered out.
527
527
528
- #### Trace based processor
528
+ #### Trace based filter
529
529
530
530
** Status** : [ Development] ( ../document-status.md )
531
531
532
- This processor filters log records by span sampling status.
532
+ This is a processor that filters log records by span sampling status.
533
533
534
534
** Required operations:**
535
535
0 commit comments