![]() |
VOOZH | about |
dotnet add package Mostlylucid.Ephemeral.Patterns.Telemetry --version 2.6.3
NuGet\Install-Package Mostlylucid.Ephemeral.Patterns.Telemetry -Version 2.6.3
<PackageReference Include="Mostlylucid.Ephemeral.Patterns.Telemetry" Version="2.6.3" />
<PackageVersion Include="Mostlylucid.Ephemeral.Patterns.Telemetry" Version="2.6.3" />Directory.Packages.props
<PackageReference Include="Mostlylucid.Ephemeral.Patterns.Telemetry" />Project file
paket add Mostlylucid.Ephemeral.Patterns.Telemetry --version 2.6.3
#r "nuget: Mostlylucid.Ephemeral.Patterns.Telemetry, 2.6.3"
#:package Mostlylucid.Ephemeral.Patterns.Telemetry@2.6.3
#addin nuget:?package=Mostlylucid.Ephemeral.Patterns.Telemetry&version=2.6.3Install as a Cake Addin
#tool nuget:?package=Mostlylucid.Ephemeral.Patterns.Telemetry&version=2.6.3Install as a Cake Tool
Async signal handler for telemetry integration with non-blocking I/O.
dotnet add package mostlylucid.ephemeral.patterns.telemetry
using Mostlylucid.Ephemeral.Patterns.Telemetry;
var telemetryClient = new MyTelemetryClient();
await using var handler = new TelemetrySignalHandler(telemetryClient);
// Wire up to coordinator signals
var options = new EphemeralOptions
{
OnSignal = evt => handler.OnSignal(evt)
};
// Signals are processed in background, never blocking the main work
new TelemetrySignalHandler(
// Required: telemetry client implementation
telemetry: telemetryClient
)
// Internal configuration:
// - maxConcurrency: 8 (parallel telemetry calls)
// - maxQueueSize: 5000 (bounded queue)
// Handle a signal (non-blocking, returns immediately)
bool accepted = handler.OnSignal(signalEvent);
// Check queue status
int queued = handler.QueuedCount;
long processed = handler.ProcessedCount;
long dropped = handler.DroppedCount;
// Dispose (flushes remaining signals)
await handler.DisposeAsync();
public interface ITelemetryClient
{
Task TrackEventAsync(string eventName, Dictionary<string, string> properties, CancellationToken ct);
Task TrackExceptionAsync(string exceptionType, Dictionary<string, string> properties, CancellationToken ct);
Task TrackMetricAsync(string metricName, double value, CancellationToken ct);
}
Signal arrives ─> OnSignal() ─> [Queue] ─> AsyncProcessor ─> ITelemetryClient
│ │
▼ ▼
Returns immediately 8 concurrent workers
(non-blocking) processing telemetry
Signal routing:
error.* signals → TrackExceptionAsyncperf.* signals → TrackMetricAsyncTrackEventAsyncpublic class AppInsightsTelemetryClient : ITelemetryClient
{
private readonly TelemetryClient _client;
public AppInsightsTelemetryClient(TelemetryClient client) => _client = client;
public Task TrackEventAsync(string eventName, Dictionary<string, string> properties, CancellationToken ct)
{
_client.TrackEvent(eventName, properties);
return Task.CompletedTask;
}
public Task TrackExceptionAsync(string exceptionType, Dictionary<string, string> properties, CancellationToken ct)
{
_client.TrackException(new Exception(exceptionType), properties);
return Task.CompletedTask;
}
public Task TrackMetricAsync(string metricName, double value, CancellationToken ct)
{
_client.TrackMetric(metricName, value);
return Task.CompletedTask;
}
}
// Usage
var telemetry = new AppInsightsTelemetryClient(telemetryClient);
await using var handler = new TelemetrySignalHandler(telemetry);
await using var coordinator = new EphemeralWorkCoordinator<Request>(
ProcessRequestAsync,
new EphemeralOptions { OnSignal = handler.OnSignal });
// Built-in in-memory client for testing
var telemetry = new InMemoryTelemetryClient();
await using var handler = new TelemetrySignalHandler(telemetry);
// Process some work that emits signals
await using var coordinator = new EphemeralWorkCoordinator<int>(
async (n, ct) =>
{
coordinator.Signal($"perf.processed:{n}");
if (n % 10 == 0) coordinator.Signal("error.sample");
},
new EphemeralOptions { OnSignal = handler.OnSignal });
for (int i = 0; i < 100; i++)
await coordinator.EnqueueAsync(i);
coordinator.Complete();
await coordinator.DrainAsync();
await handler.DisposeAsync();
// Verify telemetry
var events = telemetry.GetEvents();
var errors = events.Where(e => e.Type == TelemetryEventType.Exception);
var metrics = events.Where(e => e.Type == TelemetryEventType.Metric);
await using var handler = new TelemetrySignalHandler(telemetryClient);
// Monitor in background
Task.Run(async () =>
{
while (true)
{
Console.WriteLine($"Queued: {handler.QueuedCount}");
Console.WriteLine($"Processed: {handler.ProcessedCount}");
Console.WriteLine($"Dropped: {handler.DroppedCount}");
if (handler.DroppedCount > 0)
logger.LogWarning("Telemetry signals being dropped!");
await Task.Delay(5000);
}
});
| Package | Description |
|---|---|
| mostlylucid.ephemeral | Core library |
| mostlylucid.ephemeral.patterns.signallogwatcher | Signal log watcher |
| mostlylucid.ephemeral.patterns.signalinghttp | HTTP with signals |
| mostlylucid.ephemeral.complete | All in one DLL |
Unlicense (public domain)
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on Mostlylucid.Ephemeral.Patterns.Telemetry:
| Package | Downloads |
|---|---|
|
mostlylucid.ephemeral.complete
Meta-package that references all Mostlylucid.Ephemeral packages - bounded async execution with signals, atoms, and patterns. Install this single package to get everything. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.6.3 | 98 | 5/22/2026 |
| 2.6.2 | 101 | 5/22/2026 |
| 2.6.0 | 101 | 5/22/2026 |
| 2.5.1 | 97 | 5/22/2026 |
| 2.5.0 | 97 | 5/3/2026 |
| 2.4.0 | 105 | 4/17/2026 |
| 2.3.2 | 124 | 1/9/2026 |
| 2.3.1 | 130 | 1/9/2026 |
| 2.3.1-alpha0 | 118 | 1/9/2026 |
| 2.3.0 | 127 | 1/8/2026 |
| 2.3.0-alpha1 | 1,208 | 1/8/2026 |
| 2.1.0 | 130 | 1/8/2026 |
| 2.1.0-preview | 116 | 1/8/2026 |
| 2.0.1 | 126 | 1/8/2026 |
| 2.0.0 | 164 | 1/8/2026 |
| 2.0.0-alpha1 | 123 | 1/8/2026 |
| 1.7.1 | 441 | 12/11/2025 |
| 1.6.8 | 460 | 12/9/2025 |
| 1.6.7 | 452 | 12/9/2025 |
| 1.6.6 | 451 | 12/9/2025 |