CerbiStream 1.0.4
See the version list below for details.
dotnet add package CerbiStream --version 1.0.4
NuGet\Install-Package CerbiStream -Version 1.0.4
<PackageReference Include="CerbiStream" Version="1.0.4" />
<PackageVersion Include="CerbiStream" Version="1.0.4" />
<PackageReference Include="CerbiStream" />
paket add CerbiStream --version 1.0.4
#r "nuget: CerbiStream, 1.0.4"
#addin nuget:?package=CerbiStream&version=1.0.4
#tool nuget:?package=CerbiStream&version=1.0.4
CerbiStream Logging Library
CerbiStream is a next-generation logging solution built for structured logs, governance enforcement, and multi-destination routing. It ensures secure, consistent, and high-performance logging for cloud, on-prem, and hybrid environments.
π What's New?
- Governance Enforcement β Define and enforce structured logging standards across teams.
- Fluid API Setup β No complex configurations, just pass details during initialization.
- Plug-and-Play Cloud Detection β Auto-detects environment (AWS, Azure, GCP, On-Prem).
- Dev Mode β Prevents logs from being sent to external queues while debugging.
- Secure & NPI-Free Data Collection β Captures useful metadata without storing sensitive user data.
- Governance Analyzer β Uses Roslyn to validate logs at build time, improving performance.
π¦ Installation
Install CerbiStream from NuGet:
dotnet add package CerbiStream If you want Governance Enforcement, also install:
dotnet add package CerbiStream.GovernanceAnalyzer β‘ Quick Start (Minimal Setup) With CerbiStream, you can integrate logging in seconds.
using System; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using CerbiStream.Logging.Extensions;
class Program { static void Main() { var serviceProvider = new ServiceCollection() .AddLogging(builder β { builder.AddConsole(); builder.AddCerbiStream(options β { options.SetQueue("RabbitMQ", "localhost", "logs-queue"); options.EnableDevMode(); options.EnableGovernance(); }); }) .BuildServiceProvider();
var logger = serviceProvider.GetRequiredService<ILogger<Program>>();
logger.LogInformation("Application started successfully!");
logger.LogError("This is a test error log.");
logger.LogWarning("Potential issue detected.");
logger.LogCritical("Critical failure occurred!");
}
}
π οΈ Advanced Configuration
If you need more control, you can configure CerbiStream dynamically.
var config = new CerbiStreamOptions(); config.SetQueue("Kafka", "kafka://broker-url", "app-logs"); config.DisableDevMode(); config.EnableGovernance(); config.IncludeAdvancedMetadata();
var logger = new CerbiStreamLogger(config); π Supported Logging Destinations Queue Type Example Usage RabbitMQ QueueType = "RabbitMQ" Kafka QueueType = "Kafka" Azure Queue Storage QueueType = "AzureQueue" Azure Service Bus QueueType = "AzureServiceBus" AWS SQS QueueType = "AWS_SQS" AWS Kinesis QueueType = "AWS_Kinesis" Google Pub/Sub QueueType = "GooglePubSub" π Automatic Metadata (No Setup Required) Metadata Field Auto-Detected? Example Value CloudProvider β Yes AWS, Azure, GCP, On-Prem Region β Yes us-east-1, eu-west-2 Environment β Yes Development, Production ApplicationVersion β Yes v1.2.3 RequestId β Yes (Generated) abc123 TransactionType β Developer Sets REST, gRPC, Kafka TransactionStatus β Developer Sets Success, Failed π Governance & Structured Logging Governance allows organizations to enforce structured logging signatures.
β Enforce Required Fields (e.g., every log must include UserId, RequestId, etc.). β Allow Optional Fields (Developers can extend the logs dynamically). β Flexible Governance (Uses cerbi_governance.json for dynamic policy updates).
Example Governance JSON:
{ "LoggingProfiles": { "TransactionLog": { "RequiredFields": ["TransactionId", "UserId", "Amount"], "OptionalFields": ["DiscountCode"] }, "SecurityLog": { "RequiredFields": ["UserId", "IPAddress"], "OptionalFields": ["DeviceType"] } } }
If GovernanceEnabled = true, logs must match the configured structure.
β Governance Analyzer (Build-Time Validation)
CerbiStream GovernanceAnalyzer uses Roslyn to validate log compliance at build time. This ensures structured logs without runtime overhead.
π Debug Mode (Local Development) CerbiStream prevents queue logging while debugging. This is enabled by default (EnableDevMode = true).
var config = new CerbiStreamOptions(); config.EnableDevMode();
var logger = new CerbiStreamLogger(config); await logger.LogEventAsync("Debugging locally", LogLevel.Debug); π Meta Data Sharing (Opt-In) CerbiStream collects aggregate trends across applications for AI-powered insights. β No Personally Identifiable Information (PII) is stored.
If enabled, your logs contribute to global analytics (Error Trends, Cloud Performance, API Response Issues). If disabled, your logs remain 100% private.
var config = new CerbiStreamOptions(); config.IncludeAdvancedMetadata(); config.IncludeSecurityMetadata(); π₯ Why Use CerbiStream? β No External Dependencies β Just install & log. β Optimized Performance β Logs lightweight metadata automatically. β Security First β Encrypts fields, ensures NPI-free logging. β Global Insights β See patterns across industries (if opted-in). β Minimal Setup β Works out-of-the-box with simple constructor injection.
π License CerbiStream is open-source and available under the MIT License.
Product | Versions 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 was computed. 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. |
-
net8.0
- AWSSDK.Kinesis (>= 3.7.402.86)
- AWSSDK.SQS (>= 3.7.400.109)
- Azure.Core (>= 1.45.0)
- Azure.Messaging.ServiceBus (>= 7.18.4)
- Azure.Storage.Common (>= 12.23.0-beta.1)
- Azure.Storage.Queues (>= 12.22.0-beta.1)
- cerberus-logger-interface (>= 1.0.26)
- CerbiStream.GovernanceAnalyzer (>= 1.0.1)
- Google.Cloud.PubSub.V1 (>= 3.21.0)
- Google.Protobuf (>= 3.30.0)
- Microsoft.Extensions.Configuration (>= 9.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.0-preview.1.25080.5)
- Moq (>= 4.20.72)
- NUnit (>= 4.3.2)
- RabbitMQ.Client (>= 6.4.0)
- System.Configuration.ConfigurationManager (>= 10.0.0-preview.1.25080.5)
- System.Data.SqlClient (>= 4.9.0)
- System.Diagnostics.EventLog (>= 10.0.0-preview.1.25080.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.14 | 0 | 4/6/2025 |
1.0.13 | 93 | 3/28/2025 |
1.0.12 | 91 | 3/27/2025 |
1.0.11 | 424 | 3/26/2025 |
1.0.10 | 447 | 3/25/2025 |
1.0.9 | 121 | 3/23/2025 |
1.0.8 | 38 | 3/22/2025 |
1.0.7 | 102 | 3/21/2025 |
1.0.6 | 112 | 3/20/2025 |
1.0.5 | 114 | 3/20/2025 |
1.0.4 | 110 | 3/19/2025 |
1.0.3 | 110 | 3/19/2025 |
1.0.2 | 129 | 3/12/2025 |
1.0.1 | 119 | 3/12/2025 |