Releases: jenkinsci/syslog-java-client
Releases · jenkinsci/syslog-java-client
syslog-java-client-1.1.7
- Support user provided SSLContext
syslog-java-client-1.1.6
syslog-java-client-1.1.4
syslog-java-client-1.1.3
- Fix #23 "Priority calculation wrong for rfc3164" thanks to @SpyrosPac
syslog-java-client-1.1.2
- #19 NullPointerException in
com.cloudbees.syslog.sender.TcpSyslogMessageSender#toString()
syslog-java-client-1.1.1
- Fix #17 Fix the list of reserved SD-ID's.
syslog-java-client-1.1.0
- Make it configurable to end messages with CR LF for TCPSender thanks to @jasonparallel
tcpSyslogMessageSender. setPostfix("\r\n"); // \r\n is the default, can be overridden
-
Modified Facility to use digits 0 - 23 instead of multiplied by 8, to conform with syslog spec thanks to @dhsmith1001
-
Add support for structured data thanks to @bbergquist0930
SyslogMessage message = new SyslogMessage()
.withTimestamp(cal.getTimeInMillis())
.withAppName("my_app")
.withHostname("myserver.example.com")
.withFacility(Facility.USER)
.withSeverity(Severity.INFORMATIONAL)
.withTimestamp(cal.getTimeInMillis())
.withMsg("a syslog message")
.withSDElement(
new SDElement(
"exampleSDID@32473",
new SDParam("iut", "3"),
new SDParam("eventSource", "Application"),
new SDParam("eventID", "1011")));
syslog-java-client-1.0.8
syslog-java-client-1.0.7
syslog-java-client-1.0.6
- Add missing setters on
TcpSyslogMessageSender