OutWit.Shared.Logging.Providers
1.0.0
dotnet add package OutWit.Shared.Logging.Providers --version 1.0.0
NuGet\Install-Package OutWit.Shared.Logging.Providers -Version 1.0.0
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="OutWit.Shared.Logging.Providers" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OutWit.Shared.Logging.Providers" Version="1.0.0" />
<PackageReference Include="OutWit.Shared.Logging.Providers" />
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 OutWit.Shared.Logging.Providers --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OutWit.Shared.Logging.Providers, 1.0.0"
#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 OutWit.Shared.Logging.Providers@1.0.0
#: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=OutWit.Shared.Logging.Providers&version=1.0.0
#tool nuget:?package=OutWit.Shared.Logging.Providers&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OutWit.Shared.Logging.Providers
Plugin contract for OutWit log query providers. Defines
ILogProviderPlugin — a thin marker over
IWitPlugin
that lets a host scan a @Logging/ folder for log-backend implementations
without coupling to any vendor SDK.
The selected plugin registers an
ILogQueryProvider
in DI; the host (admin UI, alerts pipeline, etc.) queries logs through the
neutral provider — same shape regardless of NewRelic / Loki / local files
underneath.
Wiring (host side)
var loader = new WitPluginLoader<ILogProviderPlugin>(
Path.Combine(AppContext.BaseDirectory, "@Logging"),
useIsolatedContexts: false);
loader.Load();
var active = loader.FirstOrDefault(p => p.Key.Equals("NewRelic", StringComparison.OrdinalIgnoreCase))
?? throw new InvalidOperationException("Logging:ProviderKey not found");
// Optionally publish host-known log path for file-scanning plugins:
services.AddSingleton(new HostLoggingInfo { LogsPath = "/app/logs", FilePattern = "log-*.json" });
active.Initialize(services);
// Now services has ILogQueryProvider — query through it:
var provider = services.BuildServiceProvider().GetRequiredService<ILogQueryProvider>();
Wiring (plugin side)
[WitPluginManifest("NewRelic Log Provider", Version = "1.0.0")]
public sealed class NewRelicLogProviderPlugin : WitPluginBase, ILogProviderPlugin
{
public string Key => "NewRelic";
public override void Initialize(IServiceCollection services)
{
var options = ReadOptions();
services.AddSingleton(options);
services.AddHttpClient<NewRelicHttpClient>();
services.AddSingleton<ILogQueryProvider, NewRelicLogQueryProvider>();
}
}
License
Apache 2.0 — see LICENSE.txt.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. 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.
-
net10.0
- OutWit.Common.Logging.Query (>= 1.0.0)
- OutWit.Common.Plugins.Abstractions (>= 1.1.2)
-
net6.0
- OutWit.Common.Logging.Query (>= 1.0.0)
- OutWit.Common.Plugins.Abstractions (>= 1.1.2)
-
net7.0
- OutWit.Common.Logging.Query (>= 1.0.0)
- OutWit.Common.Plugins.Abstractions (>= 1.1.2)
-
net8.0
- OutWit.Common.Logging.Query (>= 1.0.0)
- OutWit.Common.Plugins.Abstractions (>= 1.1.2)
-
net9.0
- OutWit.Common.Logging.Query (>= 1.0.0)
- OutWit.Common.Plugins.Abstractions (>= 1.1.2)
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.0 | 109 | 5/13/2026 |