Skip to content

Commit

Permalink
fix(exporter-logs-otlp-grpc): typo
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Kuba <[email protected]>
  • Loading branch information
llc1123 and martinkuba authored Apr 25, 2023
1 parent 1a2ab0f commit 36b0c32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experimental/packages/exporter-logs-otlp-grpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ const collectorOptions = {
url: 'http://<collector-hostname>:<port>',
};

const loggerExpoter = new OTLPLogsExporter(collectorOptions);
const loggerExporter = new OTLPLogsExporter(collectorOptions);
const loggerProvider = new LoggerProvider();

loggerProvider.addLogRecordProcessor(
new BatchLogRecordProcessor(loggerExpoter)
new BatchLogRecordProcessor(loggerExporter)
);

['SIGINT', 'SIGTERM'].forEach(signal => {
Expand Down

0 comments on commit 36b0c32

Please sign in to comment.