Skip to content

janpieterz/Warden.Integrations.Seq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Warden.Integrations.Seq

Seq integration for Warden

For information on how to setup your Warden please refer to the Warden documentation

Installation:

Available as a NuGet package.

Install-Package Warden.Integrations.Seq

Configuration:

The integration will push an event for each result in an iteration. The levels are Debug for valid checks and Error for invalid checks (this will be configurable in the future).

var wardenConfiguration = WardenConfiguration
  .Create();
  .IntegrateWithSeq("http://seq.example.com", "APIKEY")
  .SetHooks((hooks, integrations) =>
  {
      hooks.OnIterationCompletedAsync(
          iteration => integrations.Seq().PostIterationToSeqAsync(iteration));
      hooks.OnCompletedAsync(check => integrations.Seq().PostCheckToSeqAsync(check));
  })
  .Build();

About

Seq integration for Warden

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages