Seq.Api 4.0.0

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

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

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 net45 is compatible.  net451 was computed.  net452 was computed.  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 (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
2024.3.0 31,659 5/1/2024
2024.3.0-dev-00241 83 4/29/2024
2024.3.0-dev-00239 286 4/22/2024
2024.3.0-dev-00237 101 4/22/2024
2024.3.0-dev-00235 96 4/22/2024
2024.2.0 6,664 3/25/2024
2024.2.0-dev-00232 91 4/2/2024
2024.2.0-dev-00228 90 3/24/2024
2024.1.0 17,184 1/24/2024
2024.1.0-dev-00223 86 1/24/2024
2023.4.0 68,947 8/30/2023
2023.4.0-dev-00213 124 8/30/2023
2023.3.0 61,134 7/7/2023
2023.3.0-dev-00208 124 7/7/2023
2023.2.0 26,054 5/31/2023
2023.2.0-dev-00204 123 5/31/2023
2023.1.2-dev-00212 121 8/30/2023
2023.1.2-dev-00201 2,125 3/8/2023
2023.1.0 106,449 1/20/2023
2023.1.0-dev-00197 158 1/20/2023
2022.1.1-dev-00196 165 1/16/2023
2022.1.1-dev-00191 349 5/16/2022
2022.1.0 150,105 3/15/2022
2022.1.0-dev-00186 161 3/15/2022
2022.1.0-dev-00184 169 2/24/2022
2021.4.0 60,497 12/14/2021
2021.4.0-dev-00177 190 12/13/2021
2021.4.0-dev-00175 198 12/13/2021
2021.3.1 60,507 10/25/2021
2021.3.1-dev-00172 275 10/22/2021
2021.3.0 2,921 10/12/2021
2021.3.0-dev-00167 345 8/26/2021
2021.2.1-dev-00162 522 7/13/2021
2021.2.0 76,913 3/17/2021
2021.2.0-dev-00158 242 3/17/2021
2021.1.0 5,568 2/5/2021
2021.1.0-dev-00155 264 2/5/2021
2020.5.0 45,738 12/24/2020
2020.5.0-dev-00151 336 12/24/2020
2020.4.0 18,446 11/12/2020
2020.4.0-dev-00147 321 11/12/2020
2020.3.0-dev-00164 218 8/25/2021
2020.1.1-dev-00145 376 9/1/2020
2020.1.1-dev-00139 363 8/31/2020
2020.1.1-dev-00135 380 6/23/2020
2020.1.0 75,128 6/23/2020
2020.1.0-dev-00132 500 5/15/2020
2020.1.0-dev-00130 370 5/5/2020
2020.1.0-dev-00129 373 4/22/2020
5.1.3-dev-00126 11,107 12/30/2019
5.1.2 42,826 12/9/2019
5.1.2-dev-00118 389 12/9/2019
5.1.2-dev-00116 415 12/4/2019
5.1.1 14,873 9/13/2019
5.1.1-dev-00112 415 9/13/2019
5.1.1-dev-00109 403 9/13/2019
5.1.1-dev-00106 390 9/12/2019
5.1.1-dev-00104 413 9/12/2019
5.1.1-dev-00101 417 9/12/2019
5.1.1-dev-00099 409 9/12/2019
5.1.0 62,412 3/21/2019
5.1.0-dev-00094 463 3/21/2019
5.0.0 7,793 11/5/2018
5.0.0-dev-00088 654 10/29/2018
5.0.0-dev-00086 635 10/18/2018
5.0.0-dev-00084 1,224 5/17/2018
5.0.0-dev-00082 929 4/21/2018
5.0.0-dev-00079 809 4/17/2018
4.2.3-dev-00076 874 2/19/2018
4.2.2 33,543 1/16/2018
4.2.2-dev-00072 880 1/16/2018
4.2.1 1,147 1/16/2018
4.2.1-dev-00069 967 1/16/2018
4.2.1-dev-00066 846 1/15/2018
4.2.1-dev-00064 852 1/15/2018
4.2.0 1,390 1/15/2018
4.2.0-dev-00062 931 1/15/2018
4.2.0-dev-00059 903 1/10/2018
4.2.0-dev-00057 900 12/7/2017
4.0.0 51,048 5/16/2017
4.0.0-dev-00047 869 4/28/2017
4.0.0-dev-00045 888 4/25/2017
4.0.0-dev-00042 869 4/16/2017
4.0.0-dev-00041 807 4/16/2017
3.4.3 25,307 2/7/2017
3.4.3-dev-00035 824 1/29/2017
3.4.3-dev-00033 828 1/27/2017
3.4.3-dev-00031 849 1/23/2017
3.4.2 2,066 12/14/2016
3.4.2-dev-00027 821 12/14/2016
3.4.1 3,089 11/29/2016
3.4.1-dev-00023 816 11/29/2016
3.4.1-dev-00020 831 11/18/2016
3.4.0 2,995 11/18/2016
3.4.0-dev-00017 838 11/18/2016
3.4.0-dev-00016 825 10/31/2016
3.4.0-dev-00014 839 10/28/2016
3.4.0-dev-00012 796 10/28/2016
3.4.0-dev-00010 828 10/28/2016
3.4.0-dev-00008 825 10/28/2016
3.4.0-dev-00006 845 10/27/2016
3.4.0-dev-00003 822 10/27/2016
3.3.1 1,796 8/29/2016
3.0.3 1,384 3/14/2016
2.1.38 1,511 1/17/2016
2.1.36 1,102 1/8/2016
2.1.33 1,173 12/21/2015
2.1.32 1,176 11/14/2015
2.1.31 1,095 11/14/2015
2.1.30 1,281 9/10/2015
2.1.29 1,170 9/10/2015
2.1.28 1,318 7/27/2015
2.0.27 1,243 7/27/2015
2.0.26 1,178 7/27/2015
2.0.25 1,164 7/27/2015
2.0.24 1,207 7/24/2015
2.0.23 1,227 7/24/2015
2.0.22 1,112 6/16/2015
2.0.21 1,101 6/10/2015
0.6.19 1,313 3/10/2015
0.6.18 1,132 1/20/2015
0.6.17 1,120 1/19/2015
0.6.16 1,433 12/16/2014
0.6.14 1,423 12/15/2014
0.6.13 1,363 12/15/2014
0.6.12 1,357 12/15/2014
0.6.11 1,376 12/15/2014
0.6.10 1,431 12/15/2014
0.6.9 1,435 12/13/2014
0.6.8 1,381 12/11/2014
0.1.0 1,509 12/11/2014