减少TraceItem数据量较大时的性能浪费
智能大石头 authored at 2024-10-22 08:41:14
1.19 KiB
Stardust
using NewLife.Agent.Command;
using NewLife.Agent;
using NewLife;
using NewLife.Serialization;

namespace StarAgent.CommandHandler;

public class UseMicroService : BaseCommandHandler
{
    public UseMicroService(ServiceBase service) : base(service)
    {
        Cmd = "-UseMicroService";
        Description = "测试微服务";
        ShortcutKey = 'w';
    }

    private String _lastService;

    public override void Process(String[] args)
    {
        var service = (MyService)Service;
        if (_lastService.IsNullOrEmpty())
            Console.WriteLine("请输入要测试的微服务名称:");
        else
            Console.WriteLine("请输入要测试的微服务名称({0}):", _lastService);

        var serviceName = Console.ReadLine();
        if (serviceName.IsNullOrEmpty()) serviceName = _lastService;
        if (serviceName.IsNullOrEmpty()) return;

        _lastService = serviceName;

        service.StartFactory();

        var models = service._factory.Service.ResolveAsync(serviceName).Result;
        //if (models == null) models = _factory.Dust.ResolveAsync(new ConsumeServiceInfo { ServiceName = serviceName }).Result;

        Console.WriteLine(models.ToJson(true));
    }
}