Seq.Api 4.2.1

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

// Install Seq.Api as a Cake Tool
#tool nuget:?package=Seq.Api&version=4.2.1

Seq HTTP API Client Build status NuGet Pre Release Join the chat at https://gitter.im/datalust/seq

This library includes:

  • C# representations of the entities exposed by the Seq HTTP API
  • Helper classes for interacting with the API

It's useful for querying events and working with configuration data - everything you can do using the Seq web UI, you can do programmatically via the API.

If you want to write events to Seq, use one of the logging framework clients, such as Serilog.Sinks.Seq or NLog.Targets.Seq instead.

Getting started

Install from NuGet:

Install-Package Seq.Api

Create a SeqConnection with your server URL:

var connection = new SeqConnection("http://localhost:5341");

Navigate the "resource groups" exposed as properties of the connnection:

var installedApps = await connection.Apps.ListAsync();

To authenticate, the SeqConnection constructor accepts an apiKey parameter (make sure the API key permits user-level access) or, if you want to log in with personal credentials you can await connection.Users.Login(username, password).

For a more complete example, see the seq-tail app included in the source.

Creating entities

The Seq API provides a /template resource for each resource group that provides a new instance of the resource with defaults populated. The API client uses this pattern when creating new entities:

var signal = await connection.Signals.TemplateAsync();
signal.Title = "Signal 123";
await connection.Signals.AddAsync(signal);

See the signal-copy app for an example of this pattern in action.

Reading events

Seq internally limits the resources a query is allowed to consume. The query methods on SeqConnection.Events include a status with each result set - a Partial status indicates that further results must be retrieved.

The snippet below demonstrates paging through results to retrieve the complete set.

string lastReadEventId = null;

while(true)
{
  var resultSet = await connection.Events.InSignalAsync(
      filter: "Environment = 'Test'",
      render: true,
      afterId: lastReadEventId);
      
  foreach (var evt in resultSet.Events)
    Console.WriteLine(evt.RenderedMessage);

  if (resultSet.Statistics.Status != ResultSetStatus.Partial)
    break;
    
  lastReadEventId = resultSet.Statistics.LastReadEventId;
}

If the result set is expected to be small, ListAsync() will buffer results and return a complete list:

var resultSet = await connection.Events.ListAsync(
    filter: "Environment = 'Test'",
    render: true,
    count: 1000);
  
foreach (var evt in resultSet)
  Console.WriteLine(evt.RenderedMessage);

All methods that retrieve events require a count. The API client defaults this value to 30 if not specified.

Streaming events

Seq 3.4 provides live streaming of events matching a filter and/or set of signals.

var filter = "@Level = 'Error'";

using (var stream = await connection.Events.StreamAsync<JObject>(filter: filter))
using (stream.Select(jObject => LogEventReader.ReadFromJObject(jObject))
             .Subscribe(evt => Log.Write(evt)))
{
    await stream;
}

The Events.StreamAsync() method returns a hot IObservable<T> over a WebSocket. The observable will keep producing events until either it's disposed, or the server is shut down.

Seq streams the events in compact JSON format, which the Seq API client library can deserialize into JSON.NET JObjects for consumption.

Serilog.Formatting.Compact.Reader provides the LogEventReader class used above to turn these documents back into Serilog LogEvents. Having the events represented in Serilog’s object model means they can be passed back into a logging pipeline, as performed above using Log.Write().

Working with the basic client

The SeqApiClient class implements the low level interactions with the API's entities and links. It's one step up from System.Net.HttpClient - you may be able to use it in cases not supported by the high-level wrapper.

Create a SeqApiClient with your server URL:

var client = new SeqApiClient("http://localhost:5341");

Get the root resource and use it to retrieve one or more of the resource groups:

var root = await client.GetRootAsync();
var events = await client.GetAsync<ResourceGroup>(root, "EventsResources");

(Available resource groups, like Events, Users and so-on, can be seen in the root document's Links collection.)

Use the client to navigate links from entity to entity:

var matched = await client.List<EventEntity>(
  events,
  "Items",
  new Dictionary<string, object>{{"count", 10}, {"render", true}});

foreach (var match in matched)
  Console.WriteLine(matched.RenderedMessage);

Package versioning

This package does not follow the SemVer rule of major version increments for breaking changes. Instead, the package version tracks the Seq version it supports.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Seq.Api:

Package Downloads
Phoenix.Functionality.Logging.Extensions.Serilog.Seq

Containes helper functionality for using the Seq sink of Serilog.

Seq.App.Splunk

Description

InnovationNorway.FluentPulumi

Wrapper project for pulumi simplifying the creation of azure infrastructure for Innovation Norway

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Seq.Api:

Repository Stars
NethermindEth/nethermind
A robust execution client for Ethereum node operators.
datalust/seqcli
The Seq command-line client. Administer, log, ingest, search, from any OS.
Version Downloads Last updated
2024.2.0 1,358 3/25/2024
2024.2.0-dev-00232 49 4/2/2024
2024.2.0-dev-00228 72 3/24/2024
2024.1.0 8,199 1/24/2024
2024.1.0-dev-00223 67 1/24/2024
2023.4.0 52,540 8/30/2023
2023.4.0-dev-00213 101 8/30/2023
2023.3.0 48,773 7/7/2023
2023.3.0-dev-00208 104 7/7/2023
2023.2.0 16,702 5/31/2023
2023.2.0-dev-00204 104 5/31/2023
2023.1.2-dev-00212 98 8/30/2023
2023.1.2-dev-00201 2,048 3/8/2023
2023.1.0 95,713 1/20/2023
2023.1.0-dev-00197 134 1/20/2023
2022.1.1-dev-00196 134 1/16/2023
2022.1.1-dev-00191 325 5/16/2022
2022.1.0 142,812 3/15/2022
2022.1.0-dev-00186 141 3/15/2022
2022.1.0-dev-00184 161 2/24/2022
2021.4.0 55,051 12/14/2021
2021.4.0-dev-00177 170 12/13/2021
2021.4.0-dev-00175 180 12/13/2021
2021.3.1 59,952 10/25/2021
2021.3.1-dev-00172 260 10/22/2021
2021.3.0 2,281 10/12/2021
2021.3.0-dev-00167 328 8/26/2021
2021.2.1-dev-00162 494 7/13/2021
2021.2.0 73,332 3/17/2021
2021.2.0-dev-00158 210 3/17/2021
2021.1.0 5,362 2/5/2021
2021.1.0-dev-00155 226 2/5/2021
2020.5.0 45,715 12/24/2020
2020.5.0-dev-00151 285 12/24/2020
2020.4.0 18,391 11/12/2020
2020.4.0-dev-00147 306 11/12/2020
2020.3.0-dev-00164 214 8/25/2021
2020.1.1-dev-00145 350 9/1/2020
2020.1.1-dev-00139 349 8/31/2020
2020.1.1-dev-00135 367 6/23/2020
2020.1.0 70,609 6/23/2020
2020.1.0-dev-00132 443 5/15/2020
2020.1.0-dev-00130 348 5/5/2020
2020.1.0-dev-00129 360 4/22/2020
5.1.3-dev-00126 9,545 12/30/2019
5.1.2 41,854 12/9/2019
5.1.2-dev-00118 371 12/9/2019
5.1.2-dev-00116 393 12/4/2019
5.1.1 13,614 9/13/2019
5.1.1-dev-00112 402 9/13/2019
5.1.1-dev-00109 399 9/13/2019
5.1.1-dev-00106 375 9/12/2019
5.1.1-dev-00104 392 9/12/2019
5.1.1-dev-00101 396 9/12/2019
5.1.1-dev-00099 392 9/12/2019
5.1.0 59,908 3/21/2019
5.1.0-dev-00094 450 3/21/2019
5.0.0 7,607 11/5/2018
5.0.0-dev-00088 631 10/29/2018
5.0.0-dev-00086 617 10/18/2018
5.0.0-dev-00084 1,214 5/17/2018
5.0.0-dev-00082 914 4/21/2018
5.0.0-dev-00079 794 4/17/2018
4.2.3-dev-00076 855 2/19/2018
4.2.2 31,127 1/16/2018
4.2.2-dev-00072 857 1/16/2018
4.2.1 1,118 1/16/2018
4.2.1-dev-00069 948 1/16/2018
4.2.1-dev-00066 832 1/15/2018
4.2.1-dev-00064 835 1/15/2018
4.2.0 1,354 1/15/2018
4.2.0-dev-00062 916 1/15/2018
4.2.0-dev-00059 859 1/10/2018
4.2.0-dev-00057 859 12/7/2017
4.0.0 50,646 5/16/2017
4.0.0-dev-00047 855 4/28/2017
4.0.0-dev-00045 860 4/25/2017
4.0.0-dev-00042 842 4/16/2017
4.0.0-dev-00041 785 4/16/2017
3.4.3 23,938 2/7/2017
3.4.3-dev-00035 808 1/29/2017
3.4.3-dev-00033 793 1/27/2017
3.4.3-dev-00031 829 1/23/2017
3.4.2 1,974 12/14/2016
3.4.2-dev-00027 802 12/14/2016
3.4.1 3,063 11/29/2016
3.4.1-dev-00023 802 11/29/2016
3.4.1-dev-00020 808 11/18/2016
3.4.0 2,975 11/18/2016
3.4.0-dev-00017 824 11/18/2016
3.4.0-dev-00016 811 10/31/2016
3.4.0-dev-00014 818 10/28/2016
3.4.0-dev-00012 781 10/28/2016
3.4.0-dev-00010 813 10/28/2016
3.4.0-dev-00008 807 10/28/2016
3.4.0-dev-00006 819 10/27/2016
3.4.0-dev-00003 806 10/27/2016
3.3.1 1,733 8/29/2016
3.0.3 1,358 3/14/2016
2.1.38 1,485 1/17/2016
2.1.36 1,074 1/8/2016
2.1.33 1,129 12/21/2015
2.1.32 1,161 11/14/2015
2.1.31 1,070 11/14/2015
2.1.30 1,211 9/10/2015
2.1.29 1,134 9/10/2015
2.1.28 1,287 7/27/2015
2.0.27 1,177 7/27/2015
2.0.26 1,151 7/27/2015
2.0.25 1,149 7/27/2015
2.0.24 1,177 7/24/2015
2.0.23 1,198 7/24/2015
2.0.22 1,089 6/16/2015
2.0.21 1,076 6/10/2015
0.6.19 1,288 3/10/2015
0.6.18 1,108 1/20/2015
0.6.17 1,096 1/19/2015
0.6.16 1,407 12/16/2014
0.6.14 1,397 12/15/2014
0.6.13 1,339 12/15/2014
0.6.12 1,332 12/15/2014
0.6.11 1,351 12/15/2014
0.6.10 1,406 12/15/2014
0.6.9 1,407 12/13/2014
0.6.8 1,346 12/11/2014
0.1.0 1,458 12/11/2014