这是基于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 3936107340 upgrade: upgrade abp to 10.0.2 2 months ago
..
LINGYUN/Abp/Telemetry/SkyWalking feat: update micro template to 9.1.1 11 months ago
Microsoft/Extensions/DependencyInjection feat(tacking): Enhanced distributed tracking capabilities 12 months ago
FodyWeavers.xml feat(tacking): Enhanced distributed tracking capabilities 12 months ago
FodyWeavers.xsd feat(tacking): Enhanced distributed tracking capabilities 12 months ago
LINGYUN.Abp.Telemetry.SkyWalking.csproj upgrade: upgrade abp to 10.0.2 2 months ago
README.md feat(tacking): Enhanced distributed tracking capabilities 12 months 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...
        });
    }
}


更多文档