| 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: Sat, 17 Jan 2026 05:23:51 GMT
X-Served-By: cache-dfw-kdfw8210067-DFW, cache-bom-vanm7210090-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768627431.511705,VS0,VE752
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
raven-haskell: Haskell client for Sentry logging service.
raven-haskell: Haskell client for Sentry logging service.
Modules
[Index] [Quick Jump]
Flags
Manual Flags
| Name | Description | Default |
|---|---|---|
| tests | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- raven-haskell-0.1.4.1.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.1.1.0, 0.1.2.0, 0.1.2.1, 0.1.3.0, 0.1.4.0, 0.1.4.1 |
|---|---|
| Dependencies | aeson (<2.3), base (>=4 && <5), bytestring (>=0.10), http-conduit (>=0.4.30), mtl, network, random (>=1.0), resourcet, text, time (>=1.5.0.1), unordered-containers, uuid-types [details] |
| License | MIT |
| Author | Alexander Bondarenko |
| Maintainer | aenor.realm@gmail.com |
| Uploaded | by AlexanderBondarenko at 2022-06-29T11:55:19Z |
| Revised | Revision 2 made by AlexanderBondarenko at 2024-08-04T11:22:17Z |
| Category | Logging |
| Home page | https://gitlab.com/dpwiz/raven-haskell |
| Source repo | head: git clone https://gitlab.com/dpwiz/raven-haskell |
| Distributions | NixOS:0.1.4.1 |
| Reverse Dependencies | 4 direct, 0 indirect [details] |
| Downloads | 5691 total (37 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2022-06-29 [all 1 reports] |
Readme for raven-haskell-0.1.4.1
[back to package description]Raven is a client for Sentry event server (https://www.getsentry.com/).
Start by initializing the raven 'Service':
http <- newManager tlsManagerSettings
l <- initRaven
"https://pub:priv@sentry.hostname.tld:8443/sentry/example_project"
id
(sendRecordWith http)
stderrFallback
Send events using 'register' function:
register l "my.logger.name" Debug "Hi there!" id
More documentation is in the System.Log.Raven package.