package logs-syslog
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=ba50d55878d96c193300c1bd2caa7e6dc6135a0ba0adffa94aa95df06a89a1f7
md5=40e8c68b73b77d8b801fcfba70633c6f
Description
This library provides log reporters using syslog over various transports (UDP, TCP, TLS) with various effectful layers: Unix, Lwt, MirageOS. It integrates the Logs library, which provides logging infrastructure for OCaml, with the syslog-message library, which provides encoding and decoding of syslog messages (RFC 3164).
Six ocamlfind libraries are provided: the bare Logs-syslog
, a minimal
dependency Unix Logs-syslog-unix
, a Lwt one Logs-syslog-lwt
, another one
with Lwt and TLS (RFC 5425) support
Logs-syslog-lwt-tls
, a MirageOS one Logs-syslog-mirage
, and a MirageOS one
using TLS Logs-syslog-mirage-tls
.
Since MirageOS3, syslog is well integrated:
let logger =
syslog_udp
(syslog_config ~truncate:1484 "robur.coop" (Ipaddr.V4.of_string_exn "192.168.0.1"))
net
...
register "myunikernel" [
foreign
~deps:[abstract logger]
Published: 23 Feb 2017
README
Logs-syslog - Logs output via syslog
0.1.0
This library provides log reporters using syslog over various transports (UDP, TCP, TLS) with various effectful layers: Unix, Lwt, MirageOS. It integrates the Logs library, which provides logging infrastructure for OCaml, with the syslog-message library, which provides encoding and decoding of syslog messages (RFC 3164).
Six ocamlfind libraries are provided: the bare Logs-syslog
, a minimal dependency Unix Logs-syslog-unix
, a Lwt one Logs-syslog-lwt
, another one with Lwt and TLS (RFC 5425) support Logs-syslog-lwt-tls
, a MirageOS one Logs-syslog-mirage
, and a MirageOS one using TLS Logs-syslog-mirage-tls
.
Since MirageOS3, syslog is well integrated:
let logger =
syslog_udp
(syslog_config ~truncate:1484 "nqsb.io" (Ipaddr.V4.of_string_exn "192.168.0.1"))
net
...
register "myunikernel" [
foreign
~deps:[abstract logger]
Documentation
API documentation is available online.
Installation
This is targeting other libraries (apart from syslog-message) which are released to opam-repository.
opam pin add syslog-message --dev-repo
opam pin add logs-syslog https://github.com/hannesm/logs-syslog.git
Dependencies (7)
-
syslog-message
= "0.0.2"
- ptime
- logs
-
topkg
build
-
ocamlbuild
build
-
ocamlfind
build
-
ocaml
>= "4.03.0"
Dev Dependencies
None
Used by
None
Conflicts (6)
-
mirage-clock
>= "3.0.0"
-
tls
>= "0.16.0"
-
tls
< "0.8.0"
-
x509
< "0.6.0"
-
lwt
>= "4.0.0"
-
mirage-types-lwt
< "3.0.0"