5

使用 TopShelf 创建服务实例时,我希望能够访问服务实例名称(在作为服务安装期间可能已在命令行上设置;这意味着我无法直接访问它)能够将其用作 Log4Net 中日志文件名的属性。

在下面的示例代码中,我们设置了可用于在全局上下文中记录的各种属性。我也希望能够在这里设置服务实例名称;但似乎无法在主机初始化期间访问它。

关于如何在运行时使用 Topshelf 访问服务实例名称值的任何建议。

下面的示例是我们所有服务用来使用 Topshelf 启动服务的通用功能的一部分。

public static TopshelfExitCode Run(Func<IConsumerController> controllerFactory,
    string serviceName,
    string serviceDescription)
{
    // Initialise the Global log4net properties so we can use them for log file names and logging when required.
    log4net.GlobalContext.Properties["custom-assembly"] = System.IO.Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetEntryAssembly().Location);
    log4net.GlobalContext.Properties["custom-processname"] = System.Diagnostics.Process.GetCurrentProcess().ProcessName;
    log4net.GlobalContext.Properties["custom-process-id"] = System.Diagnostics.Process.GetCurrentProcess().Id;
// WOULD LIKE ACCESS TO THE SERVICE INSTANCE NAME HERE
    var logFileInfo = new System.IO.FileInfo(".\\Log.config");
    log4net.Config.XmlConfigurator.Configure(logFileInfo);

    var host = HostFactory.New(r =>
    {
        var controller = controllerFactory();
        r.Service<ConsumerService>( () => new ConsumerService(controller));
        r.SetServiceName(serviceName);
        r.SetDescription(serviceDescription + " © XYZ Ltd. 2012");
        r.SetDisplayName(serviceDescription + " © XYZ Ltd. 2012");
        r.StartAutomatically();
        r.EnablePauseAndContinue();
        r.RunAsLocalSystem();
    });
    return host.Run();
}
4

2 回答 2

6

HostSettings传递给服务工厂,其中包含InstanceName作为属性。您应该使用它来初始化要添加到的日志附加程序log4net

于 2012-12-02T03:50:20.597 回答
4

实例名称在命令行上传递,您可以访问命令行参数并从那里拉取它。这可能需要稍作调整,但如果您查看 ServiceInstaller,您会看到我们如何在安装服务后通过注册表编辑来调整命令路径。

于 2012-09-19T12:54:06.333 回答