Seq.Api 4.2.0

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

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.  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. 
.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 (4)

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

Package Downloads
akilin.Utils

Package Description

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 (1)

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

Repository Stars
datalust/seqcli
The Seq command-line client. Administer, log, ingest, search, from any OS.
Version Downloads Last Updated
2025.2.2 3,204 8/11/2025
2025.2.2-dev-00263 126 8/11/2025
2025.2.1 155 8/11/2025
2025.2.0 6,043 6/17/2025
2025.2.0-dev-00260 122 8/11/2025
2025.2.0-dev-00255 152 6/17/2025
2025.2.0-dev-00252 276 6/10/2025
2025.1.0 7,364 5/9/2025
2025.1.0-dev-00249 164 5/9/2025
2025.1.0-dev-00247 308 2/17/2025
2024.3.0 191,554 5/1/2024
2024.3.0-dev-00246 115 2/14/2025
2024.3.0-dev-00241 112 4/29/2024
2024.3.0-dev-00239 319 4/22/2024
2024.3.0-dev-00237 131 4/22/2024
2024.3.0-dev-00235 127 4/22/2024
2024.2.0 10,025 3/25/2024
2024.2.0-dev-00232 117 4/2/2024
2024.2.0-dev-00228 117 3/24/2024
2024.1.0 30,444 1/24/2024
2024.1.0-dev-00223 110 1/24/2024
2023.4.0 79,745 8/30/2023
2023.4.0-dev-00213 174 8/30/2023
2023.3.0 75,959 7/7/2023
2023.3.0-dev-00208 190 7/7/2023
2023.2.0 41,486 5/31/2023
2023.2.0-dev-00204 197 5/31/2023
2023.1.2-dev-00212 175 8/30/2023
2023.1.2-dev-00201 2,191 3/8/2023
2023.1.0 117,791 1/20/2023
2023.1.0-dev-00197 230 1/20/2023
2022.1.1-dev-00196 339 1/16/2023
2022.1.1-dev-00191 2,035 5/16/2022
2022.1.0 162,028 3/15/2022
2022.1.0-dev-00186 251 3/15/2022
2022.1.0-dev-00184 260 2/24/2022
2021.4.0 78,258 12/14/2021
2021.4.0-dev-00177 289 12/13/2021
2021.4.0-dev-00175 286 12/13/2021
2021.3.1 62,783 10/25/2021
2021.3.1-dev-00172 374 10/22/2021
2021.3.0 4,029 10/12/2021
2021.3.0-dev-00167 425 8/26/2021
2021.2.1-dev-00162 621 7/13/2021
2021.2.0 80,139 3/17/2021
2021.2.0-dev-00158 341 3/17/2021
2021.1.0 5,905 2/5/2021
2021.1.0-dev-00155 356 2/5/2021
2020.5.0 45,885 12/24/2020
2020.5.0-dev-00151 438 12/24/2020
2020.4.0 18,682 11/12/2020
2020.4.0-dev-00147 420 11/12/2020
2020.3.0-dev-00164 311 8/25/2021
2020.1.1-dev-00145 483 9/1/2020
2020.1.1-dev-00139 458 8/31/2020
2020.1.1-dev-00135 481 6/23/2020
2020.1.0 85,946 6/23/2020
2020.1.0-dev-00132 618 5/15/2020
2020.1.0-dev-00130 472 5/5/2020
2020.1.0-dev-00129 488 4/22/2020
5.1.3-dev-00126 12,521 12/30/2019
5.1.2 44,539 12/9/2019
5.1.2-dev-00118 497 12/9/2019
5.1.2-dev-00116 522 12/4/2019
5.1.1 15,762 9/13/2019
5.1.1-dev-00112 530 9/13/2019
5.1.1-dev-00109 517 9/13/2019
5.1.1-dev-00106 509 9/12/2019
5.1.1-dev-00104 521 9/12/2019
5.1.1-dev-00101 531 9/12/2019
5.1.1-dev-00099 537 9/12/2019
5.1.0 68,894 3/21/2019
5.1.0-dev-00094 604 3/21/2019
5.0.0 8,546 11/5/2018
5.0.0-dev-00088 788 10/29/2018
5.0.0-dev-00086 776 10/18/2018
5.0.0-dev-00084 1,593 5/17/2018
5.0.0-dev-00082 1,300 4/21/2018
5.0.0-dev-00079 1,168 4/17/2018
4.2.3-dev-00076 1,228 2/19/2018
4.2.2 40,369 1/16/2018
4.2.2-dev-00072 1,247 1/16/2018
4.2.1 1,523 1/16/2018
4.2.1-dev-00069 1,330 1/16/2018
4.2.1-dev-00066 1,226 1/15/2018
4.2.1-dev-00064 1,215 1/15/2018
4.2.0 1,914 1/15/2018
4.2.0-dev-00062 1,304 1/15/2018
4.2.0-dev-00059 1,276 1/10/2018
4.2.0-dev-00057 1,273 12/7/2017
4.0.0 51,707 5/16/2017
4.0.0-dev-00047 1,121 4/28/2017
4.0.0-dev-00045 1,145 4/25/2017
4.0.0-dev-00042 1,113 4/16/2017
4.0.0-dev-00041 1,055 4/16/2017
3.4.3 27,037 2/7/2017
3.4.3-dev-00035 1,077 1/29/2017
3.4.3-dev-00033 1,080 1/27/2017
3.4.3-dev-00031 1,110 1/23/2017
3.4.2 2,830 12/14/2016
3.4.2-dev-00027 1,070 12/14/2016
3.4.1 3,346 11/29/2016
3.4.1-dev-00023 1,076 11/29/2016
3.4.1-dev-00020 1,077 11/18/2016
3.4.0 3,267 11/18/2016
3.4.0-dev-00017 1,092 11/18/2016
3.4.0-dev-00016 1,084 10/31/2016
3.4.0-dev-00014 1,084 10/28/2016
3.4.0-dev-00012 1,062 10/28/2016
3.4.0-dev-00010 1,074 10/28/2016
3.4.0-dev-00008 1,080 10/28/2016
3.4.0-dev-00006 1,098 10/27/2016
3.4.0-dev-00003 1,078 10/27/2016
3.3.1 2,091 8/29/2016
3.0.3 1,665 3/14/2016
2.1.38 1,769 1/17/2016
2.1.36 1,367 1/8/2016
2.1.33 1,439 12/21/2015
2.1.32 1,452 11/14/2015
2.1.31 1,361 11/14/2015
2.1.30 1,552 9/10/2015
2.1.29 1,431 9/10/2015
2.1.28 1,585 7/27/2015
2.0.27 1,512 7/27/2015
2.0.26 1,446 7/27/2015
2.0.25 1,430 7/27/2015
2.0.24 1,477 7/24/2015
2.0.23 1,500 7/24/2015
2.0.22 1,381 6/16/2015
2.0.21 1,371 6/10/2015
0.6.19 1,587 3/10/2015
0.6.18 1,409 1/20/2015
0.6.17 1,393 1/19/2015
0.6.16 1,708 12/16/2014
0.6.14 1,692 12/15/2014
0.6.13 1,644 12/15/2014
0.6.12 1,625 12/15/2014
0.6.11 1,646 12/15/2014
0.6.10 1,702 12/15/2014
0.6.9 1,704 12/13/2014
0.6.8 1,654 12/11/2014
0.1.0 1,988 12/11/2014