com.raynigon.ecs.logging.event.EcsLogEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecs-logging-base Show documentation
Show all versions of ecs-logging-base Show documentation
The ecs-logging-base is a part of the unit-api
The newest version!
package com.raynigon.ecs.logging.event;
import java.time.OffsetDateTime;
public interface EcsLogEvent {
OffsetDateTime getTimestamp();
String getVersion();
String getServiceName();
String getEventDataset();
String getTransactionId();
String getSessionId();
}