Class InternalLogMessage

java.lang.Object
org.graylog2.rest.models.system.loggers.responses.InternalLogMessage

public abstract class InternalLogMessage extends Object
  • Constructor Details

    • InternalLogMessage

      public InternalLogMessage()
  • Method Details

    • message

      @NotEmpty public abstract @NotEmpty String message()
    • className

      @Nullable public abstract String className()
    • level

      @NotEmpty public abstract @NotEmpty String level()
    • marker

      @Nullable public abstract String marker()
    • timestamp

      @NotNull public abstract @NotNull org.joda.time.DateTime timestamp()
    • throwable

      @Nullable public abstract String throwable()
    • threadName

      @NotEmpty public abstract @NotEmpty String threadName()
    • context

      @NotNull public abstract @NotNull Map<String,String> context()
    • create

      public static InternalLogMessage create(@NotEmpty @NotEmpty String message, @Nullable String className, @NotEmpty @NotEmpty String level, @Nullable String marker, @NotNull @NotNull org.joda.time.DateTime timestamp, @Nullable String throwable, @NotEmpty @NotEmpty String threadName, @NotNull @NotNull Map<String,String> context)