Skip to content

Commit

Permalink
Removed HashMap from logRecordExporterExport
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlauer1 committed Jul 15, 2024
1 parent 731a7e0 commit e6fa1b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/OpenTelemetry/Internal/Logs/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ import OpenTelemetry.Resource (MaterializedResources)
The goal of the interface is to minimize burden of implementation for protocol-dependent telemetry exporters. The protocol exporter is expected to be primarily a simple telemetry data encoder and transmitter.
-}
data LogRecordExporter body = LogRecordExporter
{ logRecordExporterExport :: HashMap InstrumentationLibrary (Vector ReadableLogRecord) -> IO ExportResult
data LogRecordExporter = LogRecordExporter
{ logRecordExporterExport :: Vector ReadableLogRecord -> IO ExportResult
-- ^ Exports a batch of ReadableLogRecords. Protocol exporters that will implement this function are typically expected to serialize
-- and transmit the data to the destination.
--
Expand Down

0 comments on commit e6fa1b9

Please sign in to comment.