| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sun, 18 Jan 2026 10:24:23 GMT
X-Served-By: cache-dfw-ktki8620039-DFW, cache-bom-vanm7210035-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768731863.639453,VS0,VE854
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
log-elasticsearch: Structured logging solution (Elasticsearch back end)
log-elasticsearch: Structured logging solution (Elasticsearch back end)
Modules
[Index] [Quick Jump]
Flags
Automatic Flags
| Name | Description | Default |
|---|---|---|
| openssl | Use http-client-openssl instead of http-client-tls | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- log-elasticsearch-0.13.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.7, 0.8, 0.8.1, 0.9.0.0, 0.9.0.1, 0.9.1.0, 0.10.0.0, 0.10.0.1, 0.10.1.0, 0.10.2.0, 0.11.0.0, 0.12.0.0, 0.12.1.0, 0.12.1.1, 0.12.2.0, 0.13.0.0, 0.13.0.1, 0.13.0.2 |
|---|---|
| Change log | CHANGELOG.md |
| Dependencies | aeson (>=1.0), aeson-pretty (>=0.8.2), base (>=4.13 && <5), base64-bytestring, bytestring, deepseq, http-client, http-client-openssl (>=0.3.2), http-client-tls (>=0.3.6.3), http-types, log-base (>=0.10 && <0.13), network-uri, semigroups, text, text-show (>=2), time (>=1.5), transformers, unliftio-core (>=0.2), unordered-containers, vector [details] |
| Tested with | ghc ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.2 || ==9.12.2 |
| License | BSD-3-Clause |
| Copyright | Scrive AB |
| Author | Scrive AB |
| Maintainer | Andrzej Rybczak <andrzej@rybczak.net>, Jonathan Jouty <jonathan@scrive.com>, Mikhail Glushenkov <mikhail@scrive.com>, Oleg Grenrus <oleg.grenrus@iki.fi> |
| Uploaded | by arybczak at 2025-06-26T13:16:08Z |
| Category | System |
| Home page | https://github.com/scrive/log |
| Source repo | head: git clone https://github.com/scrive/log.git |
| Distributions | NixOS:0.13.0.2 |
| Reverse Dependencies | 1 direct, 4 indirect [details] |
| Downloads | 8950 total (69 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2025-06-26 [all 1 reports] |
Readme for log-elasticsearch-0.13.0.2
[back to package description]log
A set of libraries that provide a way to record structured log messages with multiple backends.
Supported backends:
- Standard output via
log-base. - Elasticsearch via
log-elasticsearch. - PostgreSQL via
log-postgres.
Example
A sample usage for logging to both standard output and Elasticsearch:
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Log
import Log.Backend.ElasticSearch
import Log.Backend.StandardOutput
main :: IO ()
main = do
let config = defaultElasticSearchConfig
{ esServer = "https://localhost:9200"
, esIndex = "logs"
}
withStdOutLogger $ \stdoutLogger -> do
withElasticSearchLogger config $ \esLogger -> do
runLogT "main" (stdoutLogger <> esLogger) defaultLogLevel $ do
logInfo_ "Hi there"