Logdash 0.0.5
dotnet add package Logdash --version 0.0.5
NuGet\Install-Package Logdash -Version 0.0.5
<PackageReference Include="Logdash" Version="0.0.5" />
<PackageVersion Include="Logdash" Version="0.0.5" />
<PackageReference Include="Logdash" />
paket add Logdash --version 0.0.5
#r "nuget: Logdash, 0.0.5"
#:package Logdash@0.0.5
#addin nuget:?package=Logdash&version=0.0.5
#tool nuget:?package=Logdash&version=0.0.5
logdash - .NET SDK
Logdash is a zero-config observability platform. This package serves an javascript interface to use it.
Pre-requisites
Setup your free project in less than 2 minutes at logdash.io
Installation
dotnet add package Logdash
Setup
There are 2 ways to register Logdash depending on use-case. The most common one is for AspNetCore using it's Dependency Injection. You can consult Example programs attached to this repo, or continue reading for quick recap.
Setup - AspNetCore
using Logdash;
using Logdash.Models;
builder.Services.AddLogdash(new InitializationParams("INSERT_API_KEY"));
Now you can receive your Logdash in Controllers or Services via DI:
public class InfoService(ILogdashLogger logdash, ILogdashMetrics metrics)
{
/// ...
}
Setup - Without AspNetCore DI
using Logdash;
using Logdash.Models;
var builder = new LogdashBuilder();
var (logdash, metrics) = builder.WithHttpClient(new HttpClient())
.WithInitializationParams(new InitializationParams("INSERT_API_KEY"))
.Build();
Logging and Metrics
After you're done with the setup, you can start logging or using metrics using Logdash
Logging
logdash.Debug("This is a debug message");
logdash.Error("This is an error message");
logdash.Info("This is info message");
logdash.Verbose("This is verbose message");
logdash.Http("This is http message");
logdash.Silly("This is silly message");
logdash.Warn("This is warn message");
logdash.Info("Hello", "From", "LogDash");
Metrics
metrics.Set("key", 2);
metrics.Mutate("key", 3);
Configuration
| Parameter | Required | Default | Description |
|---|---|---|---|
apiKey |
no | - | Api key used to authorize against logdash servers. If you don't provide one, logs will be logged into local console only |
host |
no | - | Custom API host, useful with self-hosted instances |
verbose |
no | - | Useful for debugging purposes |
License
This project is licensed under the MIT License.
Contributing
Contributions are welcome! Feel free to open issues or submit pull requests.
Support
If you encounter any issues, please open an issue on GitHub or let us know at contact@logdash.io.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 was computed. 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. |
-
net9.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.4.25258.110)
- Microsoft.Extensions.Http (>= 10.0.0-preview.4.25258.110)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.