这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cKey 4a6efab578 feat(auditing): 索引初始化失败记录日志 4 years ago
..
LINGYUN/Abp/AuditLogging/Elasticsearch feat(auditing): 索引初始化失败记录日志 4 years ago
LINGYUN.Abp.AuditLogging.Elasticsearch.csproj feat(elasticsearch): support elasticsearch and migrate logs to es. 4 years ago
README.md fix(oss): fix MemoryStream outsize for large file uploads 4 years ago

README.md

LINGYUN.Abp.AuditLogging.Elasticsearch

审计模块 Elasticsearch 实现

ElasticsearchAuditLogManager 实现了 IAuditLogManager, 审计日志由ES管理
ElasticsearchSecurityLogManager 实现了 ISecurityLogManager, 安全日志由ES管理

模块引用

[DependsOn(typeof(AbpAuditLoggingElasticsearchModule))]
public class YouProjectModule : AbpModule
{
  // other
}

配置项

  • AbpAuditLoggingElasticsearchOptions.IndexPrefix 索引前缀, 默认 auditlogging

注意事项

与租户模块集成, 跨租户时将会切换索引

appsettings.json

{
  "AuditLogging": {
    "Elasticsearch": {
      "IndexPrefix": "auditlogging"
    }
  }
}