Dinocollab.LoggerProvider 1.0.6

This package has a SemVer 2.0.0 package version: 1.0.6+fix-intial-table.
dotnet add package Dinocollab.LoggerProvider --version 1.0.6
                    
NuGet\Install-Package Dinocollab.LoggerProvider -Version 1.0.6
                    
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="Dinocollab.LoggerProvider" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dinocollab.LoggerProvider" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="Dinocollab.LoggerProvider" />
                    
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 Dinocollab.LoggerProvider --version 1.0.6
                    
#r "nuget: Dinocollab.LoggerProvider, 1.0.6"
                    
#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 Dinocollab.LoggerProvider@1.0.6
                    
#: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=Dinocollab.LoggerProvider&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=Dinocollab.LoggerProvider&version=1.0.6
                    
Install as a Cake Tool

Dinocollab.LoggerProvider

NuGet

Dinocollab.LoggerProvider is a lightweight logging provider for .NET applications. It can forward logs to supported backends (for example, QuestDB). This README explains installation, package metadata required for the NuGet "Get" link, and provides a usage example.

Repository: https://github.com/dinolibraries/Dinocollab.LoggerProvider

The NuGet package page shows a "Get" button and project links based on package metadata in the project file. Make sure your *.csproj contains the following properties so the NuGet page links back to this repository:

<PropertyGroup>
  <PackageProjectUrl>https://github.com/dinolibraries/Dinocollab.LoggerProvider</PackageProjectUrl>
  <RepositoryUrl>https://github.com/dinolibraries/Dinocollab.LoggerProvider</RepositoryUrl>
  <RepositoryType>git</RepositoryType>
</PropertyGroup>

Note: PackageReadmeFile has been added to the library project so this README will be included in the NuGet package.

Installation

Install from NuGet with the dotnet CLI:

dotnet add package Dinocollab.LoggerProvider

Or add a PackageReference to your project file:

<ItemGroup>
  <PackageReference Include="Dinocollab.LoggerProvider" Version="*" />
</ItemGroup>

Usage

Register the QuestDB logger provider in Program.cs (example):

builder.Services.AddQuestDBLoggerProvider(option =>
{
    option.ConnectionString = "tcp::addr=localhost:9009;";
    //option.ConnectionString = "http::addr=localhost:9000;";
    option.ApiUrl = "http://localhost:9000";
    option.TableLogName = "berlintomek";
});

app.UseQuestDBLoggerProvider();

Notes:

  • ConnectionString may use tcp::addr=host:port; or http::addr=host:port; depending on transport.
  • ApiUrl is the HTTP endpoint (if using the HTTP API).
  • TableLogName is the destination table/stream name for logs.

See the Dinocollab.LoggerProvider/QuestDB folder for helper classes and configuration options.

Contributing

Contributions are welcome — please open issues or submit pull requests on GitHub.

License

See the LICENSE file in this repository for license information. If you'd like, I can add a license file.


Would you like me to commit these changes now?

*** End Patch

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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

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.6 51 1/12/2026
1.0.5 36 1/12/2026
1.0.4 44 1/9/2026
1.0.3 41 1/8/2026
1.0.2 45 1/8/2026
1.0.1 38 1/8/2026
1.0.0 95 1/8/2026