这是基于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.
 
 
 
 
 
 
colin 7f7f1f0a89 feat: update micro template to 9.1.1 1 year ago
..
LINGYUN/Abp/Telemetry/SkyWalking feat: update micro template to 9.1.1 1 year ago
Microsoft/Extensions/DependencyInjection feat(tacking): Enhanced distributed tracking capabilities 1 year ago
FodyWeavers.xml feat(tacking): Enhanced distributed tracking capabilities 1 year ago
FodyWeavers.xsd feat(tacking): Enhanced distributed tracking capabilities 1 year ago
LINGYUN.Abp.Telemetry.SkyWalking.csproj feat(tacking): Enhanced distributed tracking capabilities 1 year ago
README.md feat(tacking): Enhanced distributed tracking capabilities 1 year ago

README.md

LINGYUN.Abp.Telemetry.SkyWalking

分布式追踪系统 SkyWalking 集成

功能特性

模块引用

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

配置项


# 切换到主程序目录
cd my-host-project-path

# 安装 skyapm 命令行工具
dotnet tool install -g SkyAPM.DotNet.CLI

# 生成 SkyWalking 配置文件, localhost:11800 为你运行的SkyWalking实例暴露的Grpc端口
dotnet skyapm config auth_server localhost:11800

public class YouProjectModule : AbpModule
{
	public override void PreConfigureServices(ServiceConfigurationContext context)
    {
        PreConfigure<SkyApmExtensions>(skyapm =>
        {
            skyapm.AddCap();

            // other...
        });
    }
}


更多文档