type facility = The type for Facilities
val int_of_facility : facility -> intval facility_of_int : int -> facility optionval string_of_facility : facility -> stringstring_of_facility f is data, the string representation of f.
val pp_print_facility : Stdlib.Format.formatter -> facility -> unitThe type for Severity levels
val int_of_severity : severity -> intval severity_of_int : int -> severity optionval string_of_severity : severity -> stringstring_of_severity s is data, the string representation of s.
val pp_print_severity : Stdlib.Format.formatter -> severity -> unitctx provides additional information to the parse function in case one of the sub-parsers fails.
timestamp: Atimestamphostname: Hostname, IPv4 or IPv6 address of the sender. "-" if unknown.set_hostname: If true, theparsefunction will skip its hostname sub-parser and use the hostname fromctxinstead.
set_hostname is automatically set by the timestamp sub-parser when it fails, because at this point it is no longer possible to determine the hostname from the input string.
type t = {facility : facility; |
severity : severity; |
timestamp : Ptime.t; |
hostname : string; |
tag : string; |
content : string; |
}The type for Syslog messages
val pp : Stdlib.Format.formatter -> t -> unitpp ppf t prints the syslog message t on ppf.
val to_string : t -> stringto_string t is str, a pretty printed string of syslog message t.
val decode : ctx:ctx -> string -> (t, [> Rresult.R.msg ]) Stdlib.resultdecode ~ctx data is t, either Ok t, a successfully decoded syslog message, or Error e.
val encode : ?len:int -> t -> stringencode ~len t is data, the encoded syslog message t, truncated to len bytes. If len is 0 the output is not truncated.
Warning: Since version 1.0.0, messages are no longer truncated to 1024 bytes by default.
val encode_local : ?len:int -> t -> stringencode_local ~len t behaves as encode except that the message is formatted for sending to the local syslog daemon (e.g. on /dev/log).
module Rfc3164_Timestamp : sig ... endRFC 3164 Timestamps