syslogd/src/main/java/biz/nellemann/syslogd/msg/SyslogMessage.java

54 lines
1.8 KiB
Java

/*
Copyright 2020 mark.nellemann@gmail.com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package biz.nellemann.syslogd.msg;
import java.time.Instant;
public class SyslogMessage {
public Facility facility;
public Severity severity;
// The VERSION field denotes the version of the syslog protocol specification.
public Integer version;
// The TIMESTAMP field is a formalized timestamp derived from [RFC3339].
public Instant timestamp;
// The HOSTNAME field identifies the machine that originally sent the syslog message.
public String hostname;
// The APP-NAME field SHOULD identify the device or application that originated the message.
public String application = "-";
// The PROCID field is often used to provide the process name or process ID associated with a syslog system.
public String processId = "-";
// The MSGID SHOULD identify the type of message.
public String messageId = "-";
// STRUCTURED-DATA provides a mechanism to express information in a well defined, easily parseable and interpretable data format.
public String structuredData = "-";
// The MSG part contains a free-form message that provides information about the event.
public final String message;
public SyslogMessage(final String message) {
this.message = message;
}
}