Logary.Targets.SumoLogic

This package provides a target for the Logary logging library to push logs to a SumoLogic HTTP source collector.


Keywords
sumologic, logary, logging, log, logs, metrics
License
Other
Install
Install-Package Logary.Targets.SumoLogic -Version 0.1.2

Documentation

Logary.Targets.SumoLogic

A Logary target for the SumoLogic log management and data analytics service

NuGet Travis branch

Example usage:

let sumoEndpoint =
  System.Uri "https://endpoint1.collection.us2.sumologic.com/receiver/v1/http/HTTP_COLLECTOR_ENDPOINT"

let li =
  Promise.start
    ( withLogary "Example for using SumoLogic target"
      ( withTargets [
          SumoLogic.create (SumoLogicConf.create sumoEndpoint ExpandTemplates) "sumologic"
        ] >>
        withRules [
          Rule.createForTarget "sumologic"
        ]
      )
    )