// Apache-2.0 License // Copyright (c) 2021-2022 xusn using Nest; namespace Admin.NET.Core; /// /// ES日志类 /// public class ElasticSearchLogMessage { /// /// 记录器类别名称 /// [Text] public string LogName { get; set; } /// /// 日志级别 /// [Text] public string LogLevel { get; set; } /// /// 事件 Id /// [Text] public string EventId { get; set; } /// /// 日志消息 /// [Text] public string Message { get; set; } /// /// 异常对象 /// [Text] public string Exception { get; set; } /// /// 当前状态值 /// /// 可以是任意类型 [Text] public string State { get; set; } /// /// 日志记录时间 /// [Text] public DateTime LogDateTime { get; set; } = DateTime.Now; /// /// 线程 Id /// [Text] public int ThreadId { get; set; } /// /// 是否使用 UTC 时间戳 /// [Text] public bool UseUtcTimestamp { get; set; } /// /// 请求/跟踪 Id /// [Text] public string TraceId { get; set; } /// /// 监视 /// [Text] public string Monitor { get; set; } }