-
public final class SignalFromDiskExporterEntrypoint to read and export previously cached signals.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classSignalFromDiskExporter.Companion
-
Method Summary
Modifier and Type Method Description final BooleanexportBatchOfSpans()A batch contains all the signals that arrived in one call to SpanDiskExporter. final BooleanexportBatchOfMetrics()A batch contains all the signals that arrived in one call to MetricDiskExporter. final BooleanexportBatchOfLogs()A batch contains all the signals that arrived in one call to LogRecordDiskExporter. final BooleanexportBatchOfEach()Convenience method that attempts to export all kinds of signals from disk. -
-
Method Detail
-
exportBatchOfSpans
@WorkerThread() final Boolean exportBatchOfSpans()
A batch contains all the signals that arrived in one call to SpanDiskExporter.export. So if that function is called 5 times, then there will be 5 batches in disk. This function reads and exports ONE batch every time is called.
-
exportBatchOfMetrics
@WorkerThread() final Boolean exportBatchOfMetrics()
A batch contains all the signals that arrived in one call to MetricDiskExporter.export. So if that function is called 5 times, then there will be 5 batches in disk. This function reads and exports ONE batch every time is called.
-
exportBatchOfLogs
@WorkerThread() final Boolean exportBatchOfLogs()
A batch contains all the signals that arrived in one call to LogRecordDiskExporter.export. So if that function is called 5 times, then there will be 5 batches in disk. This function reads and exports ONE batch every time is called.
-
exportBatchOfEach
@WorkerThread() final Boolean exportBatchOfEach()
Convenience method that attempts to export all kinds of signals from disk.
-
-
-
-