io.convergence_platform.services.observability.LogEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-lib Show documentation
Show all versions of service-lib Show documentation
Holds the common functionality needed by all Convergence Platform-based services written in Java.
The newest version!
package io.convergence_platform.services.observability;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
public class LogEntry {
@JsonProperty("timestamp")
public long timestamp;
@JsonProperty("level")
public String level;
@JsonProperty("message")
public String message;
@JsonProperty("type")
public String type;
@JsonProperty("arguments")
public Object[] arguments;
@JsonProperty("named_arguments")
public Map namedArguments;
@JsonProperty("thread_id")
public long threadID;
}