We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d00c291 commit 9859eafCopy full SHA for 9859eaf
sdk/logs/src/main/java/io/opentelemetry/sdk/logs/export/BatchLogRecordProcessor.java
@@ -203,8 +203,7 @@ private Worker(
203
meter
204
.counterBuilder("logsExportFailure")
205
.setUnit("1")
206
- .setDescription(
207
- "Logs export failure in BatchLogRecordProcessor.")
+ .setDescription("Logs export failure in BatchLogRecordProcessor.")
208
.build();
209
droppedAttrs =
210
Attributes.of(
@@ -219,9 +218,7 @@ private Worker(
219
218
LOG_RECORD_PROCESSOR_DROPPED_LABEL,
220
false);
221
exportFailureAttrs =
222
- Attributes.of(
223
- LOG_RECORD_PROCESSOR_TYPE_LABEL,
224
- LOG_RECORD_PROCESSOR_TYPE_VALUE);
+ Attributes.of(LOG_RECORD_PROCESSOR_TYPE_LABEL, LOG_RECORD_PROCESSOR_TYPE_VALUE);
225
226
this.batch = new ArrayList<>(this.maxExportBatchSize);
227
}
0 commit comments