CerbiStream 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CerbiStream --version 1.0.2
                    
NuGet\Install-Package CerbiStream -Version 1.0.2
                    
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="CerbiStream" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CerbiStream" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="CerbiStream" />
                    
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 CerbiStream --version 1.0.2
                    
#r "nuget: CerbiStream, 1.0.2"
                    
#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.
#addin nuget:?package=CerbiStream&version=1.0.2
                    
Install CerbiStream as a Cake Addin
#tool nuget:?package=CerbiStream&version=1.0.2
                    
Install CerbiStream as a Cake Tool

CerbiStream Logging Library

CerbiStream provides a seamless, low-config logging solution that integrates directly into your app with minimal setup. It supports structured logs, queue-based log routing, governance enforcement, and optional metadata sharing to improve observability across cloud and on-prem environments.

What's New?

  • Fluid API Setup – No complex configurations, just pass details during initialization.
  • Governance Enforcement – Define and enforce structured logging standards across teams.
  • Plug-and-Play Cloud Detection – Auto-detects environment (AWS, Azure, GCP, On-Prem).
  • No External Dependencies Required – Handles queue setup internally.
  • 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.

Quick Start (Minimal Setup)

With the Fluid API, you only need to inject CerbiStream into your app.

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!");
    }
}

## Fluid API Structure
Method	                            Description	                            Example Usage
LogEventAsync(message, level)	    Logs a general event	                await logger.LogEventAsync("Something happened", LogLevel.Information);
SendApplicationLogAsync(...)	    Sends structured logs with metadata	    await logger.SendApplicationLogAsync("User logged in", "AuthController.Login", LogLevel.Info);
LogPerformanceAsync(event, time)	Tracks execution time of tasks	        await logger.LogPerformanceAsync("DB Query", 320);


## Advanced Configuration (Optional)
If you need more control, you can pass additional configurations.

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	            QueueType = "AzureQueue"
Azure ServiceBus	    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, Staging, Production
ApplicationVersion	    Yes	                    v1.2.3
RequestId	            Yes (Generated)	        abc123
TransactionType	        No (Developer Sets)	    REST, gRPC, Kafka
TransactionStatus	    No (Developer Sets)	    Success, Failed

## Governance & Structured Logging
Governance allows organizations to enforce structured logging signatures.
This ensures that logs contain consistent metadata for debugging, security, and AI-driven analytics.

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.

## 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 multiple 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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