Simplz.Grafana.Loki 7.8560.8

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

// Install Simplz.Grafana.Loki as a Cake Tool
#tool nuget:?package=Simplz.Grafana.Loki&version=7.8560.8

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. 
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
7.8580.11 174 6/29/2023
7.8560.8 126 6/9/2023
7.8549.10 105 5/29/2023
7.8549.7 141 5/29/2023
7.8547.7 125 5/27/2023
7.8546.19 124 5/26/2023
7.8546.18 122 5/26/2023
7.8546.17 109 5/26/2023