Simplz.Grafana.Loki 7.8549.10

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

Simplz.Grafana.Loki

Add package to project

dotnet add package Simplz.Grafana.Loki

Add configuration

{
    "GranafaLokiOptions":
    {
        "BaseAddress": "BaseAddress",
        "Username": "Username",
        "APIKey": "APIKey"
    }
}

Inject dependancy

builder.Services.AddGranafaLokiService(builder.Configuration.GetRequiredSection("GranafaLokiOptions"));

Sample log retrieval

var rawLogs = await GranafaLokiService.GetLogsAsync("appName", DateTimeOffset.UtcNow.AddHours(-5));
var timestampedLogs = rawLogs.ConvertToLogItems();

Sample log retrieval with querybuilder

Please note that sequence of operations, excluding start/end, matters

GrafanaLokiQueryBuilder queryBuilder = new();

//Filter my label app having value "appName", mandatory
queryBuilder.SelectApp("appName");

//Set from time of logs to retrieve, mandatory
queryBuilder.AddStartTime(DateTimeOffset.UtcNow.AddHours(-5));

//Convert log to Json object
queryBuilder.ExpandAsJson();

//Filter by field level with value "error"
queryBuilder.FilterJsonByValue("level", "error");

//Filter by field source, containing string "Microsoft" essentially calls:
//queryBuilder.FilterJsonByRegex("source", "Microsoft.*");
queryBuilder.FilterJsonByValue("source", "Microsoft", exact: false);

var timestampedLogs = await GranafaLokiService.GetLogItemsAsync(queryBuilder);
Product 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 was computed.  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.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.

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
9.9140.10 107 1/9/2025
7.8580.11 508 6/29/2023
7.8560.8 188 6/9/2023
7.8549.10 176 5/29/2023
7.8549.7 207 5/29/2023
7.8547.7 189 5/27/2023
7.8546.19 187 5/26/2023
7.8546.18 186 5/26/2023
7.8546.17 177 5/26/2023