MMP.Herald.Sinks.Otlp 0.2.1

dotnet add package MMP.Herald.Sinks.Otlp --version 0.2.1
                    
NuGet\Install-Package MMP.Herald.Sinks.Otlp -Version 0.2.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MMP.Herald.Sinks.Otlp" Version="0.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MMP.Herald.Sinks.Otlp" Version="0.2.1" />
                    
Directory.Packages.props
<PackageReference Include="MMP.Herald.Sinks.Otlp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MMP.Herald.Sinks.Otlp --version 0.2.1
                    
#r "nuget: MMP.Herald.Sinks.Otlp, 0.2.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MMP.Herald.Sinks.Otlp@0.2.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MMP.Herald.Sinks.Otlp&version=0.2.1
                    
Install as a Cake Addin
#tool nuget:?package=MMP.Herald.Sinks.Otlp&version=0.2.1
                    
Install as a Cake Tool

Herald.Sinks.Otlp

Three sinks for the OpenTelemetry Logs Protocol that share serialization infrastructure: OtlpJsonLogSink posts JSON to an OTLP collector, OtlpProtobufLogSink posts binary protobuf to the same endpoint, and ProtobufFileLogSink writes length-delimited protobuf records to a local .pb file for offline ingestion. The hand-rolled protobuf writer keeps the package AOT-clean — no generated message classes, no reflection paths the trim analyzer has to defeat.

Part of Herald — high-performance structured logging for .NET 8, 9, and 10.

Install

dotnet add package Herald.Sinks.Otlp

The sink auto-registers into LogSinkProviderRegistry.Default via a [ModuleInitializer] on assembly load. No manual RegisterAll(...) or With*SinkProviders() call is required — dotnet add package is the whole workflow.

Sink kind: otlp_json | otlp_protobuf | protobuf_file (the identifier the Dashboard form and JSON config use to reference this sink).

Capabilities

  • Three sinks in one package — pick network (JSON or protobuf) or file
  • Hand-rolled protobuf writer — AOT-clean, no generated IMessage types
  • OTLP semantic conventions (severityNumber, severityText, body, attributes, resource, traceId, spanId)
  • Batched delivery via IBatchedLogSink for the network sinks
  • Length-delimited protobuf framing for the file sink (readable by streaming readers)
  • Rolling-by-size for the file sink (max file size, automatic sequential rollover)
  • Hex-nibble trace/span id parsing with no exception path (perf-aware)

Limitations

  • No gRPC transport — HTTP/1.1 only. gRPC-OTLP is a future enhancement.
  • Resource attributes configurable at construction only
  • No compression on the request body

Tier & runtime

  • Edition: Community — works on the free Apache 2.0 Herald.Core. No license key required.
  • AOT-compatible: yes
  • Targets: .NET 8 / 9 / 10
  • Thread safety: Network sinks thread-safe via shared HttpClient. File sink serializes writes under a private lock so single-writer and concurrent-writer workloads both behave.

Vendor

OpenTelemetry — https://opentelemetry.io/docs/specs/otlp/

Configuration

Per-sink config form lives in configuration*.mmpform at the package root and inside the assembly as an embedded resource. The Herald Dashboard renders it at runtime; JSON config follows the same shape. See CAPABILITY.yaml shipped at the package root for the full manifest (schema reference: CAPABILITY-SCHEMA.md).

License

Apache 2.0. Copyright (c) 2026 MMPWorks LLC. See LICENSE shipped at the package root.


Generated from CAPABILITY.yaml. Re-run Modules/Herald.Sinks/tools/generate-readmes.cjs after manifest edits to refresh.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on MMP.Herald.Sinks.Otlp:

Package Downloads
MMP.Herald.Business

Herald observability metapackage for business and enterprise deployments. Pulls in every Herald.Sinks destination — HTTP, TCP, UDP, every Enterprise HTTP sink (Seq, Splunk, Honeycomb, Datadog, Loki, SignalFx, Sentry, PagerDuty), community transports (Elasticsearch, Slack, GenericWebhook), and the OTLP trio. Depend on this one package and pick destinations at registration time.

MMP.Herald.Game.Pro

Herald observability metapackage tuned for paid-tier games. Pulls in the network transports (HttpJson / TcpJsonLine / UdpJsonLine), the Enterprise HTTP observability sinks (Seq, Splunk, Honeycomb, Datadog, Loki, SignalFx), Sentry for crash tracking, the generic-webhook sink, and the OTLP trio. PagerDuty, Elasticsearch, and Slack are deliberately excluded — those are business/on-call surfaces rather than game-side.

MMP.Herald.Sinks.OtlpGrpc

Herald sink for OTLP/gRPC log export. Sends ExportLogsServiceRequest payloads to an OpenTelemetry collector over HTTP/2 + gRPC. Reuses the hand-rolled OtlpProtobufLogSerializer from Herald.Sinks.Otlp so the package stays AOT-clean — no proto codegen, no generated message types.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.1 132 5/30/2026
0.2.0 147 5/26/2026
0.2.0-alpha.3 82 5/13/2026
0.2.0-alpha.2 57 5/13/2026
0.2.0-alpha.1 66 5/13/2026