Popularity
1.6
Declining
Activity
0.0
Stable
1
2
1

Monthly Downloads: 6
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web    

logentries alternatives and similar packages

Based on the "Web" category.
Alternatively, view logentries alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of logentries or a related project?

Add another 'Web' Package

README

logentries

Example Usage

The logEntriesLogger produces a chainable Middleware type which can be used in conjunction with any other Middleware type.

-- The Middleware is chained to Servant's Application
-- Other Middlewares can be attached, as well.
app :: Application
app = requestLogger $ serve api server

-- Configures and creates the LogEntries request logger Middleware
requestLogger :: Middleware
requestLogger =
  let token = fromJust . fromString $ "00000000-0000-0000-0000-000000000000"
      logentriesConfig = Config "data.logentries.com" 80 token
  in logEntriesLogger logentriesConfig

Example Application

A Servant example can be found in the repo.